Skip to content

Commit e0f5064

Browse files
committed
Happy linter
Signed-off-by: Viktar Lukashonak <myxabeer@gmail.com>
1 parent c0803ec commit e0f5064

File tree

2 files changed

+19
-16
lines changed

2 files changed

+19
-16
lines changed

include/modules/wlr/taskbar.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ class Task {
101101

102102
/* Callbacks for Gtk events */
103103
void handleClick(int n_press, double dx, double dy);
104-
bool handleDropData(const Glib::ValueBase&, double, double);
104+
bool handleDropData(const Glib::ValueBase &, double, double);
105105

106106
bool operator==(const Task &) const;
107107
bool operator!=(const Task &) const;

src/modules/wlr/taskbar.cpp

+18-15
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
#include <glibmm/markup.h>
66
#include <gtkmm/dragsource.h>
77
#include <gtkmm/droptarget.h>
8+
#include <gtkmm/iconpaintable.h>
89
#include <spdlog/spdlog.h>
910

1011
#include "client.hpp"
1112

12-
#include <gtkmm/iconpaintable.h>
1313

1414
#include "util/rewrite_string.hpp"
1515
#include "util/string.hpp"
@@ -148,7 +148,8 @@ bool Task::image_load_icon(Gtk::Image &image, const Glib::RefPtr<Gtk::IconTheme>
148148
Glib::RefPtr<Gio::DesktopAppInfo> app_info, int size) {
149149
std::string iconName{"unknown"};
150150
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())};
152153
if (!iconName.empty())
153154
iconName = appIconName;
154155
else {
@@ -158,17 +159,20 @@ bool Task::image_load_icon(Gtk::Image &image, const Glib::RefPtr<Gtk::IconTheme>
158159
}
159160
}
160161

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)};
162164
if (themeIcon)
163165
spdlog::debug("{} Loaded icon '{}'", repr(), iconName);
164166
else {
165167
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());
167170

168171
if (themeIcon)
169172
spdlog::debug("{} Loaded icon from file '{}'", repr(), iconName);
170173
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);
172176

173177
if (themeIcon)
174178
spdlog::debug("{} Loaded icon from resource", repr());
@@ -437,10 +441,10 @@ void Task::handle_output_enter(struct wl_output *output) {
437441

438442
if (!button_visible_ && (tbar_->all_outputs() || tbar_->show_output(output))) {
439443
/* 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(); });
444448

445449
tbar_->add_button(button);
446450
button->show();
@@ -553,7 +557,7 @@ void Task::handleClick(int n_press, double dx, double dy) {
553557
spdlog::warn("Unknown action {}", action);
554558
}
555559

556-
bool Task::handleDropData(const Glib::ValueBase& value, double, double) {
560+
bool Task::handleDropData(const Glib::ValueBase &value, double, double) {
557561
if (G_VALUE_HOLDS(value.gobj(), Glib::Value<Glib::RefPtr<Gtk::Button>>::value_type())) {
558562
// Expand incoming value
559563
Glib::Value<Glib::RefPtr<Gtk::Button>> dropValue;
@@ -565,7 +569,7 @@ bool Task::handleDropData(const Glib::ValueBase& value, double, double) {
565569
auto draggedParent{draggedButton->get_parent()};
566570
auto droppedParent{this->button->get_parent()};
567571
if (draggedParent == droppedParent) {
568-
auto draggedBox{(Gtk::Box*)draggedParent};
572+
auto draggedBox{(Gtk::Box *)draggedParent};
569573
// Need to move dragged button before the current
570574
draggedBox->reorder_child_after(*draggedButton, *this->button);
571575
draggedBox->reorder_child_after(*this->button, *draggedButton);
@@ -576,7 +580,7 @@ bool Task::handleDropData(const Glib::ValueBase& value, double, double) {
576580
return true;
577581
} else {
578582
spdlog::warn("WLR taskbar. Received unexpected data type {} in button",
579-
G_VALUE_TYPE_NAME(value.gobj()));
583+
G_VALUE_TYPE_NAME(value.gobj()));
580584
return false;
581585
}
582586
}
@@ -860,9 +864,8 @@ void Taskbar::move_button(Glib::RefPtr<Gtk::Button> bt, int pos) {
860864
try {
861865
const auto sibling{(box_.get_children()).at(pos - 1)};
862866

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) {
866869
spdlog::error("WLR taskbar. {}", ex.what());
867870
}
868871
}

0 commit comments

Comments
 (0)