1
1
#pragma once
2
2
3
- #include < gdk/gdk.h>
4
- #include < glibmm/refptr.h>
5
- #include < gtkmm/box.h>
3
+ #include < giomm/desktopappinfo.h>
6
4
#include < gtkmm/button.h>
7
5
#include < gtkmm/icontheme.h>
8
6
#include < gtkmm/image.h>
9
7
#include < gtkmm/label.h>
10
- #include < wayland-client.h>
11
8
12
- #include < map>
13
- #include < memory>
14
- #include < string>
15
9
#include < unordered_set>
16
- #include < vector>
17
10
18
- #include " AModule.hpp"
19
11
#include " bar.hpp"
20
- #include " client.hpp"
21
- #include " giomm/desktopappinfo.h"
22
- #include " util/json.hpp"
23
12
#include " wlr-foreign-toplevel-management-unstable-v1-client-protocol.h"
24
13
25
14
namespace waybar ::modules::wlr {
26
15
27
16
struct widget_geometry {
28
- int x, y, w, h;
17
+ double x, y;
18
+ int w, h;
29
19
};
30
20
31
21
class Taskbar ;
@@ -45,13 +35,13 @@ class Task {
45
35
INVALID = (1 << 4 )
46
36
};
47
37
// made public so TaskBar can reorder based on configuration.
48
- Gtk::Button button;
38
+ Glib::RefPtr< Gtk::Button> const button;
49
39
struct widget_geometry minimize_hint;
50
40
51
41
private:
52
42
static uint32_t global_id;
43
+ Glib::RefPtr<Gtk::GestureClick> const controllClick_;
53
44
54
- private:
55
45
const waybar::Bar &bar_;
56
46
const Json::Value &config_;
57
47
Taskbar *tbar_;
@@ -80,15 +70,9 @@ class Task {
80
70
std::string app_id_;
81
71
uint32_t state_ = 0 ;
82
72
83
- int32_t drag_start_x;
84
- int32_t drag_start_y;
85
- int32_t drag_start_button = -1 ;
86
-
87
- private:
88
73
std::string repr () const ;
89
74
std::string state_string (bool = false ) const ;
90
75
void set_minimize_hint ();
91
- void on_button_size_allocated (Gtk::Allocation &alloc);
92
76
void set_app_info_from_app_id_list (const std::string &app_id_list);
93
77
bool image_load_icon (Gtk::Image &image, const Glib::RefPtr<Gtk::IconTheme> &icon_theme,
94
78
Glib::RefPtr<Gio::DesktopAppInfo> app_info, int size);
@@ -105,7 +89,6 @@ class Task {
105
89
bool active () const { return state_ & ACTIVE; }
106
90
bool fullscreen () const { return state_ & FULLSCREEN; }
107
91
108
- public:
109
92
/* Callbacks for the wlr protocol */
110
93
void handle_title (const char *);
111
94
void handle_app_id (const char *);
@@ -116,22 +99,14 @@ class Task {
116
99
void handle_closed ();
117
100
118
101
/* Callbacks for Gtk events */
119
- bool handle_clicked (GdkEventButton *);
120
- bool handle_button_release (GdkEventButton *);
121
- bool handle_motion_notify (GdkEventMotion *);
122
- void handle_drag_data_get (const Glib::RefPtr<Gdk::DragContext> &context,
123
- Gtk::SelectionData &selection_data, guint info, guint time);
124
- void handle_drag_data_received (const Glib::RefPtr<Gdk::DragContext> &context, int x, int y,
125
- Gtk::SelectionData selection_data, guint info, guint time);
102
+ void handleClick (int n_press, double dx, double dy);
103
+ bool handleDropData (const Glib::ValueBase &, double , double );
126
104
127
- public:
128
105
bool operator ==(const Task &) const ;
129
106
bool operator !=(const Task &) const ;
130
107
131
- public:
132
108
void update ();
133
109
134
- public:
135
110
/* Interaction with the tasks */
136
111
void maximize (bool );
137
112
void minimize (bool );
@@ -147,6 +122,7 @@ class Taskbar : public waybar::AModule {
147
122
Taskbar (const std::string &, const waybar::Bar &, const Json::Value &);
148
123
~Taskbar ();
149
124
void update ();
125
+ operator Gtk::Widget &() override ;
150
126
151
127
private:
152
128
const waybar::Bar &bar_;
@@ -169,10 +145,9 @@ class Taskbar : public waybar::AModule {
169
145
void handle_toplevel_create (struct zwlr_foreign_toplevel_handle_v1 *);
170
146
void handle_finished ();
171
147
172
- public:
173
- void add_button (Gtk::Button &);
174
- void move_button (Gtk::Button &, int );
175
- void remove_button (Gtk::Button &);
148
+ void add_button (Glib::RefPtr<Gtk::Button>);
149
+ void move_button (Glib::RefPtr<Gtk::Button>, int );
150
+ void remove_button (Glib::RefPtr<Gtk::Button>);
176
151
void remove_task (uint32_t );
177
152
178
153
bool show_output (struct wl_output *) const ;
0 commit comments