2022-01-16 23:55:13 +00:00
|
|
|
#include "modules/image.hpp"
|
|
|
|
|
2023-01-24 19:53:49 +00:00
|
|
|
waybar::modules::Image::Image(const std::string& id, const Json::Value& config)
|
|
|
|
: AModule(config, "image", id), box_(Gtk::ORIENTATION_HORIZONTAL, 0) {
|
2023-01-24 19:34:02 +00:00
|
|
|
box_.pack_start(image_);
|
|
|
|
box_.set_name("image");
|
|
|
|
if (!id.empty()) {
|
|
|
|
box_.get_style_context()->add_class(id);
|
|
|
|
}
|
|
|
|
event_box_.add(box_);
|
2022-01-16 23:55:13 +00:00
|
|
|
|
|
|
|
dp.emit();
|
|
|
|
|
|
|
|
size_ = config["size"].asInt();
|
|
|
|
|
|
|
|
interval_ = config_["interval"].asInt();
|
|
|
|
|
|
|
|
if (size_ == 0) {
|
|
|
|
size_ = 16;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (interval_ == 0) {
|
|
|
|
interval_ = INT_MAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
delayWorker();
|
|
|
|
}
|
|
|
|
|
|
|
|
void waybar::modules::Image::delayWorker() {
|
|
|
|
thread_ = [this] {
|
|
|
|
dp.emit();
|
|
|
|
auto interval = std::chrono::seconds(interval_);
|
|
|
|
thread_.sleep_for(interval);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
void waybar::modules::Image::refresh(int sig) {
|
|
|
|
if (sig == SIGRTMIN + config_["signal"].asInt()) {
|
|
|
|
thread_.wake_up();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto waybar::modules::Image::update() -> void {
|
|
|
|
Glib::RefPtr<Gdk::Pixbuf> pixbuf;
|
2023-02-09 12:25:39 +00:00
|
|
|
if (config_["path"].isString()) {
|
2023-01-25 16:58:07 +00:00
|
|
|
path_ = config_["path"].asString();
|
2023-02-09 12:25:39 +00:00
|
|
|
} else if (config_["exec"].isString()) {
|
2023-01-25 16:58:07 +00:00
|
|
|
output_ = util::command::exec(config_["exec"].asString());
|
2023-04-21 08:38:21 +00:00
|
|
|
parseOutputRaw();
|
2023-02-09 12:25:39 +00:00
|
|
|
} else {
|
|
|
|
path_ = "";
|
2023-01-29 05:11:24 +00:00
|
|
|
}
|
2022-01-16 23:55:13 +00:00
|
|
|
if (Glib::file_test(path_, Glib::FILE_TEST_EXISTS))
|
|
|
|
pixbuf = Gdk::Pixbuf::create_from_file(path_, size_, size_);
|
|
|
|
else
|
|
|
|
pixbuf = {};
|
|
|
|
|
|
|
|
if (pixbuf) {
|
2023-04-21 08:38:21 +00:00
|
|
|
if (tooltipEnabled() && !tooltip_.empty()) {
|
|
|
|
if (box_.get_tooltip_markup() != tooltip_) {
|
|
|
|
box_.set_tooltip_markup(tooltip_);
|
|
|
|
}
|
|
|
|
}
|
2022-01-16 23:55:13 +00:00
|
|
|
image_.set(pixbuf);
|
|
|
|
image_.show();
|
|
|
|
} else {
|
|
|
|
image_.clear();
|
|
|
|
image_.hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
AModule::update();
|
|
|
|
}
|
2023-04-21 08:38:21 +00:00
|
|
|
|
|
|
|
void waybar::modules::Image::parseOutputRaw() {
|
|
|
|
std::istringstream output(output_.out);
|
|
|
|
std::string line;
|
|
|
|
int i = 0;
|
|
|
|
while (getline(output, line)) {
|
|
|
|
if (i == 0) {
|
|
|
|
path_ = line;
|
|
|
|
} else if (i == 1) {
|
|
|
|
tooltip_ = line;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|