Skip to content

Commit edfd1d3

Browse files
committed
GTK4: Migration, language, sway
Signed-off-by: Viktar Lukashonak <myxabeer@gmail.com>
1 parent a94d66f commit edfd1d3

24 files changed

+266
-299
lines changed

include/AAppIconLabel.hpp

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

3-
#include <gtkmm/box.h>
4-
#include <gtkmm/image.h>
3+
#include <gtkmm/icontheme.h>
54

65
#include "AIconLabel.hpp"
76

@@ -19,9 +18,12 @@ class AAppIconLabel : public AIconLabel {
1918
void updateAppIconName(const std::string &app_identifier,
2019
const std::string &alternative_app_identifier);
2120
void updateAppIcon();
21+
22+
private:
2223
unsigned app_icon_size_{24};
2324
bool update_app_icon_{true};
2425
std::string app_icon_name_;
26+
Glib::RefPtr<const Gtk::IconTheme> gtkTheme_;
2527
};
2628

2729
} // namespace waybar

include/AModule.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
#include <json/json.h>
77

88
#include "IModule.hpp"
9-
109
namespace waybar {
1110

1211
class AModule : public IModule {

include/bar.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ class Bar {
6868
struct wl_surface *surface;
6969
bool visible = true;
7070
Gtk::Window window;
71+
Json::Value config;
7172
Gtk::Orientation orientation = Gtk::Orientation::HORIZONTAL;
7273
Gtk::PositionType position = Gtk::PositionType::TOP;
7374

@@ -89,7 +90,6 @@ class Bar {
8990
void onOutputGeometryChanged();
9091

9192
Glib::RefPtr<Gdk::Surface> gdk_surface_;
92-
Json::Value config;
9393
int x_global;
9494
int y_global;
9595

include/modules/sway/bar.hpp

-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
#pragma once
2-
#include <atomic>
3-
#include <string>
42

53
#include "modules/sway/ipc/client.hpp"
64
#include "util/SafeSignal.hpp"

include/modules/sway/ipc/client.hpp

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

3-
#include <sigc++/sigc++.h>
43
#include <sys/socket.h>
54
#include <sys/un.h>
6-
#include <unistd.h>
7-
8-
#include <cstring>
9-
#include <memory>
10-
#include <mutex>
11-
#include <stdexcept>
12-
#include <string>
135

146
#include "ipc.hpp"
157
#include "util/sleeper_thread.hpp"
168

179
namespace waybar::modules::sway {
1810

19-
class Ipc {
11+
class Ipc final {
2012
public:
2113
Ipc();
2214
~Ipc();
@@ -27,15 +19,15 @@ class Ipc {
2719
std::string payload;
2820
};
2921

30-
sigc::signal<void, const struct ipc_response &> signal_event;
31-
sigc::signal<void, const struct ipc_response &> signal_cmd;
22+
sigc::signal<void(const struct ipc_response &)> signal_event;
23+
sigc::signal<void(const struct ipc_response &)> signal_cmd;
3224

3325
void sendCmd(uint32_t type, const std::string &payload = "");
3426
void subscribe(const std::string &payload);
3527
void handleEvent();
3628
void setWorker(std::function<void()> &&func);
3729

38-
protected:
30+
private:
3931
static inline const std::string ipc_magic_ = "i3-ipc";
4032
static inline const size_t ipc_header_size_ = ipc_magic_.size() + 8;
4133

include/modules/sway/language.hpp

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

3-
#include <fmt/format.h>
43
#include <xkbcommon/xkbregistry.h>
54

6-
#include <map>
7-
#include <string>
8-
95
#include "ALabel.hpp"
10-
#include "bar.hpp"
11-
#include "client.hpp"
126
#include "modules/sway/ipc/client.hpp"
137
#include "util/json.hpp"
148

159
namespace waybar::modules::sway {
1610

17-
class Language : public ALabel, public sigc::trackable {
11+
class Language final : public ALabel, public sigc::trackable {
1812
public:
1913
Language(const std::string& id, const Json::Value& config);
2014
virtual ~Language() = default;

include/modules/sway/mode.hpp

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

3-
#include <fmt/format.h>
4-
53
#include "ALabel.hpp"
6-
#include "bar.hpp"
7-
#include "client.hpp"
84
#include "modules/sway/ipc/client.hpp"
95
#include "util/json.hpp"
106

117
namespace waybar::modules::sway {
128

13-
class Mode : public ALabel, public sigc::trackable {
9+
class Mode final : public ALabel, public sigc::trackable {
1410
public:
1511
Mode(const std::string&, const Json::Value&);
1612
virtual ~Mode() = default;

include/modules/sway/scratchpad.hpp

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

3-
#include <gtkmm/label.h>
4-
53
#include <mutex>
6-
#include <string>
74

85
#include "ALabel.hpp"
9-
#include "bar.hpp"
10-
#include "client.hpp"
116
#include "modules/sway/ipc/client.hpp"
127
#include "util/json.hpp"
138

149
namespace waybar::modules::sway {
15-
class Scratchpad : public ALabel {
10+
class Scratchpad final : public ALabel {
1611
public:
1712
Scratchpad(const std::string&, const Json::Value&);
1813
virtual ~Scratchpad() = default;

include/modules/sway/window.hpp

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

3-
#include <fmt/format.h>
4-
5-
#include <tuple>
6-
73
#include "AAppIconLabel.hpp"
8-
#include "bar.hpp"
94
#include "client.hpp"
105
#include "modules/sway/ipc/client.hpp"
116
#include "util/json.hpp"
127

138
namespace waybar::modules::sway {
149

15-
class Window : public AAppIconLabel, public sigc::trackable {
10+
class Window final : public AAppIconLabel, public sigc::trackable {
1611
public:
1712
Window(const std::string&, const waybar::Bar&, const Json::Value&);
1813
virtual ~Window() = default;

include/modules/sway/workspaces.hpp

+4-8
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,20 @@
11
#pragma once
22

3-
#include <fmt/format.h>
43
#include <gtkmm/button.h>
54
#include <gtkmm/label.h>
65

7-
#include <string_view>
8-
#include <unordered_map>
9-
10-
#include "AModule.hpp"
11-
#include "bar.hpp"
126
#include "client.hpp"
137
#include "modules/sway/ipc/client.hpp"
148
#include "util/json.hpp"
159

1610
namespace waybar::modules::sway {
1711

18-
class Workspaces : public AModule, public sigc::trackable {
12+
class Workspaces final: public AModule, public sigc::trackable {
1913
public:
2014
Workspaces(const std::string&, const waybar::Bar&, const Json::Value&);
2115
virtual ~Workspaces() = default;
2216
auto update() -> void override;
17+
operator Gtk::Widget &() override;
2318

2419
private:
2520
static constexpr std::string_view workspace_switch_cmd_ = "workspace {} \"{}\"";
@@ -37,13 +32,14 @@ class Workspaces : public AModule, public sigc::trackable {
3732
const std::string getCycleWorkspace(std::vector<Json::Value>::iterator, bool prev) const;
3833
uint16_t getWorkspaceIndex(const std::string& name) const;
3934
std::string trimWorkspaceName(std::string);
40-
bool handleScroll(GdkEventScroll*) override;
35+
bool handleScroll(double dx, double dy);
4136

4237
const Bar& bar_;
4338
std::vector<Json::Value> workspaces_;
4439
std::vector<std::string> high_priority_named_;
4540
std::vector<std::string> workspaces_order_;
4641
Gtk::Box box_;
42+
4743
util::JsonParser parser_;
4844
std::unordered_map<std::string, Gtk::Button> buttons_;
4945
std::mutex mutex_;

include/util/SafeSignal.hpp

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

33
#include <glibmm/dispatcher.h>
4-
#include <sigc++/signal.h>
54

6-
#include <functional>
75
#include <mutex>
86
#include <queue>
97
#include <thread>
10-
#include <tuple>
11-
#include <type_traits>
12-
#include <utility>
138

149
namespace waybar {
1510

@@ -35,7 +30,7 @@ struct SafeSignal : sigc::signal<void(std::decay_t<Args>...)> {
3530
signal_t::emit(std::forward<EmitArgs>(args)...);
3631
} else {
3732
{
38-
std::unique_lock lock(mutex_);
33+
std::unique_lock lock{mutex_};
3934
queue_.emplace(std::forward<EmitArgs>(args)...);
4035
}
4136
dp_.emit();
@@ -56,8 +51,8 @@ struct SafeSignal : sigc::signal<void(std::decay_t<Args>...)> {
5651
using signal_t::make_slot;
5752

5853
void handle_event() {
59-
for (std::unique_lock lock(mutex_); !queue_.empty(); lock.lock()) {
60-
auto args = queue_.front();
54+
for (std::unique_lock lock{mutex_}; !queue_.empty(); lock.lock()) {
55+
auto args{queue_.front()};
6156
queue_.pop();
6257
lock.unlock();
6358
std::apply(cached_fn_, args);
@@ -67,9 +62,9 @@ struct SafeSignal : sigc::signal<void(std::decay_t<Args>...)> {
6762
Glib::Dispatcher dp_;
6863
std::mutex mutex_;
6964
std::queue<arg_tuple_t> queue_;
70-
const std::thread::id main_tid_ = std::this_thread::get_id();
65+
const std::thread::id main_tid_{std::this_thread::get_id()};
7166
// cache functor for signal emission to avoid recreating it on each event
72-
const slot_t cached_fn_ = make_slot();
67+
const slot_t cached_fn_{make_slot()};
7368
};
7469

7570
} // namespace waybar

include/util/json.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ struct JsonParser {
1616
JsonParser() {}
1717

1818
const Json::Value parse(const std::string& data) const {
19-
Json::Value root(Json::objectValue);
19+
Json::Value root{Json::objectValue};
2020
if (data.empty()) {
2121
return root;
2222
}
23-
std::unique_ptr<Json::CharReader> const reader(builder_.newCharReader());
23+
std::unique_ptr<Json::CharReader> const reader{builder_.newCharReader()};
2424
std::string err;
25-
bool res = reader->parse(data.c_str(), data.c_str() + data.size(), &root, &err);
25+
bool res{reader->parse(data.c_str(), data.c_str() + data.size(), &root, &err)};
2626
if (!res) throw std::runtime_error(err);
2727
return root;
2828
}

meson.build

+21-1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ gtkmm = dependency('gtkmm-4.0', version : ['>=4.12.0'])
7676
giounix = dependency('gio-unix-2.0', version: ['>=2.76.4'])
7777
spdlog = dependency('spdlog', version : ['>=1.10.0'], fallback : ['spdlog', 'spdlog_dep'], default_options : ['external_fmt=enabled'])
7878
libudev = dependency('libudev', required: get_option('libudev'))
79+
xkbregistry = dependency('xkbregistry')
7980

8081
gtk_layer_shell = dependency('gtk4-layer-shell-0',
8182
version : ['>=1.0.2'],
@@ -125,6 +126,8 @@ src_files = files(
125126
'src/util/prepare_for_sleep.cpp',
126127
'src/AModule.cpp',
127128
'src/ALabel.cpp',
129+
'src/AIconLabel.cpp',
130+
'src/AAppIconLabel.cpp',
128131
'src/factory.cpp',
129132
'src/util/ustring_clen.cpp',
130133
'src/group.cpp',
@@ -133,7 +136,8 @@ src_files = files(
133136
'src/modules/load.cpp',
134137
'src/modules/disk.cpp',
135138
'src/modules/temperature.cpp',
136-
'src/modules/idle_inhibitor.cpp'
139+
'src/modules/idle_inhibitor.cpp',
140+
'src/util/rewrite_string.cpp'
137141
)
138142

139143
man_files = files(
@@ -230,6 +234,21 @@ elif is_dragonfly or is_freebsd or is_netbsd or is_openbsd
230234
endif
231235
endif
232236

237+
add_project_arguments('-DHAVE_SWAY', language: 'cpp')
238+
src_files += files('src/modules/sway/ipc/client.cpp',
239+
'src/modules/sway/bar.cpp',
240+
'src/modules/sway/mode.cpp',
241+
'src/modules/sway/language.cpp',
242+
'src/modules/sway/window.cpp',
243+
'src/modules/sway/workspaces.cpp',
244+
'src/modules/sway/scratchpad.cpp')
245+
246+
man_files += files('man/waybar-sway-language.5.scd',
247+
'man/waybar-sway-mode.5.scd',
248+
'man/waybar-sway-scratchpad.5.scd',
249+
'man/waybar-sway-window.5.scd',
250+
'man/waybar-sway-workspaces.5.scd')
251+
233252
add_project_arguments('-DHAVE_DWL', language: 'cpp')
234253
src_files += files('src/modules/dwl/tags.cpp')
235254
man_files += files('man/waybar-dwl-tags.5.scd')
@@ -262,6 +281,7 @@ executable(
262281
wayland_cursor,
263282
client_protos,
264283
spdlog,
284+
xkbregistry,
265285
cava
266286
],
267287
include_directories: inc_dirs,

0 commit comments

Comments
 (0)