1 /* colormap.c - colormap handling code
3 * Window Maker window manager
5 * Copyright (c) 1998 Alfredo K. Kojima
7 * This code slightly based on fvwm code,
8 * Copyright (c) Rob Nation and others
9 * but completely rewritten.
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
30 #include "WindowMaker.h"
31 #include <X11/Xatom.h>
37 wColormapInstallForWindow(WScreen
*scr
, WWindow
*wwin
)
40 XWindowAttributes attributes
;
45 xwin
= wwin
->client_win
;
50 scr
->cmap_window
= wwin
;
52 if (scr
->root_colormap_install_count
> 0) {
53 scr
->original_cmap_window
= wwin
;
57 /* install colormap for all windows of the client */
58 if (wwin
&& wwin
->cmap_window_no
> 0 && wwin
->cmap_windows
) {
59 for (i
= wwin
->cmap_window_no
- 1; i
>= 0; i
--) {
62 w
= wwin
->cmap_windows
[i
];
63 if (w
== wwin
->client_win
)
66 XGetWindowAttributes(dpy
, w
, &attributes
);
67 if (attributes
.colormap
== None
)
68 attributes
.colormap
= scr
->colormap
;
70 if (scr
->current_colormap
!= attributes
.colormap
) {
71 scr
->current_colormap
= attributes
.colormap
;
73 * ICCCM 2.0: some client requested permission
74 * to install colormaps by itself and we granted.
75 * So, we can't install any colormaps.
77 if (!scr
->flags
.colormap_stuff_blocked
)
78 XInstallColormap(dpy
, attributes
.colormap
);
84 XGetWindowAttributes(dpy
, xwin
, &attributes
);
85 if (attributes
.colormap
== None
)
86 attributes
.colormap
= scr
->colormap
;
88 if (scr
->current_colormap
!= attributes
.colormap
) {
89 scr
->current_colormap
= attributes
.colormap
;
90 if (!scr
->flags
.colormap_stuff_blocked
)
91 XInstallColormap(dpy
, attributes
.colormap
);
99 wColormapInstallRoot(WScreen
*scr
)
101 if (scr
->root_colormap_install_count
== 0) {
102 wColormapInstallForWindow(scr
, NULL
);
103 scr
->original_cmap_window
= scr
->cmap_window
;
105 scr
->root_colormap_install_count
++;
110 wColormapUninstallRoot(WScreen
*scr
)
112 if (scr
->root_colormap_install_count
> 0)
113 scr
->root_colormap_install_count
--;
115 if (scr
->root_colormap_install_count
== 0) {
116 wColormapInstallForWindow(scr
, scr
->original_cmap_window
);
117 scr
->original_cmap_window
= NULL
;
123 wColormapAllowClientInstallation(WScreen
*scr
, Bool starting
)
125 scr
->flags
.colormap_stuff_blocked
= starting
;
127 * Client stopped managing the colormap stuff. Restore the colormap
128 * that would be installed if the client did not request colormap
132 XInstallColormap(dpy
, scr
->current_colormap
);