X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fclient_list_combined_menu.c;h=cf85fd65b87468f2e06fc08ee313f0345707f756;hb=44bc0dab886c924b6aac1d3f1eaf4cc0164950c9;hp=9dd56e0a92da85259bc467bbbfab19106a51f755;hpb=e5d6a552a46bce27cbe25c92023094b44c9a8284;p=chaz%2Fopenbox diff --git a/openbox/client_list_combined_menu.c b/openbox/client_list_combined_menu.c index 9dd56e0a..cf85fd65 100644 --- a/openbox/client_list_combined_menu.c +++ b/openbox/client_list_combined_menu.c @@ -33,7 +33,7 @@ ObMenu *combined_menu; -static void self_update(ObMenuFrame *frame, gpointer data) +static gboolean self_update(ObMenuFrame *frame, gpointer data) { ObMenu *menu = frame->menu; ObMenuEntry *e; @@ -82,6 +82,8 @@ static void self_update(ObMenuFrame *frame, gpointer data) e->data.normal.icon_width = icon->width; e->data.normal.icon_height = icon->height; e->data.normal.icon_data = icon->data; + e->data.normal.icon_alpha = + c->iconic ? OB_ICONIC_ALPHA : 0xff; } } } @@ -104,11 +106,13 @@ static void self_update(ObMenuFrame *frame, gpointer data) e->data.normal.enabled = FALSE; } } + return TRUE; /* always show the menu */ } /* executes it using the client in the actions, since we set that when we make the actions! */ -static void menu_execute(ObMenuEntry *self, guint state, gpointer data, +static void menu_execute(ObMenuEntry *self, ObMenuFrame *f, + ObClient *c, guint state, gpointer data, Time time) { ObAction *a; @@ -141,7 +145,7 @@ static void client_dest(ObClient *client, gpointer data) void client_list_combined_menu_startup(gboolean reconfig) { if (!reconfig) - client_add_destructor(client_dest, NULL); + client_add_destroy_notify(client_dest, NULL); combined_menu = menu_new(MENU_NAME, _("Windows"), TRUE, NULL); menu_set_update_func(combined_menu, self_update); @@ -151,5 +155,5 @@ void client_list_combined_menu_startup(gboolean reconfig) void client_list_combined_menu_shutdown(gboolean reconfig) { if (!reconfig) - client_remove_destructor(client_dest); + client_remove_destroy_notify(client_dest); }