wmcore code clean
[wmaker-crm.git] / src / wcore.c
blobce579428d1dcd9cd1b219270392a43fba48274d0
1 /*
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 along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #include "wconfig.h"
23 #include <X11/Xlib.h>
24 #include <X11/Xutil.h>
26 #include <stdlib.h>
27 #include <string.h>
29 #include "WindowMaker.h"
30 #include "wcore.h"
32 /****** Global Variables ******/
33 extern WPreferences wPreferences;
35 /* cursors */
36 extern Cursor wCursor[WCUR_LAST];
37 extern XContext wWinContext;
39 /*----------------------------------------------------------------------
40 * wCoreCreateTopLevel--
41 * Creates a toplevel window used for icons, menus and dialogs.
43 * Returns:
44 * The created window.
45 *--------------------------------------------------------------------- */
46 WCoreWindow *wCoreCreateTopLevel(WScreen *screen, int x, int y, int width, int height, int bwidth, int depth, Visual *visual, Colormap colormap)
48 WCoreWindow *core;
49 int vmask;
50 XSetWindowAttributes attribs;
52 core = wmalloc(sizeof(WCoreWindow));
54 vmask = CWBorderPixel | CWCursor | CWEventMask | CWOverrideRedirect;
55 attribs.override_redirect = True;
56 attribs.cursor = wCursor[WCUR_DEFAULT];
57 attribs.background_pixmap = None;
58 attribs.background_pixel = screen->black_pixel;
59 attribs.border_pixel = screen->frame_border_pixel;
60 attribs.event_mask = SubstructureRedirectMask | ButtonPressMask |
61 ButtonReleaseMask | ButtonMotionMask |
62 ExposureMask | EnterWindowMask | LeaveWindowMask;
64 vmask |= CWColormap;
65 attribs.colormap = colormap;
67 core->window = XCreateWindow(dpy, screen->root_win, x, y, width, height,
68 bwidth, depth, CopyFromParent, visual, vmask, &attribs);
69 core->width = width;
70 core->height = height;
71 core->screen_ptr = screen;
72 core->descriptor.self = core;
74 XClearWindow(dpy, core->window);
75 XSaveContext(dpy, core->window, wWinContext, (XPointer) & core->descriptor);
77 return core;
80 /*----------------------------------------------------------------------
81 * wCoreCreate--
82 * Creates a brand new child window.
83 * The window will have a border width of 0 and color is black.
85 * Returns:
86 * A initialized core window structure.
88 * Side effects:
89 * A window context for the created window is saved.
91 * Notes:
92 * The event mask is initialized to a default value.
93 *--------------------------------------------------------------------- */
94 WCoreWindow *wCoreCreate(WCoreWindow *parent, int x, int y, int width, int height)
96 WCoreWindow *core;
97 int vmask;
98 XSetWindowAttributes attribs;
100 core = wmalloc(sizeof(WCoreWindow));
102 vmask = CWBorderPixel | CWCursor | CWEventMask;
103 attribs.cursor = wCursor[WCUR_DEFAULT];
104 attribs.background_pixmap = None;
105 attribs.background_pixel = parent->screen_ptr->black_pixel;
106 attribs.event_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask |
107 ButtonReleaseMask | ButtonMotionMask |
108 ExposureMask | EnterWindowMask | LeaveWindowMask;
109 vmask |= CWColormap;
110 attribs.colormap = parent->screen_ptr->w_colormap;
111 core->window = XCreateWindow(dpy, parent->window, x, y, width, height, 0,
112 parent->screen_ptr->w_depth, CopyFromParent,
113 parent->screen_ptr->w_visual, vmask, &attribs);
115 core->width = width;
116 core->height = height;
117 core->screen_ptr = parent->screen_ptr;
118 core->descriptor.self = core;
120 XSaveContext(dpy, core->window, wWinContext, (XPointer) & core->descriptor);
121 return core;
124 void wCoreDestroy(WCoreWindow * core)
126 if (core->stacking)
127 wfree(core->stacking);
129 XDeleteContext(dpy, core->window, wWinContext);
130 XDestroyWindow(dpy, core->window);
131 wfree(core);
134 void wCoreConfigure(WCoreWindow * core, int req_x, int req_y, int req_w, int req_h)
136 XWindowChanges xwc;
137 unsigned int mask;
139 mask = CWX | CWY;
140 xwc.x = req_x;
141 xwc.y = req_y;
143 if (req_w <= 0)
144 req_w = core->width;
146 if (req_h <= 0)
147 req_h = core->height;
149 if (req_w != core->width || req_h != core->height) {
150 mask |= CWWidth | CWHeight;
151 xwc.width = req_w;
152 xwc.height = req_h;
153 core->width = req_w;
154 core->height = req_h;
156 XConfigureWindow(dpy, core->window, mask, &xwc);