]> git.saurik.com Git - wxWidgets.git/blame - src/x11/toplevel.cpp
Renamed m_clientData member variable to avoid clash with variable with same
[wxWidgets.git] / src / x11 / toplevel.cpp
CommitLineData
1b0fb34b 1///////////////////////////////////////////////////////////////////////////////
ffd84c94 2// Name: src/x11/toplevel.cpp
1b0fb34b 3// Purpose: implements wxTopLevelWindow for X11
83df96d6
JS
4// Author: Julian Smart
5// Modified by:
1b0fb34b 6// Created: 24.09.01
83df96d6 7// RCS-ID: $Id$
1b0fb34b 8// Copyright: (c) 2002 Julian Smart
65571936 9// License: wxWindows licence
1b0fb34b 10///////////////////////////////////////////////////////////////////////////////
83df96d6
JS
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
1b0fb34b
JS
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
83df96d6 22
1b0fb34b
JS
23#ifdef __BORLANDC__
24 #pragma hdrstop
83df96d6
JS
25#endif
26
1832043f
WS
27#include "wx/toplevel.h"
28
1b0fb34b
JS
29#ifndef WX_PRECOMP
30 #include "wx/app.h"
1b0fb34b
JS
31 #include "wx/string.h"
32 #include "wx/log.h"
33 #include "wx/intl.h"
34 #include "wx/frame.h"
e5053ade
JS
35 #include "wx/menu.h"
36 #include "wx/statusbr.h"
9eddec69 37 #include "wx/settings.h"
1b0fb34b 38#endif //WX_PRECOMP
83df96d6 39
1b0fb34b 40#include "wx/x11/private.h"
2034b748 41#include "X11/Xutil.h"
b513212d 42
f618020a
MB
43#include "wx/unix/utilsx11.h"
44
1b0b798d 45bool wxMWMIsRunning(Window w);
b513212d 46
83df96d6 47// ----------------------------------------------------------------------------
1b0fb34b 48// wxTopLevelWindowX11 creation
83df96d6
JS
49// ----------------------------------------------------------------------------
50
1b0fb34b
JS
51void wxTopLevelWindowX11::Init()
52{
53 m_iconized =
ffd84c94 54 m_maximizeOnShow = false;
83df96d6 55
1b0fb34b 56 // unlike (almost?) all other windows, frames are created hidden
ffd84c94 57 m_isShown = false;
83df96d6 58
1b0fb34b
JS
59 // Data to save/restore when calling ShowFullScreen
60 m_fsStyle = 0;
ffd84c94
WS
61 m_fsIsMaximized = false;
62 m_fsIsShowing = false;
63
64 m_needResizeInIdle = false;
65
66 m_x = wxDefaultCoord;
67 m_y = wxDefaultCoord;
c2c0dabf
RR
68 m_width = 20;
69 m_height = 20;
1b0fb34b 70}
83df96d6 71
1b0fb34b
JS
72bool wxTopLevelWindowX11::Create(wxWindow *parent,
73 wxWindowID id,
74 const wxString& title,
75 const wxPoint& pos,
76 const wxSize& size,
77 long style,
78 const wxString& name)
79{
80 // init our fields
81 Init();
83df96d6
JS
82
83 m_windowStyle = style;
b28d3abf 84 m_parent = parent;
83df96d6 85
1b0fb34b 86 SetName(name);
83df96d6 87
ffd84c94 88 m_windowId = id == wxID_ANY ? NewControlId() : id;
83df96d6 89
b28d3abf
JS
90 if (parent)
91 parent->AddChild(this);
92
1b0fb34b 93 wxTopLevelWindows.Append(this);
ffd84c94 94
952ebeba
RR
95 Display *xdisplay = wxGlobalDisplay();
96 int xscreen = DefaultScreen( xdisplay );
97 Visual *xvisual = DefaultVisual( xdisplay, xscreen );
98 Window xparent = RootWindow( xdisplay, xscreen );
2034b748 99 Colormap cm = DefaultColormap( xdisplay, xscreen );
ffd84c94 100
7e085304
RR
101 if (GetExtraStyle() & wxTOPLEVEL_EX_DIALOG)
102 m_backgroundColour = wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE);
103 else
104 m_backgroundColour = wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE);
2034b748 105 m_backgroundColour.CalcPixel( (WXColormap) cm );
ffd84c94
WS
106 m_hasBgCol = true;
107
c2c0dabf
RR
108 m_x = pos.x;
109 if (m_x < -1)
110 m_x = 10;
ffd84c94 111
c2c0dabf
RR
112 m_y = pos.y;
113 if (m_y < 0)
114 m_y = 10;
ffd84c94 115
c2c0dabf
RR
116 m_width = size.x;
117 if (m_width < 0)
118 m_width = 500;
ffd84c94 119
c2c0dabf
RR
120 m_height = size.y;
121 if (m_height < 0)
122 m_height = 380;
ffd84c94 123
461e93f9 124#if !wxUSE_NANOX
952ebeba 125 XSetWindowAttributes xattributes;
ffd84c94 126
952ebeba 127 long xattributes_mask =
952ebeba 128 CWBorderPixel | CWBackPixel;
461e93f9 129
2034b748 130 xattributes.background_pixel = m_backgroundColour.GetPixel();
952ebeba 131 xattributes.border_pixel = BlackPixel( xdisplay, xscreen );
5e29f97a 132
ab6b6b15
RR
133 if (HasFlag( wxNO_BORDER ))
134 {
135 xattributes_mask |= CWOverrideRedirect;
136 xattributes.override_redirect = True;
137 }
ffd84c94 138
e441e1f4 139 if (!HasFlag( wxFULL_REPAINT_ON_RESIZE ))
2f12683e
RR
140 {
141 xattributes_mask |= CWBitGravity;
065722d7 142 xattributes.bit_gravity = NorthWestGravity;
2f12683e 143 }
ffd84c94 144
2f12683e 145 xattributes_mask |= CWEventMask;
ffd84c94 146 xattributes.event_mask =
2f12683e
RR
147 ExposureMask | KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |
148 ButtonMotionMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask |
149 KeymapStateMask | FocusChangeMask | ColormapChangeMask | StructureNotifyMask |
150 PropertyChangeMask;
ffd84c94 151
c2c0dabf 152 Window xwindow = XCreateWindow( xdisplay, xparent, m_x, m_y, m_width, m_height,
2f12683e
RR
153 0, DefaultDepth(xdisplay,xscreen), InputOutput, xvisual, xattributes_mask, &xattributes );
154#else
461e93f9
JS
155 long backColor, foreColor;
156 backColor = GR_RGB(m_backgroundColour.Red(), m_backgroundColour.Green(), m_backgroundColour.Blue());
157 foreColor = GR_RGB(m_foregroundColour.Red(), m_foregroundColour.Green(), m_foregroundColour.Blue());
ffd84c94 158
c2c0dabf 159 Window xwindow = XCreateWindowWithColor( xdisplay, xparent, m_x, m_y, m_width, m_height,
461e93f9 160 0, 0, InputOutput, xvisual, backColor, foreColor);
461e93f9 161#endif
2f12683e 162
ab6b6b15
RR
163 m_mainWindow = (WXWindow) xwindow;
164 m_clientWindow = (WXWindow) xwindow;
165 wxAddWindowToTable( xwindow, (wxWindow*) this );
307be31a 166
256d631a 167#if wxUSE_NANOX
461e93f9 168 XSelectInput( xdisplay, xwindow,
2f12683e 169 GR_EVENT_MASK_CLOSE_REQ |
70b8ab77
JS
170 ExposureMask |
171 KeyPressMask |
172 KeyReleaseMask |
173 ButtonPressMask |
174 ButtonReleaseMask |
175 ButtonMotionMask |
176 EnterWindowMask |
177 LeaveWindowMask |
178 PointerMotionMask |
179 KeymapStateMask |
180 FocusChangeMask |
181 ColormapChangeMask |
182 StructureNotifyMask |
183 PropertyChangeMask
184 );
2f12683e 185#endif
307be31a 186
ba696cfa
RR
187 // Set background to None which will prevent X11 from clearing the
188 // background completely.
189 XSetWindowBackgroundPixmap( xdisplay, xwindow, None );
190
461e93f9 191#if !wxUSE_NANOX
ab6b6b15 192 if (HasFlag( wxSTAY_ON_TOP ))
7e4501ee 193 {
ab6b6b15
RR
194 Window xroot = RootWindow( xdisplay, xscreen );
195 XSetTransientForHint( xdisplay, xwindow, xroot );
196 }
197 else
198 {
199 if (GetExtraStyle() & wxTOPLEVEL_EX_DIALOG)
200 {
201 if (GetParent() && GetParent()->GetMainWindow())
202 {
203 Window xparentwindow = (Window) GetParent()->GetMainWindow();
204 XSetTransientForHint( xdisplay, xwindow, xparentwindow );
205 }
7e4501ee
RR
206 }
207 }
208
c2c0dabf 209 XSizeHints size_hints;
065722d7 210 size_hints.flags = PSize | PPosition | PWinGravity;
c2c0dabf
RR
211 size_hints.x = m_x;
212 size_hints.y = m_y;
213 size_hints.width = m_width;
214 size_hints.height = m_height;
065722d7 215 size_hints.win_gravity = NorthWestGravity;
952ebeba 216 XSetWMNormalHints( xdisplay, xwindow, &size_hints);
ffd84c94 217
461e93f9 218 XWMHints wm_hints;
ab6b6b15
RR
219 wm_hints.flags = InputHint | StateHint;
220 if (GetParent())
ffd84c94 221 {
ab6b6b15
RR
222 wm_hints.flags |= WindowGroupHint;
223 wm_hints.window_group = (Window) GetParent()->GetMainWindow();
224 }
952ebeba
RR
225 wm_hints.input = True;
226 wm_hints.initial_state = NormalState;
227 XSetWMHints( xdisplay, xwindow, &wm_hints);
461e93f9 228
7e4501ee
RR
229 Atom wm_protocols[2];
230 wm_protocols[0] = XInternAtom( xdisplay, "WM_DELETE_WINDOW", False );
231 wm_protocols[1] = XInternAtom( xdisplay, "WM_TAKE_FOCUS", False );
232 XSetWMProtocols( xdisplay, xwindow, wm_protocols, 2);
1016f0de 233
461e93f9 234#endif
ffd84c94 235
7e4501ee 236 wxSetWMDecorations( xwindow, style);
83df96d6 237
b513212d 238 SetTitle(title);
ffd84c94
WS
239
240 return true;
83df96d6
JS
241}
242
1b0fb34b 243wxTopLevelWindowX11::~wxTopLevelWindowX11()
83df96d6 244{
83df96d6 245 wxTopLevelWindows.DeleteObject(this);
83df96d6 246
1b0fb34b 247 // If this is the last top-level window, exit.
09a1dffa 248 if ( wxTheApp && (wxTopLevelWindows.GetCount() == 0) )
83df96d6
JS
249 {
250 wxTheApp->SetTopWindow(NULL);
251
252 if (wxTheApp->GetExitOnFrameDelete())
253 {
254 // Signal to the app that we're going to close
255 wxTheApp->ExitMainLoop();
256 }
257 }
258}
259
77df2fbc
RR
260void wxTopLevelWindowX11::OnInternalIdle()
261{
262 wxWindow::OnInternalIdle();
ffd84c94 263
193e19cf
RR
264 // Do this only after the last idle event so that
265 // all windows have been updated before a new
266 // round of size events is sent
267 if (m_needResizeInIdle && !wxTheApp->Pending())
77df2fbc
RR
268 {
269 wxSizeEvent event( GetClientSize(), GetId() );
270 event.SetEventObject( this );
271 GetEventHandler()->ProcessEvent( event );
ffd84c94
WS
272
273 m_needResizeInIdle = false;
77df2fbc
RR
274 }
275}
276
1b0fb34b
JS
277// ----------------------------------------------------------------------------
278// wxTopLevelWindowX11 showing
279// ----------------------------------------------------------------------------
83df96d6 280
1b0fb34b 281bool wxTopLevelWindowX11::Show(bool show)
83df96d6 282{
e25f954b
JS
283 if (show)
284 {
285 wxSizeEvent event(GetSize(), GetId());
ffd84c94 286
e25f954b
JS
287 event.SetEventObject(this);
288 GetEventHandler()->ProcessEvent(event);
ffd84c94
WS
289
290 m_needResizeInIdle = false;
e25f954b 291 }
7ded318b 292
df0e1b64 293 bool ret = wxWindowX11::Show(show);
ffd84c94 294
df0e1b64 295 return ret;
83df96d6
JS
296}
297
1b0fb34b
JS
298// ----------------------------------------------------------------------------
299// wxTopLevelWindowX11 maximize/minimize
300// ----------------------------------------------------------------------------
83df96d6 301
1b0fb34b 302void wxTopLevelWindowX11::Maximize(bool maximize)
83df96d6 303{
1b0fb34b 304 // TODO
83df96d6
JS
305}
306
1b0fb34b 307bool wxTopLevelWindowX11::IsMaximized() const
83df96d6 308{
1b0fb34b 309 // TODO
ffd84c94 310 return true;
83df96d6
JS
311}
312
1b0fb34b 313void wxTopLevelWindowX11::Iconize(bool iconize)
83df96d6 314{
b513212d
JS
315 if (!m_iconized && GetMainWindow())
316 {
317 if (XIconifyWindow(wxGlobalDisplay(),
318 (Window) GetMainWindow(), DefaultScreen(wxGlobalDisplay())) != 0)
ffd84c94 319 m_iconized = true;
b513212d 320 }
83df96d6
JS
321}
322
1b0fb34b 323bool wxTopLevelWindowX11::IsIconized() const
83df96d6 324{
1b0fb34b 325 return m_iconized;
83df96d6
JS
326}
327
1b0fb34b 328void wxTopLevelWindowX11::Restore()
83df96d6 329{
b513212d
JS
330 // This is the way to deiconify the window, according to the X FAQ
331 if (m_iconized && GetMainWindow())
332 {
333 XMapWindow(wxGlobalDisplay(), (Window) GetMainWindow());
ffd84c94 334 m_iconized = false;
b513212d 335 }
83df96d6
JS
336}
337
1b0fb34b
JS
338// ----------------------------------------------------------------------------
339// wxTopLevelWindowX11 fullscreen
340// ----------------------------------------------------------------------------
83df96d6 341
1b0fb34b 342bool wxTopLevelWindowX11::ShowFullScreen(bool show, long style)
83df96d6 343{
1b0fb34b 344 if (show)
83df96d6 345 {
1b0fb34b 346 if (IsFullScreen())
ffd84c94 347 return false;
83df96d6 348
ffd84c94 349 m_fsIsShowing = true;
1b0fb34b 350 m_fsStyle = style;
83df96d6 351
1b0fb34b 352 // TODO
83df96d6 353
ffd84c94 354 return true;
83df96d6 355 }
1b0fb34b 356 else
83df96d6 357 {
1b0fb34b 358 if (!IsFullScreen())
ffd84c94 359 return false;
83df96d6 360
ffd84c94 361 m_fsIsShowing = false;
83df96d6 362
1b0fb34b 363 // TODO
ffd84c94 364 return true;
83df96d6
JS
365 }
366}
367
1b0fb34b
JS
368// ----------------------------------------------------------------------------
369// wxTopLevelWindowX11 misc
370// ----------------------------------------------------------------------------
83df96d6 371
f618020a 372void wxTopLevelWindowX11::DoSetIcon(const wxIcon& icon)
83df96d6 373{
b513212d
JS
374 if (icon.Ok() && GetMainWindow())
375 {
461e93f9
JS
376#if wxUSE_NANOX
377#else
b513212d 378 XWMHints *wmHints = XAllocWMHints();
6a44bffd 379 wmHints->icon_pixmap = (Pixmap) icon.GetPixmap();
b513212d 380
6a44bffd 381 wmHints->flags = IconPixmapHint;
b513212d
JS
382
383 if (icon.GetMask())
384 {
6a44bffd 385 wmHints->flags |= IconMaskHint;
a11672a4 386 wmHints->icon_mask = (Pixmap) icon.GetMask()->GetBitmap();
b513212d
JS
387 }
388
1b0b798d 389 XSetWMHints(wxGlobalDisplay(), (Window) GetMainWindow(), wmHints);
b513212d 390 XFree(wmHints);
461e93f9 391#endif
b513212d
JS
392 }
393}
394
f618020a
MB
395void wxTopLevelWindowX11::SetIcons(const wxIconBundle& icons )
396{
397 // this sets m_icon
398 wxTopLevelWindowBase::SetIcons( icons );
399
400 DoSetIcon( icons.GetIcon( -1 ) );
85cb693c 401 wxSetIconsX11( wxGlobalDisplay(), GetMainWindow(), icons );
f618020a
MB
402}
403
f7f78039
MB
404bool wxTopLevelWindowX11::SetShape(const wxRegion& region)
405{
406 return wxDoSetShape( wxGlobalDisplay(),
407 (Window)GetMainWindow(),
408 region );
409}
410
b513212d
JS
411void wxTopLevelWindowX11::SetTitle(const wxString& title)
412{
413 m_title = title;
ffd84c94 414
b513212d
JS
415 if (GetMainWindow())
416 {
2b5f62a0
VZ
417#if wxUSE_UNICODE
418 // I wonder of e.g. Metacity takes UTF-8 here
419 XStoreName(wxGlobalDisplay(), (Window) GetMainWindow(),
420 (const char*) title.ToAscii() );
421 XSetIconName(wxGlobalDisplay(), (Window) GetMainWindow(),
422 (const char*) title.ToAscii() );
423#else
b513212d
JS
424 XStoreName(wxGlobalDisplay(), (Window) GetMainWindow(),
425 (const char*) title);
426 XSetIconName(wxGlobalDisplay(), (Window) GetMainWindow(),
427 (const char*) title);
2b5f62a0 428#endif
c2c0dabf
RR
429 }
430}
431
432wxString wxTopLevelWindowX11::GetTitle() const
433{
434 return m_title;
435}
b28d3abf 436
c2c0dabf
RR
437// For implementation purposes - sometimes decorations make the client area
438// smaller
439wxPoint wxTopLevelWindowX11::GetClientAreaOrigin() const
440{
441 // wxFrame::GetClientAreaOrigin
442 // does the required calculation already.
443 return wxPoint(0, 0);
444}
445
446void wxTopLevelWindowX11::DoGetClientSize( int *width, int *height ) const
447{
448 if (width)
449 *width = m_width;
450 if (height)
451 *height = m_height;
452}
453
e97d2576
RR
454void wxTopLevelWindowX11::DoGetSize( int *width, int *height ) const
455{
456 // TODO add non-client size
457
458 if (width)
459 *width = m_width;
460 if (height)
461 *height = m_height;
462}
463
c2c0dabf
RR
464void wxTopLevelWindowX11::DoSetClientSize(int width, int height)
465{
e97d2576
RR
466 int old_width = m_width;
467 int old_height = m_height;
468
c2c0dabf
RR
469 m_width = width;
470 m_height = height;
ffd84c94 471
e97d2576
RR
472 if (m_width == old_width && m_height == old_height)
473 return;
ffd84c94 474
e97d2576 475 // wxLogDebug("DoSetClientSize: %s (%ld) %dx%d", GetClassInfo()->GetClassName(), GetId(), width, height);
ffd84c94 476
c2c0dabf
RR
477#if !wxUSE_NANOX
478 XSizeHints size_hints;
479 size_hints.flags = PSize;
480 size_hints.width = width;
481 size_hints.height = height;
482 XSetWMNormalHints( wxGlobalDisplay(), (Window) GetMainWindow(), &size_hints );
483#endif
ffd84c94 484
c2c0dabf
RR
485 wxWindowX11::DoSetClientSize(width, height);
486}
487
488void wxTopLevelWindowX11::DoSetSize(int x, int y, int width, int height, int sizeFlags)
489{
e97d2576
RR
490 int old_x = m_x;
491 int old_y = m_y;
492 int old_width = m_width;
493 int old_height = m_height;
c2c0dabf 494
ffd84c94 495 if (x != wxDefaultCoord || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
c2c0dabf 496 m_x = x;
ffd84c94
WS
497
498 if (y != wxDefaultCoord || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
c2c0dabf 499 m_y = y;
ffd84c94
WS
500
501 if (width != wxDefaultCoord || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
c2c0dabf 502 m_width = width;
ffd84c94
WS
503
504 if (height != wxDefaultCoord || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
c2c0dabf 505 m_height = height;
ffd84c94 506
e97d2576
RR
507 if (m_x == old_x && m_y == old_y && m_width == old_width && m_height == old_height)
508 return;
ffd84c94 509
e97d2576
RR
510 // wxLogDebug("DoSetSize: %s (%ld) %d, %d %dx%d", GetClassInfo()->GetClassName(), GetId(), x, y, width, height);
511
ffd84c94 512#if !wxUSE_NANOX
c2c0dabf
RR
513 XSizeHints size_hints;
514 size_hints.flags = 0;
515 size_hints.flags |= PPosition;
516 size_hints.flags |= PSize;
517 size_hints.x = m_x;
518 size_hints.y = m_y;
519 size_hints.width = m_width;
520 size_hints.height = m_height;
521 XSetWMNormalHints( wxGlobalDisplay(), (Window) GetMainWindow(), &size_hints);
522#endif
523
524 wxWindowX11::DoSetSize(x, y, width, height, sizeFlags);
ffd84c94 525
b513212d 526#if 0
c2c0dabf
RR
527 Display *display = wxGlobalDisplay();
528 Window root = RootWindowOfScreen(DefaultScreenOfDisplay(display));
529 Window parent_window = window,
530 next_parent = window;
531
532 // search for the parent that is child of ROOT, because the WM may
533 // reparent twice and notify only the next parent (like FVWM)
534 while (next_parent != root) {
535 Window *theChildren;
536#if wxUSE_NANOX
537 GR_COUNT n;
538#else
539 unsigned int n;
b513212d 540#endif
c2c0dabf
RR
541 parent_window = next_parent;
542 XQueryTree(display, parent_window, &root,
543 &next_parent, &theChildren, &n);
544 XFree(theChildren); // not needed
545 }
546
547 XWindowChanges windowChanges;
548 windowChanges.x = x;
549 windowChanges.y = y;
550 windowChanges.width = width;
551 windowChanges.height = height;
552 windowChanges.stack_mode = 0;
553 int valueMask = CWX | CWY | CWWidth | CWHeight;
554
ffd84c94 555 if (x != wxDefaultCoord || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
c2c0dabf
RR
556 {
557 valueMask |= CWX;
558 }
ffd84c94 559 if (y != wxDefaultCoord || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
c2c0dabf
RR
560 {
561 valueMask |= CWY;
b513212d 562 }
ffd84c94 563 if (width != wxDefaultCoord)
c2c0dabf
RR
564 {
565 windowChanges.width = wxMax(1, width);
566 valueMask |= CWWidth;
567 }
ffd84c94 568 if (height != wxDefaultCoord)
c2c0dabf
RR
569 {
570 windowChanges.height = wxMax(1, height);
571 valueMask |= CWHeight;
572 }
573
574 XConfigureWindow( display, parent_window, valueMask, &windowChanges );
575#endif
b513212d
JS
576}
577
c2c0dabf 578void wxTopLevelWindowX11::DoGetPosition(int *x, int *y) const
b513212d 579{
c2c0dabf
RR
580 XSync(wxGlobalDisplay(), False);
581 Window window = (Window) m_mainWindow;
582 if (!window)
583 return ;
584
585 Display *display = wxGlobalDisplay();
586 Window root = RootWindowOfScreen(DefaultScreenOfDisplay(display));
587 Window parent_window = window,
588 next_parent = window;
589
590 // search for the parent that is child of ROOT, because the WM may
591 // reparent twice and notify only the next parent (like FVWM)
592 while (next_parent != root) {
593 Window *theChildren;
594#if wxUSE_NANOX
595 GR_COUNT n;
596#else
597 unsigned int n;
598#endif
599 parent_window = next_parent;
600 XQueryTree(display, parent_window, &root,
601 &next_parent, &theChildren, &n);
602 XFree(theChildren); // not needed
603 }
604#if 0
605 int xx, yy; unsigned int dummy;
606 XGetGeometry(display, parent_window, &root,
607 &xx, &yy, &dummy, &dummy, &dummy, &dummy);
608 if (x) *x = xx;
609 if (y) *y = yy;
610#else
611 XWindowAttributes attr;
612 Status status = XGetWindowAttributes( wxGlobalDisplay(), parent_window, & attr);
613 if (status)
614 {
615 if (x) *x = attr.x;
616 if (y) *y = attr.y;
617 }
618 else
619 {
620 if (x) *x = 0;
621 if (y) *y = 0;
622 }
623#endif
b513212d
JS
624}
625
c2c0dabf 626
b513212d 627#ifndef MWM_DECOR_BORDER
5268c5a3
RR
628
629#define MWM_HINTS_FUNCTIONS (1L << 0)
630#define MWM_HINTS_DECORATIONS (1L << 1)
631#define MWM_HINTS_INPUT_MODE (1L << 2)
632#define MWM_HINTS_STATUS (1L << 3)
b513212d
JS
633
634#define MWM_DECOR_ALL (1L << 0)
635#define MWM_DECOR_BORDER (1L << 1)
636#define MWM_DECOR_RESIZEH (1L << 2)
637#define MWM_DECOR_TITLE (1L << 3)
638#define MWM_DECOR_MENU (1L << 4)
639#define MWM_DECOR_MINIMIZE (1L << 5)
640#define MWM_DECOR_MAXIMIZE (1L << 6)
5268c5a3
RR
641
642#define MWM_FUNC_ALL (1L << 0)
643#define MWM_FUNC_RESIZE (1L << 1)
644#define MWM_FUNC_MOVE (1L << 2)
645#define MWM_FUNC_MINIMIZE (1L << 3)
646#define MWM_FUNC_MAXIMIZE (1L << 4)
647#define MWM_FUNC_CLOSE (1L << 5)
648
649#define MWM_INPUT_MODELESS 0
650#define MWM_INPUT_PRIMARY_APPLICATION_MODAL 1
651#define MWM_INPUT_SYSTEM_MODAL 2
652#define MWM_INPUT_FULL_APPLICATION_MODAL 3
653#define MWM_INPUT_APPLICATION_MODAL MWM_INPUT_PRIMARY_APPLICATION_MODAL
654
ffd84c94 655#define MWM_TEAROFF_WINDOW (1L<<0)
5268c5a3 656
b513212d
JS
657#endif
658
659struct MwmHints {
660 long flags;
661 long functions;
662 long decorations;
663 long input_mode;
664};
665
666#define PROP_MOTIF_WM_HINTS_ELEMENTS 5
667
668// Set the window manager decorations according to the
77ffb593 669// given wxWidgets style
b28d3abf 670bool wxSetWMDecorations(Window w, long style)
b513212d 671{
461e93f9
JS
672#if wxUSE_NANOX
673 GR_WM_PROPERTIES wmProp;
674
675 wmProp.flags = 0;
0b5c0e1a 676 wmProp.props = 0;
461e93f9
JS
677
678 if (style & wxRESIZE_BORDER)
679 {
680 wmProp.props |= GR_WM_PROPS_APPFRAME ;
681 wmProp.flags |= GR_WM_FLAGS_PROPS ;
682 }
683
850c6ed4 684 if (style & wxCLOSE_BOX)
461e93f9
JS
685 {
686 wmProp.props |= GR_WM_PROPS_CLOSEBOX ;
687 wmProp.flags |= GR_WM_FLAGS_PROPS ;
688 }
689
690 if ((style & wxCAPTION) ||
691 (style & wxTINY_CAPTION_HORIZ) ||
692 (style & wxTINY_CAPTION_VERT))
693 {
694 wmProp.props |= GR_WM_PROPS_CAPTION ;
695 wmProp.flags |= GR_WM_FLAGS_PROPS ;
bc55104d
JS
696
697 // The default dialog style doesn't include any kind
698 // of border, which is a bit odd. Anyway, inclusion
699 // of a caption surely implies a border.
1c067fe3 700 style |= wxRESIZE_BORDER;
461e93f9
JS
701 }
702
1c067fe3 703 if (style & wxRESIZE_BORDER)
461e93f9
JS
704 {
705 wmProp.props |= GR_WM_PROPS_APPFRAME ;
706 wmProp.flags |= GR_WM_FLAGS_PROPS ;
707 }
708
709 if (style & wxSIMPLE_BORDER)
710 {
711 wmProp.props |= GR_WM_PROPS_BORDER ;
712 wmProp.flags |= GR_WM_FLAGS_PROPS ;
713 }
714
715 if (style & wxMINIMIZE_BOX)
716 {
717 }
718
719 if (style & wxMAXIMIZE_BOX)
720 {
721 wmProp.props |= GR_WM_PROPS_MAXIMIZE ;
722 wmProp.flags |= GR_WM_FLAGS_PROPS ;
723 }
724
1c067fe3 725 if (((style & wxBORDER) != wxBORDER) && ((style & wxRESIZE_BORDER) != wxRESIZE_BORDER)
461e93f9
JS
726 && ((style & wxRESIZE_BORDER) != wxRESIZE_BORDER))
727 {
728 wmProp.props |= GR_WM_PROPS_NODECORATE ;
729 wmProp.flags |= GR_WM_FLAGS_PROPS ;
730 }
731
732 GrSetWMProperties(w, & wmProp);
ffd84c94 733
461e93f9 734#else
b513212d
JS
735
736 Atom mwm_wm_hints = XInternAtom(wxGlobalDisplay(),"_MOTIF_WM_HINTS", False);
5268c5a3 737 if (mwm_wm_hints == 0)
ffd84c94
WS
738 return false;
739
b513212d 740 MwmHints hints;
5268c5a3 741 hints.flags = MWM_HINTS_DECORATIONS | MWM_HINTS_FUNCTIONS;
b513212d 742 hints.decorations = 0;
5268c5a3 743 hints.functions = 0;
ffd84c94 744
5268c5a3 745 if ((style & wxSIMPLE_BORDER) || (style & wxNO_BORDER))
b513212d 746 {
5268c5a3 747 // leave zeros
b513212d 748 }
5268c5a3 749 else
b513212d 750 {
5268c5a3
RR
751 hints.decorations = MWM_DECOR_BORDER;
752 hints.functions = MWM_FUNC_MOVE;
b513212d 753
5268c5a3
RR
754 if ((style & wxCAPTION) != 0)
755 hints.decorations |= MWM_DECOR_TITLE;
ffd84c94 756
5268c5a3 757 if ((style & wxSYSTEM_MENU) != 0)
5268c5a3 758 hints.decorations |= MWM_DECOR_MENU;
ffd84c94 759
850c6ed4 760 if ((style & wxCLOSE_BOX) != 0)
c3d8ee42 761 hints.functions |= MWM_FUNC_CLOSE;
ffd84c94 762
5268c5a3
RR
763 if ((style & wxMINIMIZE_BOX) != 0)
764 {
765 hints.functions |= MWM_FUNC_MINIMIZE;
766 hints.decorations |= MWM_DECOR_MINIMIZE;
767 }
ffd84c94 768
5268c5a3
RR
769 if ((style & wxMAXIMIZE_BOX) != 0)
770 {
771 hints.functions |= MWM_FUNC_MAXIMIZE;
772 hints.decorations |= MWM_DECOR_MAXIMIZE;
773 }
ffd84c94 774
5268c5a3
RR
775 if ((style & wxRESIZE_BORDER) != 0)
776 {
777 hints.functions |= MWM_FUNC_RESIZE;
778 hints.decorations |= MWM_DECOR_RESIZEH;
779 }
b513212d
JS
780 }
781
782 XChangeProperty(wxGlobalDisplay(),
ffd84c94
WS
783 w,
784 mwm_wm_hints, mwm_wm_hints,
785 32, PropModeReplace,
786 (unsigned char *) &hints, PROP_MOTIF_WM_HINTS_ELEMENTS);
b513212d 787
461e93f9 788#endif
ffd84c94 789 return true;
b513212d 790}