Skip to content

Commit 177aaac

Browse files
committed
GTK4. wlr migration
Signed-off-by: Viktar Lukashonak <myxabeer@gmail.com>
1 parent a3c9b2e commit 177aaac

17 files changed

+85
-170
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

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

3+
#include "util/json.hpp"
4+
35
#include <filesystem>
46
#include <list>
5-
#include <memory>
6-
#include <mutex>
7-
#include <string>
8-
#include <utility>
9-
10-
#include "util/json.hpp"
7+
#include <sys/socket.h>
8+
#include <sys/un.h>
119

1210
namespace waybar::modules::hyprland {
1311

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

+2-18
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

@@ -82,7 +66,7 @@ class Workspace {
8266
Gtk::Button m_button;
8367
Gtk::Box m_content;
8468
Gtk::Label m_label;
85-
Glib::RefPtr<Gtk::GestureClick> controllClick_;
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
#include <unordered_set>
1010

11-
#include "AModule.hpp"
1211
#include "bar.hpp"
1312
#include "wlr-foreign-toplevel-management-unstable-v1-client-protocol.h"
1413

@@ -123,6 +122,7 @@ class Taskbar : public waybar::AModule {
123122
Taskbar(const std::string &, const waybar::Bar &, const Json::Value &);
124123
~Taskbar();
125124
void update();
125+
operator Gtk::Widget&() override;
126126

127127
private:
128128
const waybar::Bar &bar_;

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_; }

resources/custom_modules/cffi_example/main.c

+7-10
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
typedef struct {
55
wbcffi_module* waybar_module;
6-
GtkBox* container;
76
GtkButton* button;
87
} ExampleMod;
98

@@ -30,24 +29,22 @@ void* wbcffi_init(const wbcffi_init_info* init_info, const wbcffi_config_entry*
3029
ExampleMod* inst = malloc(sizeof(ExampleMod));
3130
inst->waybar_module = init_info->obj;
3231

33-
GtkContainer* root = init_info->get_root_widget(init_info->obj);
34-
35-
// Add a container for displaying the next widgets
36-
inst->container = GTK_BOX(gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 5));
37-
gtk_container_add(GTK_CONTAINER(root), GTK_WIDGET(inst->container));
32+
GtkWidget* root = init_info->get_root_widget(init_info->obj);
33+
gtk_box_set_spacing(GTK_BOX(root), 5);
34+
gtk_orientable_set_orientation(GTK_ORIENTABLE(root), GTK_ORIENTATION_HORIZONTAL);
3835

3936
// Add a label
4037
GtkLabel* label = GTK_LABEL(gtk_label_new("[Example C FFI Module:"));
41-
gtk_container_add(GTK_CONTAINER(inst->container), GTK_WIDGET(label));
38+
gtk_box_append(GTK_BOX(root), GTK_WIDGET(label));
4239

4340
// Add a button
4441
inst->button = GTK_BUTTON(gtk_button_new_with_label("click me !"));
4542
g_signal_connect(inst->button, "clicked", G_CALLBACK(onclicked), NULL);
46-
gtk_container_add(GTK_CONTAINER(inst->container), GTK_WIDGET(inst->button));
43+
gtk_box_append(GTK_BOX(root), GTK_WIDGET(inst->button));
4744

4845
// Add a label
4946
label = GTK_LABEL(gtk_label_new("]"));
50-
gtk_container_add(GTK_CONTAINER(inst->container), GTK_WIDGET(label));
47+
gtk_box_append(GTK_BOX(root), GTK_WIDGET(label));
5148

5249
// Return instance object
5350
printf("cffi_example inst=%p: init success ! (%d total instances)\n", inst, ++instance_count);
@@ -67,4 +64,4 @@ void wbcffi_refresh(void* instance, int signal) {
6764

6865
void wbcffi_doaction(void* instance, const char* name) {
6966
printf("cffi_example inst=%p: doAction(%s)\n", instance, name);
70-
}
67+
}
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
project(
22
'waybar_cffi_example', 'c',
3-
version: '0.1.0',
3+
version: '4.1.0',
44
license: 'MIT',
55
)
66

77
shared_library('wb_cffi_example',
88
['main.c'],
99
dependencies: [
10-
dependency('gtk+-3.0', version : ['>=3.22.0'])
10+
dependency('gtk4', version : ['>=4.17.0'])
1111
],
1212
name_prefix: ''
1313
)

resources/custom_modules/cffi_example/waybar_cffi_module.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ typedef struct {
2323

2424
/// Returns the waybar widget allocated for this module
2525
/// @param obj Waybar CFFI object pointer
26-
GtkContainer* (*get_root_widget)(wbcffi_module* obj);
26+
GtkWidget* (*get_root_widget)(wbcffi_module* obj);
2727

2828
/// Queues a request for calling wbcffi_update() on the next GTK main event
2929
/// loop iteration

src/modules/cffi.cpp

+8-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
namespace waybar::modules {
88

99
CFFI::CFFI(const std::string& name, const std::string& id, const Json::Value& config)
10-
: AModule(config, name, id, true, true) {
10+
: AModule(config, name, id, true, true) ,
11+
box_{new Gtk::Box()} {
12+
box_->set_name(name_);
1113
const auto dynlib_path = config_["module_path"].asString();
1214
if (dynlib_path.empty()) {
1315
throw std::runtime_error{"Missing or empty 'module_path' in module config"};
@@ -101,6 +103,11 @@ auto CFFI::update() -> void {
101103
AModule::update();
102104
}
103105

106+
CFFI::operator Gtk::Widget&() {
107+
assert(box_);
108+
return *box_;
109+
}
110+
104111
auto CFFI::refresh(int signal) -> void {
105112
assert(cffi_instance_ != nullptr);
106113
hooks_.refresh(cffi_instance_, signal);

src/modules/hyprland/backend.cpp

-11
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,6 @@
11
#include "modules/hyprland/backend.hpp"
22

3-
#include <netdb.h>
4-
#include <netinet/in.h>
53
#include <spdlog/spdlog.h>
6-
#include <sys/socket.h>
7-
#include <sys/stat.h>
8-
#include <sys/types.h>
9-
#include <sys/un.h>
10-
#include <unistd.h>
11-
12-
#include <filesystem>
13-
#include <string>
14-
#include <thread>
154

165
namespace waybar::modules::hyprland {
176

src/modules/hyprland/window.cpp

-7
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,7 @@
11
#include "modules/hyprland/window.hpp"
22

3-
#include <glibmm/fileutils.h>
4-
#include <glibmm/keyfile.h>
5-
#include <glibmm/miscutils.h>
63
#include <spdlog/spdlog.h>
74

8-
#include <algorithm>
9-
#include <vector>
10-
11-
#include "modules/hyprland/backend.hpp"
125
#include "util/rewrite_string.hpp"
136
#include "util/sanitize_str.hpp"
147

src/modules/hyprland/workspace.cpp

+4-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
1-
#include <json/value.h>
2-
#include <spdlog/spdlog.h>
3-
4-
#include <memory>
5-
#include <string>
6-
#include <utility>
7-
81
#include "modules/hyprland/workspaces.hpp"
92

3+
#include <spdlog/spdlog.h>
4+
105
namespace waybar::modules::hyprland {
116

127
Workspace::Workspace(const Json::Value &workspace_data, Workspaces &workspace_manager,
@@ -18,7 +13,8 @@ Workspace::Workspace(const Json::Value &workspace_data, Workspaces &workspace_ma
1813
m_windows(workspace_data["windows"].asInt()),
1914
m_isActive(true),
2015
m_isPersistentRule(workspace_data["persistent-rule"].asBool()),
21-
m_isPersistentConfig(workspace_data["persistent-config"].asBool()) {
16+
m_isPersistentConfig(workspace_data["persistent-config"].asBool()),
17+
controllClick_{Gtk::GestureClick::create()} {
2218
if (m_name.starts_with("name:")) {
2319
m_name = m_name.substr(5);
2420
} else if (m_name.starts_with("special")) {

0 commit comments

Comments
 (0)