Skip to content

Commit bbc916d

Browse files
committed
GTK4: Migration network
Signed-off-by: Viktar Lukashonak <myxabeer@gmail.com>
1 parent 53948bd commit bbc916d

File tree

7 files changed

+136
-132
lines changed

7 files changed

+136
-132
lines changed

include/modules/network.hpp

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

3-
#include <arpa/inet.h>
4-
#include <fmt/format.h>
5-
#include <linux/nl80211.h>
6-
#include <netlink/genl/ctrl.h>
73
#include <netlink/genl/genl.h>
8-
#include <netlink/netlink.h>
94
#include <sys/epoll.h>
105

11-
#include <optional>
12-
136
#include "ALabel.hpp"
147
#include "util/sleeper_thread.hpp"
158
#ifdef WANT_RFKILL
@@ -18,7 +11,7 @@
1811

1912
namespace waybar::modules {
2013

21-
class Network : public ALabel {
14+
class Network final : public ALabel {
2215
public:
2316
Network(const std::string&, const Json::Value&);
2417
virtual ~Network();

include/util/format.hpp

+10-10
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ class pow_format {
1616
namespace fmt {
1717
template <>
1818
struct formatter<pow_format> {
19-
char spec = 0;
20-
int width = 0;
19+
char spec{0};
20+
int width{0};
2121

2222
template <typename ParseContext>
2323
constexpr auto parse(ParseContext& ctx) -> decltype(ctx.begin()) {
24-
auto it = ctx.begin(), end = ctx.end();
24+
auto it{ctx.begin()}, end{ctx.end()};
2525
if (it != end && *it == ':') ++it;
2626
if (it && (*it == '>' || *it == '<' || *it == '=')) {
2727
spec = *it;
@@ -46,21 +46,21 @@ struct formatter<pow_format> {
4646

4747
template <class FormatContext>
4848
auto format(const pow_format& s, FormatContext& ctx) -> decltype(ctx.out()) {
49-
const char* units[] = {"", "k", "M", "G", "T", "P", nullptr};
49+
const char* units[]{"", "k", "M", "G", "T", "P", nullptr};
5050

51-
auto base = s.binary_ ? 1024ull : 1000ll;
52-
auto fraction = (double)s.val_;
51+
auto base{s.binary_ ? 1024ull : 1000ll};
52+
auto fraction{(double)s.val_};
5353

5454
int pow;
5555
for (pow = 0; units[pow + 1] != nullptr && fraction / base >= 1; ++pow) {
5656
fraction /= base;
5757
}
5858

59-
auto number_width = 5 // coeff in {:.1f} format
60-
+ s.binary_; // potential 4th digit before the decimal point
61-
auto max_width = number_width + 1 // prefix from units array
59+
auto number_width{5 // coeff in {:.1f} format
60+
+ s.binary_}; // potential 4th digit before the decimal point
61+
auto max_width{number_width + 1 // prefix from units array
6262
+ s.binary_ // for the 'i' in GiB.
63-
+ s.unit_.length();
63+
+ s.unit_.length()};
6464

6565
const char* format;
6666
std::string string;

include/util/rfkill.hpp

+3-5
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@
22

33
#include <glibmm/iochannel.h>
44
#include <linux/rfkill.h>
5-
#include <sigc++/signal.h>
6-
#include <sigc++/trackable.h>
75

86
namespace waybar::util {
97

10-
class Rfkill : public sigc::trackable {
8+
class Rfkill final : public sigc::trackable {
119
public:
1210
Rfkill(enum rfkill_type rfkill_type);
1311
~Rfkill();
@@ -17,8 +15,8 @@ class Rfkill : public sigc::trackable {
1715

1816
private:
1917
enum rfkill_type rfkill_type_;
20-
bool state_ = false;
21-
int fd_ = -1;
18+
bool state_{false};
19+
int fd_{-1};
2220

2321
bool on_event(Glib::IOCondition cond);
2422
};

meson.build

+18-1
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ 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'))
7979
xkbregistry = dependency('xkbregistry')
80+
libnl = dependency('libnl-3.0', required: get_option('libnl'))
81+
libnlgen = dependency('libnl-genl-3.0', required: get_option('libnl'))
8082

8183
gtk_layer_shell = dependency('gtk4-layer-shell-0',
8284
version : ['>=1.0.2'],
@@ -180,6 +182,13 @@ if libudev.found() and (is_linux or libepoll.found())
180182
)
181183
endif
182184

185+
if get_option('rfkill').enabled() and is_linux
186+
add_project_arguments('-DWANT_RFKILL', language: 'cpp')
187+
src_files += files(
188+
'src/util/rfkill.cpp'
189+
)
190+
endif
191+
183192
cava = dependency('cava',
184193
version : '>=0.10.1',
185194
required: get_option('cava'),
@@ -254,6 +263,12 @@ add_project_arguments('-DHAVE_DWL', language: 'cpp')
254263
src_files += files('src/modules/dwl/tags.cpp')
255264
man_files += files('man/waybar-dwl-tags.5.scd')
256265

266+
if libnl.found() and libnlgen.found()
267+
add_project_arguments('-DHAVE_LIBNL', language: 'cpp')
268+
src_files += files('src/modules/network.cpp')
269+
man_files += files('man/waybar-network.5.scd')
270+
endif
271+
257272
if not get_option('logind').disabled()
258273
add_project_arguments('-DHAVE_GAMEMODE', '-DHAVE_LOGIND_INHIBITOR', language: 'cpp')
259274
src_files += files(
@@ -283,7 +298,9 @@ executable(
283298
client_protos,
284299
spdlog,
285300
xkbregistry,
286-
cava
301+
cava,
302+
libnl,
303+
libnlgen
287304
],
288305
include_directories: inc_dirs,
289306
install: true,

src/factory.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -244,20 +244,21 @@ gtk4 todo
244244
if (ref == "tray") {
245245
return new waybar::modules::SNI::Tray(id, bar_, config_[name]);
246246
}
247-
#endif
247+
#endif*/
248248
#ifdef HAVE_LIBNL
249249
if (ref == "network") {
250250
return new waybar::modules::Network(id, config_[name]);
251251
}
252-
#endif*/
252+
#endif
253253
#ifdef HAVE_LIBUDEV
254254
if (ref == "backlight") {
255255
return new waybar::modules::Backlight(id, config_[name]);
256256
}
257257
if (ref == "backlight/slider") {
258258
return new waybar::modules::BacklightSlider(id, config_[name]);
259259
}
260-
#endif/*
260+
#endif
261+
/*
261262
#ifdef HAVE_LIBEVDEV
262263
if (ref == "keyboard-state") {
263264
return new waybar::modules::KeyboardState(id, bar_, config_[name]);

0 commit comments

Comments
 (0)