5
5
#include < glibmm/markup.h>
6
6
#include < gtkmm/dragsource.h>
7
7
#include < gtkmm/droptarget.h>
8
+ #include < gtkmm/iconpaintable.h>
8
9
#include < spdlog/spdlog.h>
9
10
10
11
#include " client.hpp"
11
12
12
- #include < gtkmm/iconpaintable.h>
13
13
14
14
#include " util/rewrite_string.hpp"
15
15
#include " util/string.hpp"
@@ -148,7 +148,8 @@ bool Task::image_load_icon(Gtk::Image &image, const Glib::RefPtr<Gtk::IconTheme>
148
148
Glib::RefPtr<Gio::DesktopAppInfo> app_info, int size) {
149
149
std::string iconName{" unknown" };
150
150
if (app_info) {
151
- std::string appIconName{get_icon_name_from_icon_theme (icon_theme, app_info->get_startup_wm_class ())};
151
+ std::string appIconName{
152
+ get_icon_name_from_icon_theme (icon_theme, app_info->get_startup_wm_class ())};
152
153
if (!iconName.empty ())
153
154
iconName = appIconName;
154
155
else {
@@ -158,17 +159,20 @@ bool Task::image_load_icon(Gtk::Image &image, const Glib::RefPtr<Gtk::IconTheme>
158
159
}
159
160
}
160
161
161
- auto themeIcon{icon_theme->lookup_icon (iconName, size, image.get_scale_factor (), Gtk::TextDirection::NONE)};
162
+ auto themeIcon{
163
+ icon_theme->lookup_icon (iconName, size, image.get_scale_factor (), Gtk::TextDirection::NONE)};
162
164
if (themeIcon)
163
165
spdlog::debug (" {} Loaded icon '{}'" , repr (), iconName);
164
166
else {
165
167
if (Glib::file_test (iconName, Glib::FileTest::EXISTS))
166
- themeIcon = Gtk::IconPaintable::create (Gio::File::create_for_path (iconName), size, image.get_scale_factor ());
168
+ themeIcon = Gtk::IconPaintable::create (Gio::File::create_for_path (iconName),
169
+ size, image.get_scale_factor ());
167
170
168
171
if (themeIcon)
169
172
spdlog::debug (" {} Loaded icon from file '{}'" , repr (), iconName);
170
173
else {
171
- themeIcon = icon_theme->lookup_icon (" image-missing" , size, image.get_scale_factor (), Gtk::TextDirection::NONE);
174
+ themeIcon = icon_theme->lookup_icon (" image-missing" , size, image.get_scale_factor (),
175
+ Gtk::TextDirection::NONE);
172
176
173
177
if (themeIcon)
174
178
spdlog::debug (" {} Loaded icon from resource" , repr ());
@@ -437,10 +441,10 @@ void Task::handle_output_enter(struct wl_output *output) {
437
441
438
442
if (!button_visible_ && (tbar_->all_outputs () || tbar_->show_output (output))) {
439
443
/* The task entered the output of the current bar make the button visible */
440
- button->property_width_request ().signal_changed ().connect ([&](){
441
- minimize_hint.w = button->get_width ();});
442
- button->property_height_request ().signal_changed ().connect ([&]() {
443
- minimize_hint.h = button->get_height ();});
444
+ button->property_width_request ().signal_changed ().connect (
445
+ [&]() { minimize_hint.w = button->get_width (); });
446
+ button->property_height_request ().signal_changed ().connect (
447
+ [&]() { minimize_hint.h = button->get_height (); });
444
448
445
449
tbar_->add_button (button);
446
450
button->show ();
@@ -553,7 +557,7 @@ void Task::handleClick(int n_press, double dx, double dy) {
553
557
spdlog::warn (" Unknown action {}" , action);
554
558
}
555
559
556
- bool Task::handleDropData (const Glib::ValueBase& value, double , double ) {
560
+ bool Task::handleDropData (const Glib::ValueBase & value, double , double ) {
557
561
if (G_VALUE_HOLDS (value.gobj (), Glib::Value<Glib::RefPtr<Gtk::Button >>::value_type ())) {
558
562
// Expand incoming value
559
563
Glib::Value<Glib::RefPtr<Gtk::Button >> dropValue;
@@ -565,7 +569,7 @@ bool Task::handleDropData(const Glib::ValueBase& value, double, double) {
565
569
auto draggedParent{draggedButton->get_parent ()};
566
570
auto droppedParent{this ->button ->get_parent ()};
567
571
if (draggedParent == droppedParent) {
568
- auto draggedBox{(Gtk::Box*)draggedParent};
572
+ auto draggedBox{(Gtk::Box *)draggedParent};
569
573
// Need to move dragged button before the current
570
574
draggedBox->reorder_child_after (*draggedButton, *this ->button );
571
575
draggedBox->reorder_child_after (*this ->button , *draggedButton);
@@ -576,7 +580,7 @@ bool Task::handleDropData(const Glib::ValueBase& value, double, double) {
576
580
return true ;
577
581
} else {
578
582
spdlog::warn (" WLR taskbar. Received unexpected data type {} in button" ,
579
- G_VALUE_TYPE_NAME (value.gobj ()));
583
+ G_VALUE_TYPE_NAME (value.gobj ()));
580
584
return false ;
581
585
}
582
586
}
@@ -860,9 +864,8 @@ void Taskbar::move_button(Glib::RefPtr<Gtk::Button> bt, int pos) {
860
864
try {
861
865
const auto sibling{(box_.get_children ()).at (pos - 1 )};
862
866
863
- if (sibling)
864
- box_.reorder_child_after (*bt, *sibling);
865
- } catch (const std::out_of_range& ex) {
867
+ if (sibling) box_.reorder_child_after (*bt, *sibling);
868
+ } catch (const std::out_of_range &ex) {
866
869
spdlog::error (" WLR taskbar. {}" , ex.what ());
867
870
}
868
871
}
0 commit comments