set a OB_ICONIFY_ALPHA define in misc.h for the 3 places to all use
This commit is contained in:
parent
7b14d44b39
commit
a71a98b667
4 changed files with 10 additions and 6 deletions
|
@ -82,8 +82,8 @@ static gboolean 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;
|
||||
/* 7/16 opacity if iconic */
|
||||
e->data.normal.icon_alpha = c->iconic ? 0x70 : 0xff;
|
||||
e->data.normal.icon_alpha =
|
||||
c->iconic ? OB_ICONIC_ALPHA : 0xff;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -84,8 +84,7 @@ static gboolean desk_menu_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;
|
||||
/* 7/16 opacity if iconic */
|
||||
e->data.normal.icon_alpha = c->iconic ? 0x70 : 0xff;
|
||||
e->data.normal.icon_alpha = c->iconic ? OB_ICONIC_ALPHA : 0xff;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -421,9 +421,8 @@ static void popup_render(ObFocusCyclePopup *p, const ObClient *c)
|
|||
icon = client_icon(target->client, innerw, innerh);
|
||||
p->a_icon->texture[0].data.rgba.width = icon->width;
|
||||
p->a_icon->texture[0].data.rgba.height = icon->height;
|
||||
/* 7/16 alpha for iconic windows */
|
||||
p->a_icon->texture[0].data.rgba.alpha =
|
||||
target->client->iconic ? 0x70 : 0xff;
|
||||
target->client->iconic ? OB_ICONIC_ALPHA : 0xff;
|
||||
p->a_icon->texture[0].data.rgba.data = icon->data;
|
||||
|
||||
/* draw the icon */
|
||||
|
|
|
@ -19,6 +19,12 @@
|
|||
#ifndef __ob__misc_h
|
||||
#define __ob__misc_h
|
||||
|
||||
/*! The alpha value to use for icons of iconified windows in various places
|
||||
like the focus cycle popup and client list menus.
|
||||
Give iconic windows 7/16 alpha. A little under 50%.
|
||||
*/
|
||||
#define OB_ICONIC_ALPHA 0x70
|
||||
|
||||
typedef enum
|
||||
{
|
||||
OB_CURSOR_NONE,
|
||||
|
|
Loading…
Reference in a new issue