2 * Window Maker window manager
4 * Copyright (c) 1997-2003 Alfredo K. Kojima
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
25 #include <X11/Xutil.h>
30 #include "WindowMaker.h"
34 /****** Global Variables ******/
35 extern WPreferences wPreferences
;
38 extern Cursor wCursor
[WCUR_LAST
];
40 extern XContext wWinContext
;
44 *----------------------------------------------------------------------
45 * wCoreCreateTopLevel--
46 * Creates a toplevel window used for icons, menus and dialogs.
50 *----------------------------------------------------------------------
53 wCoreCreateTopLevel(WScreen
*screen
, int x
, int y
, int width
, int height
,
58 XSetWindowAttributes attribs
;
60 core
= wmalloc(sizeof(WCoreWindow
));
61 memset(core
, 0, sizeof(WCoreWindow
));
63 /* don't set CWBackPixel so that transparent XRender windows
65 vmask
= /*CWBackPixmap|CWBackPixel|*/CWBorderPixel
|CWCursor
|CWEventMask
67 attribs
.override_redirect
= True
;
68 attribs
.cursor
= wCursor
[WCUR_DEFAULT
];
69 attribs
.background_pixmap
= None
;
70 attribs
.background_pixel
= screen
->black_pixel
;
71 attribs
.border_pixel
= screen
->frame_border_pixel
;
72 attribs
.event_mask
= SubstructureRedirectMask
| ButtonPressMask
73 | ButtonReleaseMask
| ButtonMotionMask
| ExposureMask
| EnterWindowMask
77 attribs
.colormap
= screen
->w_colormap
;
79 core
->window
= XCreateWindow(dpy
, screen
->root_win
, x
, y
, width
, height
,
80 bwidth
, screen
->w_depth
, CopyFromParent
,
81 screen
->w_visual
, vmask
, &attribs
);
83 core
->height
= height
;
84 core
->screen_ptr
= screen
;
86 core
->descriptor
.self
= core
;
88 XClearWindow(dpy
, core
->window
);
90 XSaveContext(dpy
, core
->window
, wWinContext
, (XPointer
)&core
->descriptor
);
97 *----------------------------------------------------------------------
99 * Creates a brand new child window.
100 * The window will have a border width of 0 and color is black.
103 * A initialized core window structure.
106 * A window context for the created window is saved.
109 * The event mask is initialized to a default value.
111 *----------------------------------------------------------------------
114 wCoreCreate(WCoreWindow
*parent
, int x
, int y
, int width
, int height
)
118 XSetWindowAttributes attribs
;
120 core
=wmalloc(sizeof(WCoreWindow
));
121 memset(core
, 0, sizeof(WCoreWindow
));
123 vmask
= /*CWBackPixmap|CWBackPixel|*/CWBorderPixel
|CWCursor
|CWEventMask
;
124 attribs
.cursor
= wCursor
[WCUR_DEFAULT
];
125 attribs
.background_pixmap
= None
;
126 attribs
.background_pixel
= parent
->screen_ptr
->black_pixel
;
127 attribs
.event_mask
= KeyPressMask
| KeyReleaseMask
| ButtonPressMask
128 | ButtonReleaseMask
| ButtonMotionMask
| ExposureMask
| EnterWindowMask
132 attribs.colormap = parent->screen_ptr->w_colormap;
135 XCreateWindow(dpy
, parent
->window
, x
, y
, width
, height
, 0,
136 parent
->screen_ptr
->w_depth
, CopyFromParent
,
137 parent
->screen_ptr
->w_visual
, vmask
, &attribs
);
140 core
->screen_ptr
= parent
->screen_ptr
;
142 core
->descriptor
.self
= core
;
144 XSaveContext(dpy
, core
->window
, wWinContext
, (XPointer
)&core
->descriptor
);
151 wCoreDestroy(WCoreWindow
*core
)
153 if (core
->stacking
) {
154 wfree(core
->stacking
);
156 XDeleteContext(dpy
, core
->window
, wWinContext
);
157 XDestroyWindow(dpy
, core
->window
);
163 wCoreConfigure(WCoreWindow
*core
, int req_x
, int req_y
, int req_w
, int req_h
)
175 req_h
= core
->height
;
177 if (req_w
!= core
->width
|| req_h
!= core
->height
) {
178 mask
|= CWWidth
| CWHeight
;
182 core
->height
= req_h
;
184 XConfigureWindow(dpy
, core
->window
, mask
, &xwc
);