mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-26 08:22:37 +01:00
Made highlighting the AppIcon of the active app configurable at run time
This commit is contained in:
committed by
Carlos R. Mafra
parent
df601267e6
commit
c7e3666e62
@@ -351,12 +351,12 @@ typedef struct WPreferences {
|
||||
#endif
|
||||
char no_dithering; /* use dithering or not */
|
||||
char no_animations; /* enable/disable animations */
|
||||
char no_autowrap; /* wrap workspace when window is moved
|
||||
* to the edge */
|
||||
char no_autowrap; /* wrap workspace when window is moved to the edge */
|
||||
|
||||
char highlight_active_app; /* show the focused app by highlighting its icon */
|
||||
char auto_arrange_icons; /* automagically arrange icons */
|
||||
char icon_box_position; /* position to place icons */
|
||||
signed char iconification_style; /* position to place icons */
|
||||
signed char iconification_style; /* position to place icons */
|
||||
char disable_root_mouse; /* disable button events in root window */
|
||||
char auto_focus; /* focus window when it's mapped */
|
||||
char *icon_back_file; /* background image for icons */
|
||||
|
||||
@@ -136,7 +136,8 @@ void wSetFocusTo(WScreen *scr, WWindow *wwin)
|
||||
|
||||
if (oapp) {
|
||||
wAppMenuUnmap(oapp->menu);
|
||||
wApplicationDeactivate(oapp);
|
||||
if (wPreferences.highlight_active_app)
|
||||
wApplicationDeactivate(oapp);
|
||||
}
|
||||
|
||||
WMPostNotificationName(WMNChangedFocus, NULL, (void *)True);
|
||||
@@ -199,7 +200,8 @@ void wSetFocusTo(WScreen *scr, WWindow *wwin)
|
||||
|
||||
if (oapp && oapp != napp) {
|
||||
wAppMenuUnmap(oapp->menu);
|
||||
wApplicationDeactivate(oapp);
|
||||
if (wPreferences.highlight_active_app)
|
||||
wApplicationDeactivate(oapp);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -213,7 +215,7 @@ void wSetFocusTo(WScreen *scr, WWindow *wwin)
|
||||
if (wwin->flags.mapped)
|
||||
wAppMenuMap(napp->menu, wwin);
|
||||
}
|
||||
if (napp)
|
||||
if (napp && wPreferences.highlight_active_app)
|
||||
wApplicationActivate(napp);
|
||||
|
||||
XFlush(dpy);
|
||||
|
||||
@@ -243,6 +243,8 @@ void removeAppIconFor(WApplication *wapp)
|
||||
if (!wapp->app_icon)
|
||||
return;
|
||||
|
||||
if (wPreferences.highlight_active_app)
|
||||
wIconSetHighlited(wapp->app_icon->icon, False);
|
||||
if (wapp->app_icon->docked && !wapp->app_icon->attracted) {
|
||||
wapp->app_icon->running = 0;
|
||||
/* since we keep it, we don't care if it was attracted or not */
|
||||
|
||||
@@ -194,7 +194,6 @@ void wApplicationDestroy(WApplication * wapp)
|
||||
|
||||
XDeleteContext(dpy, wapp->main_window, wAppWinContext);
|
||||
wAppMenuDestroy(wapp->menu);
|
||||
wApplicationDeactivate(wapp);
|
||||
|
||||
/* Remove application icon */
|
||||
removeAppIconFor(wapp);
|
||||
@@ -212,20 +211,16 @@ void wApplicationDestroy(WApplication * wapp)
|
||||
|
||||
void wApplicationActivate(WApplication *wapp)
|
||||
{
|
||||
#ifdef NEWAPPICON
|
||||
if (wapp->app_icon) {
|
||||
wIconSetHighlited(wapp->app_icon->icon, True);
|
||||
wAppIconPaint(wapp->app_icon);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
void wApplicationDeactivate(WApplication *wapp)
|
||||
{
|
||||
#ifdef NEWAPPICON
|
||||
if (wapp->app_icon) {
|
||||
wIconSetHighlited(wapp->app_icon->icon, False);
|
||||
wAppIconPaint(wapp->app_icon);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
@@ -416,6 +416,8 @@ WDefaultEntry optionList[] = {
|
||||
&wPreferences.no_animations, getBool, NULL, NULL, NULL},
|
||||
{"DontLinkWorkspaces", "NO", NULL,
|
||||
&wPreferences.no_autowrap, getBool, NULL, NULL, NULL},
|
||||
{"HighlightActiveApp", "YES", NULL,
|
||||
&wPreferences.highlight_active_app, getBool, NULL, NULL, NULL},
|
||||
{"AutoArrangeIcons", "NO", NULL,
|
||||
&wPreferences.auto_arrange_icons, getBool, NULL, NULL, NULL},
|
||||
{"NoWindowOverDock", "NO", NULL,
|
||||
|
||||
@@ -554,7 +554,6 @@ static void cycleColor(void *data)
|
||||
icon->handlerID = WMAddTimerHandler(COLOR_CYCLE_DELAY, cycleColor, icon);
|
||||
}
|
||||
|
||||
#ifdef NEWAPPICON
|
||||
void wIconSetHighlited(WIcon *icon, Bool flag)
|
||||
{
|
||||
if (icon->highlighted == flag)
|
||||
@@ -563,7 +562,6 @@ void wIconSetHighlited(WIcon *icon, Bool flag)
|
||||
icon->highlighted = flag;
|
||||
update_icon_pixmap(icon);
|
||||
}
|
||||
#endif
|
||||
|
||||
void wIconSelect(WIcon * icon)
|
||||
{
|
||||
|
||||
@@ -70,7 +70,6 @@ RImage *wIconValidateIconSize(RImage *icon, int max_size);
|
||||
char *wIconStore(WIcon *icon);
|
||||
char *get_name_for_instance_class(char *wm_instance, char *wm_class);
|
||||
|
||||
#ifdef NEWAPPICON
|
||||
void wIconSetHighlited(WIcon *icon, Bool flag);
|
||||
#endif /* NEWAPPICON */
|
||||
|
||||
#endif /* WMICON_H_ */
|
||||
|
||||
@@ -35,9 +35,6 @@
|
||||
/* If you want animations for iconification, shading, icon arrangement etc. */
|
||||
#define ANIMATIONS
|
||||
|
||||
/* If you want the application icon to be highlighted when it has the focus */
|
||||
#define NEWAPPICON
|
||||
|
||||
/* support for XDND drop in the Dock. Experimental */
|
||||
/*#define XDND*/
|
||||
|
||||
|
||||
@@ -1658,7 +1658,8 @@ void wUnmanageWindow(WWindow *wwin, Bool restore, Bool destroyed)
|
||||
WApplication *napp = scr->focused_window ? wApplicationOf(scr->focused_window->main_window) : NULL;
|
||||
if (oapp && oapp != napp) {
|
||||
wAppMenuUnmap(oapp->menu);
|
||||
wApplicationDeactivate(oapp);
|
||||
if (wPreferences.highlight_active_app)
|
||||
wApplicationDeactivate(oapp);
|
||||
}
|
||||
|
||||
wNETCleanupFrameExtents(wwin);
|
||||
|
||||
Reference in New Issue
Block a user