Skip to content

Commit 53948bd

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

File tree

3 files changed

+11
-14
lines changed

3 files changed

+11
-14
lines changed

include/modules/image.hpp

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

3-
#include <fmt/format.h>
43
#include <gtkmm/image.h>
54

6-
#include <csignal>
7-
#include <string>
8-
9-
#include "ALabel.hpp"
5+
#include "AModule.hpp"
106
#include "gtkmm/box.h"
117
#include "util/command.hpp"
12-
#include "util/json.hpp"
138
#include "util/sleeper_thread.hpp"
149

10+
1511
namespace waybar::modules {
1612

17-
class Image : public AModule {
13+
class Image final : public AModule {
1814
public:
1915
Image(const std::string&, const Json::Value&);
2016
virtual ~Image() = default;
@@ -29,7 +25,7 @@ class Image : public AModule {
2925
Gtk::Box box_;
3026
Gtk::Image image_;
3127
std::string path_;
32-
std::string tooltip_;
28+
Glib::ustring tooltip_;
3329
int size_;
3430
int interval_;
3531
util::command::res output_;

meson.build

+1
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ src_files = files(
137137
'src/modules/disk.cpp',
138138
'src/modules/temperature.cpp',
139139
'src/modules/idle_inhibitor.cpp',
140+
'src/modules/image.cpp',
140141
'src/util/rewrite_string.cpp'
141142
)
142143

src/modules/image.cpp

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

33
waybar::modules::Image::Image(const std::string& id, const Json::Value& config)
4-
: AModule(config, "image", id), box_(Gtk::ORIENTATION_HORIZONTAL, 0) {
5-
box_.pack_start(image_);
4+
: AModule(config, "image", id), box_(Gtk::Orientation::HORIZONTAL, 0) {
5+
box_.append(image_);
66
box_.set_name("image");
77
if (!id.empty()) {
88
box_.get_style_context()->add_class(id);
99
}
1010
box_.get_style_context()->add_class(MODULE_CLASS);
11-
event_box_.add(box_);
11+
AModule::bindEvents(box_);
1212

1313
dp.emit();
1414

@@ -30,7 +30,7 @@ waybar::modules::Image::Image(const std::string& id, const Json::Value& config)
3030
void waybar::modules::Image::delayWorker() {
3131
thread_ = [this] {
3232
dp.emit();
33-
auto interval = std::chrono::seconds(interval_);
33+
auto interval{std::chrono::seconds(interval_)};
3434
thread_.sleep_for(interval);
3535
};
3636
}
@@ -51,7 +51,7 @@ auto waybar::modules::Image::update() -> void {
5151
} else {
5252
path_ = "";
5353
}
54-
if (Glib::file_test(path_, Glib::FILE_TEST_EXISTS))
54+
if (Glib::file_test(path_, Glib::FileTest::EXISTS))
5555
pixbuf = Gdk::Pixbuf::create_from_file(path_, size_, size_);
5656
else
5757
pixbuf = {};
@@ -75,7 +75,7 @@ auto waybar::modules::Image::update() -> void {
7575
void waybar::modules::Image::parseOutputRaw() {
7676
std::istringstream output(output_.out);
7777
std::string line;
78-
int i = 0;
78+
int i{0};
7979
while (getline(output, line)) {
8080
if (i == 0) {
8181
path_ = line;

0 commit comments

Comments
 (0)