1
1
#include " modules/image.hpp"
2
2
3
3
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_);
6
6
box_.set_name (" image" );
7
7
if (!id.empty ()) {
8
8
box_.get_style_context ()->add_class (id);
9
9
}
10
10
box_.get_style_context ()->add_class (MODULE_CLASS);
11
- event_box_. add (box_);
11
+ AModule::bindEvents (box_);
12
12
13
13
dp.emit ();
14
14
@@ -30,7 +30,7 @@ waybar::modules::Image::Image(const std::string& id, const Json::Value& config)
30
30
void waybar::modules::Image::delayWorker () {
31
31
thread_ = [this ] {
32
32
dp.emit ();
33
- auto interval = std::chrono::seconds (interval_);
33
+ auto interval{ std::chrono::seconds (interval_)} ;
34
34
thread_.sleep_for (interval);
35
35
};
36
36
}
@@ -51,7 +51,7 @@ auto waybar::modules::Image::update() -> void {
51
51
} else {
52
52
path_ = " " ;
53
53
}
54
- if (Glib::file_test (path_, Glib::FILE_TEST_EXISTS ))
54
+ if (Glib::file_test (path_, Glib::FileTest::EXISTS ))
55
55
pixbuf = Gdk::Pixbuf::create_from_file (path_, size_, size_);
56
56
else
57
57
pixbuf = {};
@@ -75,7 +75,7 @@ auto waybar::modules::Image::update() -> void {
75
75
void waybar::modules::Image::parseOutputRaw () {
76
76
std::istringstream output (output_.out );
77
77
std::string line;
78
- int i = 0 ;
78
+ int i{ 0 } ;
79
79
while (getline (output, line)) {
80
80
if (i == 0 ) {
81
81
path_ = line;
0 commit comments