2 * Window Maker window manager
4 * Copyright (c) 1997, 1998 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 vmask
= /*CWBackPixmap|*/CWBackPixel
|CWBorderPixel
|CWCursor
|CWEventMask
65 attribs
.override_redirect
= True
;
66 attribs
.cursor
= wCursor
[WCUR_DEFAULT
];
67 attribs
.background_pixmap
= None
;
68 attribs
.background_pixel
= screen
->black_pixel
;
69 attribs
.border_pixel
= screen
->frame_border_pixel
;
70 attribs
.event_mask
= SubstructureRedirectMask
| ButtonPressMask
71 | ButtonReleaseMask
| ButtonMotionMask
| ExposureMask
| EnterWindowMask
75 attribs
.colormap
= screen
->w_colormap
;
77 core
->window
= XCreateWindow(dpy
, screen
->root_win
, x
, y
, width
, height
,
78 bwidth
, screen
->w_depth
, CopyFromParent
,
79 screen
->w_visual
, vmask
, &attribs
);
81 core
->height
= height
;
82 core
->screen_ptr
= screen
;
84 core
->descriptor
.self
= core
;
86 XClearWindow(dpy
, core
->window
);
88 XSaveContext(dpy
, core
->window
, wWinContext
, (XPointer
)&core
->descriptor
);
95 *----------------------------------------------------------------------
97 * Creates a brand new child window.
98 * The window will have a border width of 0 and color is black.
101 * A initialized core window structure.
104 * A window context for the created window is saved.
107 * The event mask is initialized to a default value.
109 *----------------------------------------------------------------------
112 wCoreCreate(WCoreWindow
*parent
, int x
, int y
, int width
, int height
)
116 XSetWindowAttributes attribs
;
118 core
=wmalloc(sizeof(WCoreWindow
));
119 memset(core
, 0, sizeof(WCoreWindow
));
121 vmask
= CWBackPixmap
|CWBackPixel
|CWBorderPixel
|CWCursor
|CWEventMask
;
122 attribs
.cursor
= wCursor
[WCUR_DEFAULT
];
123 attribs
.background_pixmap
= None
;
124 attribs
.background_pixel
= parent
->screen_ptr
->black_pixel
;
125 attribs
.event_mask
= KeyPressMask
| KeyReleaseMask
| ButtonPressMask
126 | ButtonReleaseMask
| ButtonMotionMask
| ExposureMask
| EnterWindowMask
130 attribs.colormap = parent->screen_ptr->w_colormap;
133 XCreateWindow(dpy
, parent
->window
, x
, y
, width
, height
, 0,
134 parent
->screen_ptr
->w_depth
, CopyFromParent
,
135 parent
->screen_ptr
->w_visual
, vmask
, &attribs
);
138 core
->screen_ptr
= parent
->screen_ptr
;
140 core
->descriptor
.self
= core
;
142 XSaveContext(dpy
, core
->window
, wWinContext
, (XPointer
)&core
->descriptor
);
149 wCoreDestroy(WCoreWindow
*core
)
151 if (core
->stacking
) {
152 free(core
->stacking
);
154 XDeleteContext(dpy
, core
->window
, wWinContext
);
155 XDestroyWindow(dpy
, core
->window
);
161 wCoreConfigure(WCoreWindow
*core
, int req_x
, int req_y
, int req_w
, int req_h
)
173 req_h
= core
->height
;
175 if (req_w
!= core
->width
|| req_h
!= core
->height
) {
176 mask
|= CWWidth
| CWHeight
;
180 core
->height
= req_h
;
182 XConfigureWindow(dpy
, core
->window
, mask
, &xwc
);