Skip to content

Commit 7086592

Browse files
committed
GTK4. wlr, cffi, hyplrand migration
Signed-off-by: Viktar Lukashonak <myxabeer@gmail.com>
1 parent 048c3e2 commit 7086592

20 files changed

+231
-389
lines changed

include/modules/cffi.hpp

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
11
#pragma once
22

3+
#include <gtkmm/box.h>
4+
35
#include "AModule.hpp"
46

57
namespace waybar::modules {
68

79
namespace ffi {
810
extern "C" {
9-
typedef struct wbcffi_module wbcffi_module;
11+
using wbcffi_module = struct wbcffi_module;
1012

11-
typedef struct {
13+
using wbcffi_init_info = struct {
1214
wbcffi_module* obj;
1315
const char* waybar_version;
1416
GtkWidget* (*get_root_widget)(wbcffi_module*);
1517
void (*queue_update)(wbcffi_module*);
16-
} wbcffi_init_info;
18+
};
1719

1820
struct wbcffi_config_entry {
1921
const char* key;
@@ -30,10 +32,12 @@ class CFFI final : public AModule {
3032
virtual auto refresh(int signal) -> void override;
3133
virtual auto doAction(const std::string& name) -> void override;
3234
virtual auto update() -> void override;
35+
operator Gtk::Widget&() override;
3336

3437
private:
3538
///
3639
void* cffi_instance_ = nullptr;
40+
Glib::RefPtr<Gtk::Box> const box_;
3741

3842
typedef void*(InitFn)(const ffi::wbcffi_init_info* init_info,
3943
const ffi::wbcffi_config_entry* config_entries, size_t config_entries_len);

include/modules/hyprland/backend.hpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
#pragma once
22

3+
#include <sys/socket.h>
4+
#include <sys/un.h>
5+
36
#include <filesystem>
47
#include <list>
5-
#include <memory>
6-
#include <mutex>
7-
#include <string>
8-
#include <utility>
98

109
#include "util/json.hpp"
1110

include/modules/hyprland/window.hpp

-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
#pragma once
22

3-
#include <fmt/format.h>
4-
5-
#include <string>
6-
73
#include "AAppIconLabel.hpp"
84
#include "bar.hpp"
95
#include "modules/hyprland/backend.hpp"
10-
#include "util/json.hpp"
116

127
namespace waybar::modules::hyprland {
138

include/modules/hyprland/windowcreationpayload.hpp

-16
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,8 @@
11
#pragma once
22

3-
#include <gtkmm/button.h>
4-
#include <gtkmm/label.h>
53
#include <json/value.h>
64

7-
#include <cstddef>
8-
#include <cstdint>
9-
#include <map>
10-
#include <memory>
11-
#include <optional>
12-
#include <regex>
13-
#include <string>
145
#include <variant>
15-
#include <vector>
16-
17-
#include "AModule.hpp"
18-
#include "bar.hpp"
19-
#include "modules/hyprland/backend.hpp"
20-
#include "util/enum.hpp"
21-
#include "util/regex_collection.hpp"
226

237
using WindowAddress = std::string;
248

include/modules/hyprland/workspace.hpp

+3-19
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,8 @@
22

33
#include <gtkmm/button.h>
44
#include <gtkmm/label.h>
5-
#include <json/value.h>
65

7-
#include <cstddef>
8-
#include <cstdint>
9-
#include <map>
10-
#include <memory>
11-
#include <optional>
12-
#include <regex>
13-
#include <string>
14-
#include <variant>
15-
#include <vector>
16-
17-
#include "AModule.hpp"
18-
#include "bar.hpp"
19-
#include "modules/hyprland/backend.hpp"
20-
#include "modules/hyprland/windowcreationpayload.hpp"
21-
#include "util/enum.hpp"
22-
#include "util/regex_collection.hpp"
6+
#include "modules/hyprland/workspaces.hpp"
237

248
using WindowAddress = std::string;
259

@@ -44,8 +28,7 @@ class Workspace {
4428
bool isVisible() const { return m_isVisible; };
4529
bool isEmpty() const { return m_windows == 0; };
4630
bool isUrgent() const { return m_isUrgent; };
47-
48-
bool handleClicked(GdkEventButton* bt) const;
31+
void handleToggle(int n_press, double dx, double dy);
4932
void setActive(bool value = true) { m_isActive = value; };
5033
void setPersistentRule(bool value = true) { m_isPersistentRule = value; };
5134
void setPersistentConfig(bool value = true) { m_isPersistentConfig = value; };
@@ -83,6 +66,7 @@ class Workspace {
8366
Gtk::Button m_button;
8467
Gtk::Box m_content;
8568
Gtk::Label m_label;
69+
Glib::RefPtr<Gtk::GestureClick> const controllClick_;
8670
};
8771

8872
} // namespace waybar::modules::hyprland

include/modules/hyprland/workspaces.hpp

-12
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,7 @@
11
#pragma once
22

3-
#include <gtkmm/button.h>
4-
#include <gtkmm/label.h>
53
#include <json/value.h>
64

7-
#include <cstdint>
8-
#include <map>
9-
#include <memory>
10-
#include <regex>
11-
#include <string>
12-
#include <vector>
13-
14-
#include "AModule.hpp"
155
#include "bar.hpp"
166
#include "modules/hyprland/backend.hpp"
177
#include "modules/hyprland/windowcreationpayload.hpp"
@@ -23,8 +13,6 @@ using WindowAddress = std::string;
2313

2414
namespace waybar::modules::hyprland {
2515

26-
class Workspaces;
27-
2816
class Workspaces : public AModule, public EventHandler {
2917
public:
3018
Workspaces(const std::string&, const waybar::Bar&, const Json::Value&);

include/modules/wlr/taskbar.hpp

+11-36
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,21 @@
11
#pragma once
22

3-
#include <gdk/gdk.h>
4-
#include <glibmm/refptr.h>
5-
#include <gtkmm/box.h>
3+
#include <giomm/desktopappinfo.h>
64
#include <gtkmm/button.h>
75
#include <gtkmm/icontheme.h>
86
#include <gtkmm/image.h>
97
#include <gtkmm/label.h>
10-
#include <wayland-client.h>
118

12-
#include <map>
13-
#include <memory>
14-
#include <string>
159
#include <unordered_set>
16-
#include <vector>
1710

18-
#include "AModule.hpp"
1911
#include "bar.hpp"
20-
#include "client.hpp"
21-
#include "giomm/desktopappinfo.h"
22-
#include "util/json.hpp"
2312
#include "wlr-foreign-toplevel-management-unstable-v1-client-protocol.h"
2413

2514
namespace waybar::modules::wlr {
2615

2716
struct widget_geometry {
28-
int x, y, w, h;
17+
double x, y;
18+
int w, h;
2919
};
3020

3121
class Taskbar;
@@ -45,13 +35,13 @@ class Task {
4535
INVALID = (1 << 4)
4636
};
4737
// made public so TaskBar can reorder based on configuration.
48-
Gtk::Button button;
38+
Glib::RefPtr<Gtk::Button> const button;
4939
struct widget_geometry minimize_hint;
5040

5141
private:
5242
static uint32_t global_id;
43+
Glib::RefPtr<Gtk::GestureClick> const controllClick_;
5344

54-
private:
5545
const waybar::Bar &bar_;
5646
const Json::Value &config_;
5747
Taskbar *tbar_;
@@ -80,15 +70,9 @@ class Task {
8070
std::string app_id_;
8171
uint32_t state_ = 0;
8272

83-
int32_t drag_start_x;
84-
int32_t drag_start_y;
85-
int32_t drag_start_button = -1;
86-
87-
private:
8873
std::string repr() const;
8974
std::string state_string(bool = false) const;
9075
void set_minimize_hint();
91-
void on_button_size_allocated(Gtk::Allocation &alloc);
9276
void set_app_info_from_app_id_list(const std::string &app_id_list);
9377
bool image_load_icon(Gtk::Image &image, const Glib::RefPtr<Gtk::IconTheme> &icon_theme,
9478
Glib::RefPtr<Gio::DesktopAppInfo> app_info, int size);
@@ -105,7 +89,6 @@ class Task {
10589
bool active() const { return state_ & ACTIVE; }
10690
bool fullscreen() const { return state_ & FULLSCREEN; }
10791

108-
public:
10992
/* Callbacks for the wlr protocol */
11093
void handle_title(const char *);
11194
void handle_app_id(const char *);
@@ -116,22 +99,14 @@ class Task {
11699
void handle_closed();
117100

118101
/* 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);
126104

127-
public:
128105
bool operator==(const Task &) const;
129106
bool operator!=(const Task &) const;
130107

131-
public:
132108
void update();
133109

134-
public:
135110
/* Interaction with the tasks */
136111
void maximize(bool);
137112
void minimize(bool);
@@ -147,6 +122,7 @@ class Taskbar : public waybar::AModule {
147122
Taskbar(const std::string &, const waybar::Bar &, const Json::Value &);
148123
~Taskbar();
149124
void update();
125+
operator Gtk::Widget &() override;
150126

151127
private:
152128
const waybar::Bar &bar_;
@@ -169,10 +145,9 @@ class Taskbar : public waybar::AModule {
169145
void handle_toplevel_create(struct zwlr_foreign_toplevel_handle_v1 *);
170146
void handle_finished();
171147

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>);
176151
void remove_task(uint32_t);
177152

178153
bool show_output(struct wl_output *) const;

include/modules/wlr/workspace_manager.hpp

+3-9
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,8 @@
11
#pragma once
22

3-
#include <fmt/format.h>
43
#include <gtkmm/button.h>
5-
#include <gtkmm/image.h>
64
#include <gtkmm/label.h>
75

8-
#include <functional>
9-
#include <map>
10-
#include <memory>
11-
#include <vector>
12-
13-
#include "AModule.hpp"
146
#include "bar.hpp"
157
#include "ext-workspace-unstable-v1-client-protocol.h"
168

@@ -41,7 +33,7 @@ class Workspace {
4133
auto handle_duplicate() -> void;
4234

4335
auto handle_done() -> void;
44-
auto handle_clicked(GdkEventButton *bt) -> bool;
36+
void handleClick(int n_press, double dx, double dy);
4537
auto show() -> void;
4638
auto hide() -> void;
4739
auto get_button_ref() -> Gtk::Button & { return button_; }
@@ -75,6 +67,7 @@ class Workspace {
7567
bool persistent_ = false;
7668

7769
Gtk::Button button_;
70+
Glib::RefPtr<Gtk::GestureClick> const controllClick_;
7871
Gtk::Box content_;
7972
Gtk::Label label_;
8073
};
@@ -133,6 +126,7 @@ class WorkspaceManager : public AModule {
133126
WorkspaceManager(const std::string &id, const waybar::Bar &bar, const Json::Value &config);
134127
~WorkspaceManager() override;
135128
auto update() -> void override;
129+
operator Gtk::Widget &() override;
136130

137131
auto all_outputs() const -> bool { return all_outputs_; }
138132
auto active_only() const -> bool { return active_only_; }

meson.build

+5-2
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ src_files = files(
177177
'src/config.cpp',
178178
'src/group.cpp',
179179
'src/util/portal.cpp',
180+
'src/util/enum.cpp',
180181
'src/util/prepare_for_sleep.cpp',
181182
'src/util/ustring_clen.cpp',
182183
'src/util/sanitize_str.cpp',
@@ -262,11 +263,12 @@ man_files += files('man/waybar-sway-language.5.scd',
262263
'man/waybar-sway-scratchpad.5.scd',
263264
'man/waybar-sway-window.5.scd',
264265
'man/waybar-sway-workspaces.5.scd')
265-
if 1 == 0
266+
266267
add_project_arguments('-DHAVE_WLR_TASKBAR', language: 'cpp')
267268
src_files += files('src/modules/wlr/taskbar.cpp')
268269
man_files += files('man/waybar-wlr-taskbar.5.scd')
269270

271+
if 1 == 0
270272
add_project_arguments('-DHAVE_RIVER', language: 'cpp')
271273
src_files += files('src/modules/river/layout.cpp',
272274
'src/modules/river/mode.cpp',
@@ -282,7 +284,7 @@ src_files += files('src/modules/dwl/tags.cpp',
282284
'src/modules/dwl/window.cpp')
283285
man_files += files('man/waybar-dwl-tags.5.scd',
284286
'man/waybar-dwl-window.5.scd')
285-
if 1 == 0
287+
286288
add_project_arguments('-DHAVE_HYPRLAND', language: 'cpp')
287289
src_files += files('src/modules/hyprland/backend.cpp',
288290
'src/modules/hyprland/language.cpp',
@@ -296,6 +298,7 @@ man_files += files('man/waybar-hyprland-language.5.scd',
296298
'man/waybar-hyprland-window.5.scd',
297299
'man/waybar-hyprland-workspaces.5.scd')
298300

301+
if 1 == 0
299302
if get_option('niri')
300303
add_project_arguments('-DHAVE_NIRI', language: 'cpp')
301304
src_files += files(

0 commit comments

Comments
 (0)