X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fframe.c;h=fe5ddc49c3a5a37f822c05ae7f3e230ea5c572e2;hb=fcdcd0fab4141d2d8bc1c156096ac5dbedbeaf61;hp=7c26d7068eefca58a51c5fbc398031609906365c;hpb=0621e22932b40ada705abbeb67b67c0e37ef7654;p=chaz%2Fopenbox diff --git a/openbox/frame.c b/openbox/frame.c index 7c26d706..fe5ddc49 100644 --- a/openbox/frame.c +++ b/openbox/frame.c @@ -19,6 +19,11 @@ f->cbwidth_y) static void layout_title(ObFrame *self); +static void flash_done(gpointer data); +static gboolean flash_timeout(gpointer data); + +static void set_theme_statics(ObFrame *self); +static void free_theme_statics(ObFrame *self); static Window createWindow(Window parent, unsigned long mask, XSetWindowAttributes *attrib) @@ -86,6 +91,18 @@ ObFrame *frame_new() XMapWindow(ob_display, self->rgrip); XMapWindow(ob_display, self->label); + self->max_press = self->close_press = self->desk_press = + self->iconify_press = self->shade_press = FALSE; + self->max_hover = self->close_hover = self->desk_hover = + self->iconify_hover = self->shade_hover = FALSE; + + set_theme_statics(self); + + return (ObFrame*)self; +} + +static void set_theme_statics(ObFrame *self) +{ /* set colors/appearance/sizes for stuff that doesn't change */ XSetWindowBorder(ob_display, self->window, ob_rr_theme->b_color->pixel); XSetWindowBorder(ob_display, self->title, ob_rr_theme->b_color->pixel); @@ -123,16 +140,9 @@ ObFrame *frame_new() RrAppearanceCopy(ob_rr_theme->a_unfocused_handle); self->a_focused_handle = RrAppearanceCopy(ob_rr_theme->a_focused_handle); self->a_icon = RrAppearanceCopy(ob_rr_theme->a_icon); - - self->max_press = self->close_press = self->desk_press = - self->iconify_press = self->shade_press = FALSE; - self->max_hover = self->close_hover = self->desk_hover = - self->iconify_hover = self->shade_hover = FALSE; - - return (ObFrame*)self; } -static void frame_free(ObFrame *self) +static void free_theme_statics(ObFrame *self) { RrAppearanceFree(self->a_unfocused_title); RrAppearanceFree(self->a_focused_title); @@ -141,6 +151,11 @@ static void frame_free(ObFrame *self) RrAppearanceFree(self->a_unfocused_handle); RrAppearanceFree(self->a_focused_handle); RrAppearanceFree(self->a_icon); +} + +static void frame_free(ObFrame *self) +{ + free_theme_statics(self); XDestroyWindow(ob_display, self->window); @@ -164,6 +179,13 @@ void frame_hide(ObFrame *self) } } +void frame_adjust_theme(ObFrame *self) +{ + free_theme_statics(self); + set_theme_statics(self); + frame_adjust_area(self, TRUE, TRUE, FALSE); +} + void frame_adjust_shape(ObFrame *self) { #ifdef SHAPE @@ -475,6 +497,8 @@ void frame_release_client(ObFrame *self, ObClient *client) g_hash_table_remove(window_map, &self->tlresize); g_hash_table_remove(window_map, &self->trresize); + ob_main_loop_timeout_remove_data(ob_main_loop, flash_timeout, self); + frame_free(self); } @@ -785,7 +809,6 @@ void frame_frame_gravity(ObFrame *self, int *x, int *y) static void flash_done(gpointer data) { ObFrame *self = data; - self->flashing = FALSE; if (self->focused != self->flash_on) frame_adjust_focus(self, self->focused); @@ -795,21 +818,20 @@ static gboolean flash_timeout(gpointer data) { ObFrame *self = data; GTimeVal now; - gboolean focused; - - g_message("flash"); g_get_current_time(&now); if (now.tv_sec > self->flash_end.tv_sec || (now.tv_sec == self->flash_end.tv_sec && - now.tv_usec >= self->flash_end.tv_usec)) { - g_message("done flashing"); + now.tv_usec >= self->flash_end.tv_usec)) + self->flashing = FALSE; + + if (!self->flashing) return FALSE; /* we are done */ - } self->flash_on = !self->flash_on; - g_message("on %d", self->flash_on); { + gboolean focused; + focused = self->focused; /* save the focused flag */ frame_adjust_focus(self, self->flash_on); self->focused = focused; @@ -818,18 +840,23 @@ static gboolean flash_timeout(gpointer data) return TRUE; /* go again */ } -void frame_flash(ObFrame *self) +void frame_flash_start(ObFrame *self) { self->flash_on = self->focused; if (!self->flashing) ob_main_loop_timeout_add(ob_main_loop, - G_USEC_PER_SEC / 2, + G_USEC_PER_SEC * 0.75, flash_timeout, self, flash_done); g_get_current_time(&self->flash_end); - g_time_val_add(&self->flash_end, G_USEC_PER_SEC * 4); + g_time_val_add(&self->flash_end, G_USEC_PER_SEC * 5); self->flashing = TRUE; } + +void frame_flash_stop(ObFrame *self) +{ + self->flashing = FALSE; +}