]> git.saurik.com Git - wxWidgets.git/blame - src/motif/frame.cpp
corrected typo in check for icc
[wxWidgets.git] / src / motif / frame.cpp
CommitLineData
4bb6408c 1/////////////////////////////////////////////////////////////////////////////
1c4f8f8d 2// Name: motif/frame.cpp
4bb6408c
JS
3// Purpose: wxFrame
4// Author: Julian Smart
5// Modified by:
6// Created: 17/09/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
4bb6408c
JS
10/////////////////////////////////////////////////////////////////////////////
11
1c4f8f8d
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
1248b41f
MB
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
4dff3400
JJ
22
23#ifdef __VMS
24#define XtDisplay XTDISPLAY
25#define XtWindow XTWINDOW
26#define XtScreen XTSCREEN
27#endif
28
798a4529 29#include "wx/frame.h"
4bb6408c
JS
30#include "wx/statusbr.h"
31#include "wx/toolbar.h"
4bb6408c 32#include "wx/menu.h"
4bb6408c 33#include "wx/settings.h"
4bb6408c 34#include "wx/utils.h"
176513eb 35#include "wx/log.h"
798a4529 36#include "wx/app.h"
ed39ff57 37#include "wx/icon.h"
4bb6408c 38
338dd992 39#ifdef __VMS__
1c4f8f8d 40 #pragma message disable nosimpint
338dd992 41#endif
1c4f8f8d 42
4bb6408c 43#if defined(__ultrix) || defined(__sgi)
1c4f8f8d 44 #include <Xm/Frame.h>
4bb6408c
JS
45#endif
46
47#include <Xm/Xm.h>
48#include <X11/Shell.h>
f618020a 49#include <X11/Core.h>
4bb6408c 50#if XmVersion >= 1002
1c4f8f8d 51 #include <Xm/XmAll.h>
4bb6408c 52#else
1c4f8f8d 53 #include <Xm/Frame.h>
4bb6408c
JS
54#endif
55#include <Xm/MwmUtil.h>
56#include <Xm/BulletinB.h>
57#include <Xm/Form.h>
58#include <Xm/MainW.h>
59#include <Xm/RowColumn.h>
60#include <Xm/Label.h>
61#include <Xm/AtomMgr.h>
62#include <Xm/LabelG.h>
63#include <Xm/Frame.h>
64#if XmVersion > 1000
1c4f8f8d 65 #include <Xm/Protocols.h>
4bb6408c 66#endif
1c4f8f8d 67
338dd992 68#ifdef __VMS__
1c4f8f8d 69 #pragma message enable nosimpint
338dd992 70#endif
4bb6408c
JS
71
72#include "wx/motif/private.h"
f618020a 73#include "wx/unix/utilsx11.h"
4bb6408c 74
1c4f8f8d
VZ
75// ----------------------------------------------------------------------------
76// private functions
77// ----------------------------------------------------------------------------
78
dfe1eee3 79static void wxFrameMapProc(Widget frameShell, XtPointer clientData,
798a4529 80 XCrossingEvent* event);
4bb6408c 81
1c4f8f8d
VZ
82// ----------------------------------------------------------------------------
83// globals
84// ----------------------------------------------------------------------------
85
4bb6408c
JS
86extern wxList wxModelessWindows;
87extern wxList wxPendingDelete;
88
1c4f8f8d
VZ
89// ----------------------------------------------------------------------------
90// wxWin macros
91// ----------------------------------------------------------------------------
92
1c4f8f8d
VZ
93BEGIN_EVENT_TABLE(wxFrame, wxFrameBase)
94 EVT_ACTIVATE(wxFrame::OnActivate)
95 EVT_SYS_COLOUR_CHANGED(wxFrame::OnSysColourChanged)
4bb6408c
JS
96END_EVENT_TABLE()
97
88793548 98IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxTopLevelWindow)
4bb6408c 99
1c4f8f8d
VZ
100// ============================================================================
101// implementation
102// ============================================================================
1ccbb61a 103
1c4f8f8d
VZ
104// ----------------------------------------------------------------------------
105// frame construction
106// ----------------------------------------------------------------------------
dfe1eee3 107
1c4f8f8d
VZ
108void wxFrame::Init()
109{
96be256b 110 m_iconized = false;
dfe1eee3 111
4bb6408c
JS
112 //// Motif-specific
113 m_frameShell = (WXWidget) NULL;
d0ee33f5
WS
114 m_mainWidget = (WXWidget) NULL;
115 m_workArea = (WXWidget) NULL;
116 m_clientArea = (WXWidget) NULL;
4bb6408c
JS
117}
118
119bool wxFrame::Create(wxWindow *parent,
2d120f83
JS
120 wxWindowID id,
121 const wxString& title,
122 const wxPoint& pos,
123 const wxSize& size,
124 long style,
125 const wxString& name)
4bb6408c 126{
798a4529
MB
127 if( !wxTopLevelWindow::Create( parent, id, title, pos, size, style,
128 name ) )
96be256b 129 return false;
dfe1eee3 130
d0ee33f5 131 m_backgroundColour =
798a4529 132 wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE);
2d120f83 133 m_foregroundColour = *wxBLACK;
a756f210 134 m_font = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
dfe1eee3 135
447a039f
MB
136 int x = pos.x, y = pos.y;
137 int width = size.x, height = size.y;
da8bed9b
VZ
138
139 // Set reasonable values for position and size if defaults have been
140 // requested
447a039f 141 //
da8bed9b
VZ
142 // MB TODO: something better than these arbitrary values ?
143 // VZ should use X resources for this...
144 if ( width == -1 )
145 width = 400;
146 if ( height == -1 )
147 height = 400;
447a039f
MB
148
149 int displayW, displayH;
150 wxDisplaySize( &displayW, &displayH );
151
152 if ( x == -1 )
153 {
154 x = (displayW - width) / 2;
155 if (x < 10) x = 10;
156 }
157 if ( y == -1 )
158 {
159 y = (displayH - height) / 2;
da8bed9b 160 if (y < 10) y = 10;
447a039f 161 }
da8bed9b 162
798a4529
MB
163 SetTitle( title );
164
165 wxLogTrace(wxTRACE_Messages,
1bc822df
MB
166 "Created frame (0x%p) with work area 0x%p and client "
167 "area 0x%p", m_mainWidget, m_workArea, m_clientArea);
798a4529 168
96be256b 169 XtAddEventHandler((Widget) m_clientArea, ExposureMask,False,
798a4529
MB
170 wxUniversalRepaintProc, (XtPointer) this);
171
172 if (x > -1)
173 XtVaSetValues((Widget) m_frameShell, XmNx, x, NULL);
174 if (y > -1)
175 XtVaSetValues((Widget) m_frameShell, XmNy, y, NULL);
176 if (width > -1)
177 XtVaSetValues((Widget) m_frameShell, XmNwidth, width, NULL);
178 if (height > -1)
179 XtVaSetValues((Widget) m_frameShell, XmNheight, height, NULL);
180
96be256b 181 ChangeFont(false);
798a4529
MB
182
183 ChangeBackgroundColour();
184
185 PreResize();
186
187 wxSizeEvent sizeEvent(wxSize(width, height), GetId());
188 sizeEvent.SetEventObject(this);
189
190 GetEventHandler()->ProcessEvent(sizeEvent);
191
96be256b 192 return true;
798a4529
MB
193}
194
e6b915ed 195bool wxFrame::DoCreate(wxWindow* parent,
f58585c0
VZ
196 wxWindowID id,
197 const wxString& title,
198 const wxPoint& pos,
199 const wxSize& size,
200 long style,
201 const wxString& name)
798a4529 202{
eb6fa4b4 203 Widget frameShell;
798a4529 204
eb6fa4b4
MB
205 frameShell = XtCreatePopupShell( name, topLevelShellWidgetClass,
206 (Widget)wxTheApp->GetTopLevelWidget(),
207 NULL, 0 );
dfe1eee3 208
eb6fa4b4 209 XtVaSetValues(frameShell,
2d120f83
JS
210 // Allows menu to resize
211 XmNallowShellResize, True,
212 XmNdeleteResponse, XmDO_NOTHING,
213 XmNmappedWhenManaged, False,
96be256b 214 XmNiconic, (style & wxICONIZE) ? True : False,
2d120f83 215 NULL);
dfe1eee3 216
eb6fa4b4 217 m_frameShell = (WXWidget)frameShell;
dfe1eee3 218
798a4529 219 m_mainWidget = (WXWidget) XtVaCreateManagedWidget("main_window",
eb6fa4b4 220 xmMainWindowWidgetClass, frameShell,
2d120f83
JS
221 XmNresizePolicy, XmRESIZE_NONE,
222 NULL);
dfe1eee3 223
2d120f83 224 m_workArea = (WXWidget) XtVaCreateWidget("form",
798a4529 225 xmFormWidgetClass, (Widget) m_mainWidget,
2d120f83
JS
226 XmNresizePolicy, XmRESIZE_NONE,
227 NULL);
dfe1eee3 228
2d120f83
JS
229 m_clientArea = (WXWidget) XtVaCreateWidget("client",
230 xmBulletinBoardWidgetClass, (Widget) m_workArea,
231 XmNmarginWidth, 0,
232 XmNmarginHeight, 0,
233 XmNrightAttachment, XmATTACH_FORM,
234 XmNleftAttachment, XmATTACH_FORM,
235 XmNtopAttachment, XmATTACH_FORM,
236 XmNbottomAttachment, XmATTACH_FORM,
2d120f83 237 NULL);
0492c5a0 238
798a4529 239 XtVaSetValues((Widget) m_mainWidget,
2d120f83
JS
240 XmNworkWindow, (Widget) m_workArea,
241 NULL);
dfe1eee3 242
2d120f83
JS
243 XtManageChild((Widget) m_clientArea);
244 XtManageChild((Widget) m_workArea);
dfe1eee3 245
798a4529
MB
246 XtTranslations ptr = XtParseTranslationTable( "<Configure>: resize()" );
247 XtOverrideTranslations( (Widget) m_workArea, ptr );
248 XtFree( (char *)ptr );
dfe1eee3 249
2d120f83 250 /* Part of show-&-hide fix */
eb6fa4b4 251 XtAddEventHandler( frameShell, StructureNotifyMask,
798a4529
MB
252 False, (XtEventHandler)wxFrameMapProc,
253 (XtPointer)this );
dfe1eee3 254
eb6fa4b4 255 XtRealizeWidget(frameShell);
dfe1eee3 256
798a4529
MB
257 wxAddWindowToTable( (Widget)m_workArea, this);
258 wxAddWindowToTable( (Widget)m_clientArea, this);
dfe1eee3 259
798a4529 260 wxModelessWindows.Append( this );
dfe1eee3 261
96be256b 262 return true;
4bb6408c
JS
263}
264
219ee9ba
VZ
265void wxFrame::DoDestroy()
266{
267}
268
4bb6408c
JS
269wxFrame::~wxFrame()
270{
96be256b 271 m_isBeingDeleted = true;
da8bed9b 272
2e35f56f 273 if (m_clientArea)
dc1efb1d 274 {
96be256b 275 XtRemoveEventHandler((Widget) m_clientArea, ExposureMask, False,
2e35f56f 276 wxUniversalRepaintProc, (XtPointer) this);
dc1efb1d 277 }
2e35f56f 278
2d120f83 279 if (GetMainWidget())
96be256b 280 Show(false);
0492c5a0 281
2d120f83
JS
282 if (m_frameMenuBar)
283 {
284 m_frameMenuBar->DestroyMenuBar();
2d120f83
JS
285 delete m_frameMenuBar;
286 m_frameMenuBar = NULL;
287 }
dfe1eee3 288
2d120f83 289 if (m_frameStatusBar)
1c4f8f8d 290 {
2d120f83 291 delete m_frameStatusBar;
1c4f8f8d
VZ
292 m_frameStatusBar = NULL;
293 }
2187eef5
MB
294
295 PreDestroy();
dfe1eee3 296
798a4529 297 Widget frameShell = (Widget)GetShellWidget();
2b5f62a0 298
2187eef5
MB
299 if( frameShell )
300 XtRemoveEventHandler( frameShell, StructureNotifyMask,
301 False, (XtEventHandler)wxFrameMapProc,
302 (XtPointer)this );
dfe1eee3 303
798a4529 304 if( m_clientArea )
4bb6408c 305 {
798a4529
MB
306 wxDeleteWindowFromTable( (Widget)m_clientArea );
307 XtDestroyWidget( (Widget)m_clientArea );
4bb6408c 308 }
dfe1eee3 309
798a4529 310 if( m_workArea )
2d120f83 311 {
798a4529
MB
312 XtVaSetValues( (Widget)m_mainWidget,
313 XmNworkWindow, (Widget)NULL,
314 NULL );
dfe1eee3 315
798a4529
MB
316 wxDeleteWindowFromTable( (Widget)m_workArea );
317 XtDestroyWidget( (Widget)m_workArea );
318 }
dfe1eee3 319
798a4529
MB
320 if( m_mainWidget )
321 XtDestroyWidget( (Widget)m_mainWidget );
dfe1eee3 322
798a4529
MB
323 if( frameShell )
324 XtDestroyWidget( frameShell );
4bb6408c
JS
325}
326
327// Get size *available for subwindows* i.e. excluding menu bar, toolbar etc.
449f38b5 328void wxFrame::DoGetClientSize(int *x, int *y) const
4bb6408c 329{
2d120f83
JS
330 Dimension xx, yy;
331 XtVaGetValues((Widget) m_workArea, XmNwidth, &xx, XmNheight, &yy, NULL);
dfe1eee3 332
2d120f83
JS
333 if (m_frameStatusBar)
334 {
335 int sbw, sbh;
336 m_frameStatusBar->GetSize(& sbw, & sbh);
337 yy -= sbh;
338 }
1ccbb61a 339#if wxUSE_TOOLBAR
2d120f83
JS
340 if (m_frameToolBar)
341 {
342 int tbw, tbh;
343 m_frameToolBar->GetSize(& tbw, & tbh);
344 if (m_frameToolBar->GetWindowStyleFlag() & wxTB_VERTICAL)
345 xx -= tbw;
346 else
347 yy -= tbh;
348 }
1ccbb61a 349#endif // wxUSE_TOOLBAR
34e8f097
CE
350
351//CE found a call here with NULL y pointer
352 if (x)
d0ee33f5 353 *x = xx;
34e8f097
CE
354 if (y)
355 *y = yy;
4bb6408c
JS
356}
357
358// Set the client size (i.e. leave the calculation of borders etc.
77ffb593 359// to wxWidgets)
bfc6fde4 360void wxFrame::DoSetClientSize(int width, int height)
4bb6408c 361{
2d120f83
JS
362 // Calculate how large the new main window should be
363 // by finding the difference between the client area and the
364 // main window area, and adding on to the new client area
365 if (width > -1)
366 XtVaSetValues((Widget) m_workArea, XmNwidth, width, NULL);
dfe1eee3 367
2d120f83 368 if (height > -1)
a4294b78 369 {
2d120f83
JS
370 if (m_frameStatusBar)
371 {
372 int sbw, sbh;
373 m_frameStatusBar->GetSize(& sbw, & sbh);
374 height += sbh;
375 }
1ccbb61a 376#if wxUSE_TOOLBAR
2d120f83
JS
377 if (m_frameToolBar)
378 {
379 int tbw, tbh;
380 m_frameToolBar->GetSize(& tbw, & tbh);
381 if (m_frameToolBar->GetWindowStyleFlag() & wxTB_VERTICAL)
382 width += tbw;
383 else
384 height += tbh;
385 }
1ccbb61a 386#endif // wxUSE_TOOLBAR
dfe1eee3 387
2d120f83 388 XtVaSetValues((Widget) m_workArea, XmNheight, height, NULL);
a4294b78 389 }
2d120f83 390 PreResize();
dfe1eee3 391
2d120f83
JS
392 wxSizeEvent sizeEvent(wxSize(width, height), GetId());
393 sizeEvent.SetEventObject(this);
dfe1eee3 394
2d120f83 395 GetEventHandler()->ProcessEvent(sizeEvent);
dfe1eee3 396
4bb6408c
JS
397}
398
449f38b5 399void wxFrame::DoGetSize(int *width, int *height) const
4bb6408c 400{
2d120f83
JS
401 Dimension xx, yy;
402 XtVaGetValues((Widget) m_frameShell, XmNwidth, &xx, XmNheight, &yy, NULL);
403 *width = xx; *height = yy;
4bb6408c
JS
404}
405
af111fc3 406void wxFrame::DoSetSize(int x, int y, int width, int height, int WXUNUSED(sizeFlags))
4bb6408c 407{
2d120f83
JS
408 if (x > -1)
409 XtVaSetValues((Widget) m_frameShell, XmNx, x, NULL);
410 if (y > -1)
411 XtVaSetValues((Widget) m_frameShell, XmNy, y, NULL);
412 if (width > -1)
798a4529 413 XtVaSetValues((Widget) m_mainWidget, XmNwidth, width, NULL);
2d120f83 414 if (height > -1)
798a4529 415 XtVaSetValues((Widget) m_mainWidget, XmNheight, height, NULL);
dfe1eee3 416
2d120f83
JS
417 if (!(height == -1 && width == -1))
418 {
419 PreResize();
2d120f83 420 }
4bb6408c
JS
421}
422
798a4529 423bool wxFrame::Show( bool show )
4bb6408c 424{
5a2e3d8c
MB
425 if( !wxWindowBase::Show( show ) )
426 return false;
dfe1eee3 427
2d120f83 428 m_isShown = show;
1c4f8f8d 429
798a4529
MB
430 Widget shell = (Widget)GetShellWidget();
431 if (!shell)
432 return wxWindow::Show(show);
dfe1eee3 433
798a4529
MB
434 SetVisibleStatus(show);
435 if (show)
436 {
5a2e3d8c 437 XtPopup(shell, XtGrabNone);
798a4529
MB
438 }
439 else
440 {
5a2e3d8c 441 XtPopdown(shell);
798a4529 442 }
4bb6408c 443
5a2e3d8c 444 return true;
6f63ec3f
JS
445}
446
4bb6408c
JS
447void wxFrame::SetTitle(const wxString& title)
448{
798a4529
MB
449 wxString oldTitle = GetTitle();
450 if( title == oldTitle )
2d120f83 451 return;
dfe1eee3 452
798a4529 453 wxTopLevelWindow::SetTitle( title );
dfe1eee3 454
798a4529
MB
455 if( !title.empty() )
456 XtVaSetValues( (Widget)m_frameShell,
457 XmNtitle, title.c_str(),
458 XmNiconName, title.c_str(),
459 NULL );
4bb6408c
JS
460}
461
f618020a 462void wxFrame::DoSetIcon(const wxIcon& icon)
4bb6408c 463{
2d120f83
JS
464 if (!m_frameShell)
465 return;
dfe1eee3 466
aae0472b 467 if (!icon.Ok() || !icon.GetDrawable())
2d120f83 468 return;
dfe1eee3 469
aae0472b
MB
470 XtVaSetValues((Widget) m_frameShell,
471 XtNiconPixmap, icon.GetDrawable(),
472 NULL);
4bb6408c
JS
473}
474
f618020a
MB
475void wxFrame::SetIcon(const wxIcon& icon)
476{
477 SetIcons( wxIconBundle( icon ) );
478}
479
480void wxFrame::SetIcons(const wxIconBundle& icons)
481{
482 wxFrameBase::SetIcons( icons );
483
484 if (!m_frameShell)
485 return;
486
487 DoSetIcon( m_icons.GetIcon( -1 ) );
488 wxSetIconsX11(GetXDisplay(),
489 (WXWindow) XtWindow( (Widget) m_frameShell ), icons);
490}
491
4bb6408c
JS
492void wxFrame::PositionStatusBar()
493{
50414e24 494 if (!m_frameStatusBar)
2d120f83 495 return;
dfe1eee3 496
4bb6408c
JS
497 int w, h;
498 GetClientSize(&w, &h);
499 int sw, sh;
500 m_frameStatusBar->GetSize(&sw, &sh);
dfe1eee3 501
4bb6408c
JS
502 // Since we wish the status bar to be directly under the client area,
503 // we use the adjusted sizes without using wxSIZE_NO_ADJUSTMENTS.
89c7e962 504 m_frameStatusBar->SetSize(0, h, w, sh);
4bb6408c
JS
505}
506
507WXWidget wxFrame::GetMenuBarWidget() const
508{
2d120f83
JS
509 if (GetMenuBar())
510 return GetMenuBar()->GetMainWidget();
511 else
512 return (WXWidget) NULL;
4bb6408c
JS
513}
514
515void wxFrame::SetMenuBar(wxMenuBar *menuBar)
516{
517 if (!menuBar)
518 {
519 m_frameMenuBar = NULL;
520 return;
521 }
dfe1eee3 522
4bb6408c 523 // Currently can't set it twice
2d120f83 524 // wxASSERT_MSG( (m_frameMenuBar == (wxMenuBar*) NULL), "Cannot set the menubar more than once");
dfe1eee3 525
621793f4 526 if (m_frameMenuBar)
4bb6408c 527 {
621793f4
JS
528 m_frameMenuBar->DestroyMenuBar();
529 delete m_frameMenuBar;
4bb6408c 530 }
dfe1eee3 531
621793f4
JS
532 m_frameMenuBar = menuBar;
533 m_frameMenuBar->CreateMenuBar(this);
4bb6408c
JS
534}
535
4bb6408c
JS
536// Responds to colour changes, and passes event on to children.
537void wxFrame::OnSysColourChanged(wxSysColourChangedEvent& event)
538{
a756f210 539 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE));
4bb6408c 540 Refresh();
dfe1eee3 541
4bb6408c
JS
542 if ( m_frameStatusBar )
543 {
544 wxSysColourChangedEvent event2;
545 event2.SetEventObject( m_frameStatusBar );
546 m_frameStatusBar->ProcessEvent(event2);
547 }
dfe1eee3 548
4bb6408c
JS
549 // Propagate the event to the non-top-level children
550 wxWindow::OnSysColourChanged(event);
551}
552
4bb6408c
JS
553// Default activation behaviour - set the focus for the first child
554// subwindow found.
555void wxFrame::OnActivate(wxActivateEvent& event)
556{
af111fc3
JS
557 if (!event.GetActive())
558 return;
559
ac32ba44 560 for(wxWindowList::compatibility_iterator node = GetChildren().GetFirst(); node;
fd304d98 561 node = node->GetNext())
4bb6408c 562 {
2d120f83 563 // Find a child that's a subwindow, but not a dialog box.
fd304d98 564 wxWindow *child = node->GetData();
798a4529 565 if (!child->IsTopLevel())
2d120f83
JS
566 {
567 child->SetFocus();
568 return;
569 }
4bb6408c 570 }
4bb6408c
JS
571}
572
46675b46
MB
573void wxFrame::SendSizeEvent()
574{
575 wxSizeEvent event(GetSize(), GetId());
576 event.SetEventObject(this);
577 GetEventHandler()->AddPendingEvent(event);
578}
579
1ccbb61a 580#if wxUSE_TOOLBAR
dfe1eee3 581
1c4f8f8d
VZ
582wxToolBar* wxFrame::CreateToolBar(long style,
583 wxWindowID id,
584 const wxString& name)
4bb6408c 585{
1c4f8f8d 586 if ( wxFrameBase::CreateToolBar(style, id, name) )
4bb6408c 587 {
4bb6408c 588 PositionToolBar();
4bb6408c 589 }
4bb6408c 590
1ccbb61a
VZ
591 return m_frameToolBar;
592}
593
46675b46
MB
594void wxFrame::SetToolBar(wxToolBar *toolbar)
595{
596 wxFrameBase::SetToolBar(toolbar);
597 SendSizeEvent();
598}
599
4bb6408c
JS
600void wxFrame::PositionToolBar()
601{
798a4529
MB
602 wxToolBar* tb = GetToolBar();
603 if (tb)
4bb6408c 604 {
1c4f8f8d
VZ
605 int cw, ch;
606 GetClientSize(& cw, &ch);
607
4bb6408c 608 int tw, th;
798a4529 609 tb->GetSize(& tw, & th);
dfe1eee3 610
798a4529 611 if (tb->GetWindowStyleFlag() & wxTB_VERTICAL)
4bb6408c
JS
612 {
613 // Use the 'real' position. wxSIZE_NO_ADJUSTMENTS
614 // means, pretend we don't have toolbar/status bar, so we
615 // have the original client size.
798a4529 616 th = ch + th;
4bb6408c
JS
617 }
618 else
619 {
620 // Use the 'real' position
798a4529 621 tw = cw;
4bb6408c 622 }
4bb6408c 623
aae91497 624 tb->SetSize(0, 0, -1, -1, wxSIZE_NO_ADJUSTMENTS);
4bb6408c 625 }
4bb6408c 626}
798a4529 627#endif // wxUSE_TOOLBAR
4bb6408c
JS
628
629//// Motif-specific
630bool wxFrame::PreResize()
631{
1ccbb61a 632#if wxUSE_TOOLBAR
2d120f83 633 PositionToolBar();
1ccbb61a 634#endif // wxUSE_TOOLBAR
1c4f8f8d
VZ
635
636#if wxUSE_STATUSBAR
2d120f83 637 PositionStatusBar();
1c4f8f8d
VZ
638#endif // wxUSE_STATUSBAR
639
96be256b 640 return true;
4bb6408c
JS
641}
642
50414e24
JS
643WXWidget wxFrame::GetClientWidget() const
644{
2d120f83 645 return m_clientArea;
50414e24
JS
646}
647
af111fc3 648void wxFrame::ChangeFont(bool WXUNUSED(keepOriginalSize))
0d57be45
JS
649{
650 // TODO
651}
652
653void wxFrame::ChangeBackgroundColour()
654{
621793f4 655 if (GetClientWidget())
a8680e3e 656 wxDoChangeBackgroundColour(GetClientWidget(), m_backgroundColour);
0d57be45
JS
657}
658
659void wxFrame::ChangeForegroundColour()
660{
621793f4 661 if (GetClientWidget())
a8680e3e 662 wxDoChangeForegroundColour(GetClientWidget(), m_foregroundColour);
0d57be45
JS
663}
664
798a4529
MB
665/* MATTEW: Used to insure that hide-&-show within an event cycle works */
666static void wxFrameMapProc( Widget frameShell, XtPointer clientData,
667 XCrossingEvent* event )
4bb6408c 668{
798a4529 669 wxFrame *tli = (wxFrame*)clientData;
dfe1eee3 670
798a4529 671 XEvent *e = (XEvent *)event;
dfe1eee3 672
798a4529 673 if( e->xany.type == MapNotify )
dc1efb1d 674 {
798a4529
MB
675 // Iconize fix
676 XtVaSetValues( frameShell, XmNiconic, (Boolean)False, NULL );
677 if( !tli->GetVisibleStatus() )
dc1efb1d 678 {
798a4529
MB
679 /* We really wanted this to be hidden! */
680 XtUnmapWidget( frameShell );
dc1efb1d
JS
681 }
682 }
798a4529
MB
683 else if( e->xany.type == UnmapNotify )
684 // Iconize fix
685 XtVaSetValues( frameShell, XmNiconic, (Boolean)True, NULL );
dc1efb1d 686}