taskbar: Fixup whitespace
This commit is contained in:
parent
fdc8431709
commit
4d89c64bed
|
@ -25,7 +25,7 @@
|
||||||
namespace waybar::modules::wlr {
|
namespace waybar::modules::wlr {
|
||||||
|
|
||||||
struct widget_geometry {
|
struct widget_geometry {
|
||||||
int x, y, w, h;
|
int x, y, w, h;
|
||||||
};
|
};
|
||||||
|
|
||||||
class Taskbar;
|
class Taskbar;
|
||||||
|
|
|
@ -388,7 +388,8 @@ void Task::handle_title(const char *title) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Task::set_minimize_hint() {
|
void Task::set_minimize_hint() {
|
||||||
zwlr_foreign_toplevel_handle_v1_set_rectangle(handle_, bar_.surface, minimize_hint.x, minimize_hint.y, minimize_hint.w, minimize_hint.h);
|
zwlr_foreign_toplevel_handle_v1_set_rectangle(handle_, bar_.surface, minimize_hint.x,
|
||||||
|
minimize_hint.y, minimize_hint.w, minimize_hint.h);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Task::hide_if_ignored() {
|
void Task::hide_if_ignored() {
|
||||||
|
@ -452,9 +453,10 @@ void Task::handle_app_id(const char *app_id) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Task::on_button_size_allocated(Gtk::Allocation &alloc) {
|
void Task::on_button_size_allocated(Gtk::Allocation &alloc) {
|
||||||
gtk_widget_translate_coordinates(GTK_WIDGET(button.gobj()), GTK_WIDGET(bar_.window.gobj()), 0, 0, &minimize_hint.x, &minimize_hint.y);
|
gtk_widget_translate_coordinates(GTK_WIDGET(button.gobj()), GTK_WIDGET(bar_.window.gobj()), 0, 0,
|
||||||
minimize_hint.w = button.get_width();
|
&minimize_hint.x, &minimize_hint.y);
|
||||||
minimize_hint.h = button.get_height();
|
minimize_hint.w = button.get_width();
|
||||||
|
minimize_hint.h = button.get_height();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Task::handle_output_enter(struct wl_output *output) {
|
void Task::handle_output_enter(struct wl_output *output) {
|
||||||
|
@ -467,7 +469,8 @@ void Task::handle_output_enter(struct wl_output *output) {
|
||||||
|
|
||||||
if (!button_visible_ && (tbar_->all_outputs() || tbar_->show_output(output))) {
|
if (!button_visible_ && (tbar_->all_outputs() || tbar_->show_output(output))) {
|
||||||
/* The task entered the output of the current bar make the button visible */
|
/* The task entered the output of the current bar make the button visible */
|
||||||
button.signal_size_allocate().connect_notify(sigc::mem_fun(this, &Task::on_button_size_allocated));
|
button.signal_size_allocate().connect_notify(
|
||||||
|
sigc::mem_fun(this, &Task::on_button_size_allocated));
|
||||||
tbar_->add_button(button);
|
tbar_->add_button(button);
|
||||||
button.show();
|
button.show();
|
||||||
button_visible_ = true;
|
button_visible_ = true;
|
||||||
|
|
Loading…
Reference in New Issue