visual indicator when moving tab

This commit is contained in:
WanderingPenwing 2024-08-06 00:52:10 +02:00
parent 30e39c17fd
commit 3c4a82eef0

8
surf.c
View file

@ -600,6 +600,9 @@ void tab_bar_mouse_release(GtkWidget *w, GdkEvent *e, Client *c) {
} }
c->tab_click_index = -1; c->tab_click_index = -1;
if (c->tab_drag) {
update_tab_bar(c);
}
} }
void tab_bar_mouse_move(GtkWidget *w, GdkEvent *e, Client *c) { void tab_bar_mouse_move(GtkWidget *w, GdkEvent *e, Client *c) {
@ -667,8 +670,9 @@ void tab_bar_click(Client *c, bool close) {
} }
void fill_tab_bar(Client *c) { void fill_tab_bar(Client *c) {
GdkRGBA fg_color; GdkRGBA fg_color, light_color;
gdk_rgba_parse(&fg_color, tab_bar_color[1]); gdk_rgba_parse(&fg_color, tab_bar_color[1]);
gdk_rgba_parse(&light_color, tab_bar_color[2]);
int tab_index = 0; int tab_index = 0;
// Add tabs to the tab bar // Add tabs to the tab bar
@ -695,6 +699,8 @@ void fill_tab_bar(Client *c) {
if (tab_index == c->selected_tab) { if (tab_index == c->selected_tab) {
gtk_widget_override_background_color(tab_box, GTK_STATE_FLAG_NORMAL, &fg_color); gtk_widget_override_background_color(tab_box, GTK_STATE_FLAG_NORMAL, &fg_color);
} else if (tab_index == c->tab_click_index) {
gtk_widget_override_background_color(tab_box, GTK_STATE_FLAG_NORMAL, &light_color);
} }
gtk_grid_attach_next_to(GTK_GRID(c->tab_bar), tab_box, NULL, GTK_POS_RIGHT, 1, 1); // Pack the box into the grid gtk_grid_attach_next_to(GTK_GRID(c->tab_bar), tab_box, NULL, GTK_POS_RIGHT, 1, 1); // Pack the box into the grid