summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberts Muktupāvels <alberts.muktupavels@gmail.com>2022-03-18 10:54:33 +0200
committerAlberts Muktupāvels <alberts.muktupavels@gmail.com>2022-03-29 03:34:30 +0000
commitc01ee32e054db451afbaefb4f18806014ca46cb8 (patch)
tree7553a72d26040a9bf0d6cbded5c47295d5d62f64
parent07694559cc0c65ce1cca9ac33b165cef84c34d5e (diff)
downloadlibwnck-c01ee32e054db451afbaefb4f18806014ca46cb8.tar.gz
icon-cache: remove support for KWM_WIN_ICON
According to Debian Code Search only MPlayer sets this property (together with _NET_WM_ICON).
-rw-r--r--libwnck/application.c2
-rw-r--r--libwnck/window.c4
-rw-r--r--libwnck/wnck-icon-cache.c87
3 files changed, 3 insertions, 90 deletions
diff --git a/libwnck/application.c b/libwnck/application.c
index f67d8c4..f2cc205 100644
--- a/libwnck/application.c
+++ b/libwnck/application.c
@@ -650,8 +650,6 @@ _wnck_application_process_property_notify (WnckApplication *app,
else if (xevent->xproperty.atom ==
_wnck_atom_get ("_NET_WM_ICON") ||
xevent->xproperty.atom ==
- _wnck_atom_get ("KWM_WIN_ICON") ||
- xevent->xproperty.atom ==
_wnck_atom_get ("WM_NORMAL_HINTS"))
{
_wnck_icon_cache_property_changed (app->priv->icon_cache,
diff --git a/libwnck/window.c b/libwnck/window.c
index ec8768b..6601374 100644
--- a/libwnck/window.c
+++ b/libwnck/window.c
@@ -2607,9 +2607,7 @@ _wnck_window_process_property_notify (WnckWindow *window,
queue_update (window);
}
else if (xevent->xproperty.atom ==
- _wnck_atom_get ("_NET_WM_ICON") ||
- xevent->xproperty.atom ==
- _wnck_atom_get ("KWM_WIN_ICON"))
+ _wnck_atom_get ("_NET_WM_ICON"))
{
_wnck_icon_cache_property_changed (window->priv->icon_cache,
xevent->xproperty.atom);
diff --git a/libwnck/wnck-icon-cache.c b/libwnck/wnck-icon-cache.c
index 1749585..9ff8d15 100644
--- a/libwnck/wnck-icon-cache.c
+++ b/libwnck/wnck-icon-cache.c
@@ -35,7 +35,6 @@ typedef enum
*/
USING_NO_ICON,
USING_FALLBACK_ICON,
- USING_KWM_WIN_ICON,
USING_WM_HINTS,
USING_NET_WM_ICON
} IconOrigin;
@@ -52,7 +51,6 @@ struct _WnckIconCache
guint want_fallback : 1;
/* TRUE if these props have changed */
guint wm_hints_dirty : 1;
- guint kwm_win_icon_dirty : 1;
guint net_wm_icon_dirty : 1;
};
@@ -353,54 +351,6 @@ try_pixmap_and_mask (Screen *screen,
}
static void
-get_kwm_win_icon (Screen *screen,
- Window xwindow,
- Pixmap *pixmap,
- Pixmap *mask)
-{
- Display *display;
- Atom type;
- int format;
- gulong nitems;
- gulong bytes_after;
- Pixmap *icons;
- int err, result;
-
- display = DisplayOfScreen (screen);
-
- *pixmap = None;
- *mask = None;
-
- _wnck_error_trap_push (display);
- icons = NULL;
- result = XGetWindowProperty (display, xwindow,
- _wnck_atom_get ("KWM_WIN_ICON"),
- 0, G_MAXLONG,
- False,
- _wnck_atom_get ("KWM_WIN_ICON"),
- &type, &format, &nitems,
- &bytes_after, (void*)&icons);
-
- err = _wnck_error_trap_pop (display);
- if (err != Success ||
- result != Success)
- return;
-
- if (type != _wnck_atom_get ("KWM_WIN_ICON"))
- {
- XFree (icons);
- return;
- }
-
- *pixmap = icons[0];
- *mask = icons[1];
-
- XFree (icons);
-
- return;
-}
-
-static void
clear_icon_cache (WnckIconCache *icon_cache,
gboolean dirty_all)
{
@@ -417,7 +367,6 @@ clear_icon_cache (WnckIconCache *icon_cache,
if (dirty_all)
{
icon_cache->wm_hints_dirty = TRUE;
- icon_cache->kwm_win_icon_dirty = TRUE;
icon_cache->net_wm_icon_dirty = TRUE;
}
}
@@ -521,7 +470,6 @@ _wnck_icon_cache_new (void)
icon_cache->ideal_mini_size = -1;
icon_cache->want_fallback = TRUE;
icon_cache->wm_hints_dirty = TRUE;
- icon_cache->kwm_win_icon_dirty = TRUE;
icon_cache->net_wm_icon_dirty = TRUE;
return icon_cache;
@@ -541,8 +489,6 @@ _wnck_icon_cache_property_changed (WnckIconCache *icon_cache,
{
if (atom == _wnck_atom_get ("_NET_WM_ICON"))
icon_cache->net_wm_icon_dirty = TRUE;
- else if (atom == _wnck_atom_get ("KWM_WIN_ICON"))
- icon_cache->kwm_win_icon_dirty = TRUE;
else if (atom == _wnck_atom_get ("WM_HINTS"))
icon_cache->wm_hints_dirty = TRUE;
}
@@ -550,11 +496,8 @@ _wnck_icon_cache_property_changed (WnckIconCache *icon_cache,
gboolean
_wnck_icon_cache_get_icon_invalidated (WnckIconCache *icon_cache)
{
- if (icon_cache->origin <= USING_KWM_WIN_ICON &&
- icon_cache->kwm_win_icon_dirty)
- return TRUE;
- else if (icon_cache->origin <= USING_WM_HINTS &&
- icon_cache->wm_hints_dirty)
+ if (icon_cache->origin <= USING_WM_HINTS &&
+ icon_cache->wm_hints_dirty)
return TRUE;
else if (icon_cache->origin <= USING_NET_WM_ICON &&
icon_cache->net_wm_icon_dirty)
@@ -702,32 +645,6 @@ _wnck_read_icons (WnckScreen *screen,
}
}
- if (icon_cache->origin <= USING_KWM_WIN_ICON &&
- icon_cache->kwm_win_icon_dirty)
- {
- icon_cache->kwm_win_icon_dirty = FALSE;
-
- get_kwm_win_icon (xscreen, xwindow, &pixmap, &mask);
-
- if ((pixmap != icon_cache->prev_pixmap ||
- mask != icon_cache->prev_mask) &&
- pixmap != None)
- {
- if (try_pixmap_and_mask (xscreen, pixmap, mask,
- iconp, ideal_size,
- mini_iconp, ideal_mini_size))
- {
- icon_cache->prev_pixmap = pixmap;
- icon_cache->prev_mask = mask;
-
- replace_cache (icon_cache, USING_KWM_WIN_ICON,
- *iconp, *mini_iconp);
-
- return TRUE;
- }
- }
- }
-
if (icon_cache->want_fallback &&
icon_cache->origin < USING_FALLBACK_ICON)
{