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
;
46 xwin
= wwin
->client_win
;
51 scr
->cmap_window
= wwin
;
53 if (scr
->root_colormap_install_count
> 0) {
54 scr
->original_cmap_window
= wwin
;
58 /* install colormap for all windows of the client */
59 if (wwin
&& wwin
->cmap_window_no
> 0 && wwin
->cmap_windows
) {
60 for (i
= wwin
->cmap_window_no
- 1; i
>= 0; i
--) {
63 w
= wwin
->cmap_windows
[i
];
64 if (w
== wwin
->client_win
)
67 XGetWindowAttributes(dpy
, w
, &attributes
);
68 if (attributes
.colormap
== None
)
69 attributes
.colormap
= scr
->colormap
;
71 if (scr
->current_colormap
!= attributes
.colormap
) {
72 scr
->current_colormap
= attributes
.colormap
;
74 * ICCCM 2.0: some client requested permission
75 * to install colormaps by itself and we granted.
76 * So, we can't install any colormaps.
78 if (!scr
->flags
.colormap_stuff_blocked
)
79 XInstallColormap(dpy
, attributes
.colormap
);
85 attributes
.colormap
= None
;
87 XGetWindowAttributes(dpy
, xwin
, &attributes
);
88 if (attributes
.colormap
== None
)
89 attributes
.colormap
= scr
->colormap
;
91 if (scr
->current_colormap
!= attributes
.colormap
) {
92 scr
->current_colormap
= attributes
.colormap
;
93 if (!scr
->flags
.colormap_stuff_blocked
)
94 XInstallColormap(dpy
, attributes
.colormap
);
102 wColormapInstallRoot(WScreen
*scr
)
104 if (scr
->root_colormap_install_count
== 0) {
105 wColormapInstallForWindow(scr
, NULL
);
106 scr
->original_cmap_window
= scr
->cmap_window
;
108 scr
->root_colormap_install_count
++;
113 wColormapUninstallRoot(WScreen
*scr
)
115 if (scr
->root_colormap_install_count
> 0)
116 scr
->root_colormap_install_count
--;
118 if (scr
->root_colormap_install_count
== 0) {
119 wColormapInstallForWindow(scr
, scr
->original_cmap_window
);
120 scr
->original_cmap_window
= NULL
;
126 wColormapAllowClientInstallation(WScreen
*scr
, Bool starting
)
128 scr
->flags
.colormap_stuff_blocked
= starting
;
130 * Client stopped managing the colormap stuff. Restore the colormap
131 * that would be installed if the client did not request colormap
135 XInstallColormap(dpy
, scr
->current_colormap
);