]> git.saurik.com Git - wxWidgets.git/blame - src/motif/window.cpp
Use struct qualifier with objc_object (it is and always will be a struct)
[wxWidgets.git] / src / motif / window.cpp
CommitLineData
4bb6408c
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: windows.cpp
3// Purpose: wxWindow
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
34636400
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
14f355c2 20#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
34636400 21 #pragma implementation "window.h"
4bb6408c
JS
22#endif
23
1248b41f
MB
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
4dff3400
JJ
27#ifdef __VMS
28#define XtDisplay XTDISPLAY
bcd055ae
JJ
29#define XtWindow XTWINDOW
30#define XtScreen XTSCREEN
4dff3400
JJ
31#endif
32
4bb6408c
JS
33#include "wx/setup.h"
34#include "wx/menu.h"
35#include "wx/dc.h"
36#include "wx/dcclient.h"
37#include "wx/utils.h"
38#include "wx/app.h"
4bb6408c 39#include "wx/layout.h"
4bb6408c
JS
40#include "wx/button.h"
41#include "wx/settings.h"
4bb6408c 42#include "wx/frame.h"
a91b47e8 43#include "wx/scrolwin.h"
33caefb3 44#include "wx/module.h"
4bb6408c
JS
45#include "wx/menuitem.h"
46#include "wx/log.h"
7e1bcfa8 47#include "wx/evtloop.h"
ed39ff57 48#include "wx/hash.h"
4bb6408c 49
47d67540 50#if wxUSE_DRAG_AND_DROP
34636400 51 #include "wx/dnd.h"
4bb6408c
JS
52#endif
53
fc7ca9b3 54// DoSetSizeIntr and DoMoveWindowIntr
37c997b4
MB
55// PROBLEM:
56// under Motif composite controls (such as wxCalendarCtrl or generic wxSpinCtrl
fc7ca9b3 57// did nott work and/or segfaulted because
37c997b4
MB
58// 1) wxWindow::Create calls SetSize,
59// which results in a call to DoSetSize much earlier than in the other ports
60// 2) if wxWindow::Create is called (wxControl::Create calls it)
61// then DoSetSize is never called, causing layout problems in composite
62// controls
63//
64// SOLUTION:
65// 1) don't call SetSize, DoSetSize, DoMoveWindow, DoGetPosition,
66// DoSetPosition directly or indirectly from wxWindow::Create
fc7ca9b3 67// 2) call DoMoveWindow from DoSetSize, allowing controls to override it
37c997b4 68
338dd992
JJ
69#ifdef __VMS__
70#pragma message disable nosimpint
71#endif
4bb6408c 72#include <Xm/Xm.h>
50414e24
JS
73
74#include <Xm/DrawingA.h>
75#include <Xm/ScrolledW.h>
76#include <Xm/ScrollBar.h>
77#include <Xm/Frame.h>
78#include <Xm/Label.h>
ee31c392 79#include <Xm/RowColumn.h> // for XmMenuPosition
338dd992
JJ
80#ifdef __VMS__
81#pragma message enable nosimpint
82#endif
50414e24 83
4bb6408c
JS
84#include "wx/motif/private.h"
85
86#include <string.h>
87
34636400
VZ
88// ----------------------------------------------------------------------------
89// constants
90// ----------------------------------------------------------------------------
91
92static const int SCROLL_MARGIN = 4;
93
94// ----------------------------------------------------------------------------
95// global variables for this module
96// ----------------------------------------------------------------------------
97
33caefb3 98extern wxHashTable *wxWidgetHashTable;
9806a47c
JS
99static wxWindow* g_captureWindow = NULL;
100
34636400
VZ
101
102// ----------------------------------------------------------------------------
103// private functions
104// ----------------------------------------------------------------------------
105
106static void wxCanvasRepaintProc(Widget, XtPointer, XmDrawingAreaCallbackStruct * cbs);
107static void wxCanvasInputEvent(Widget drawingArea, XtPointer data, XmDrawingAreaCallbackStruct * cbs);
108static void wxCanvasMotionEvent(Widget, XButtonEvent * event);
109static void wxCanvasEnterLeave(Widget drawingArea, XtPointer clientData, XCrossingEvent * event);
8aa04e8b 110static void wxScrollBarCallback(Widget widget, XtPointer clientData,
311227c3 111 XmScrollBarCallbackStruct *cbs);
34636400
VZ
112static void wxPanelItemEventHandler(Widget wid,
113 XtPointer client_data,
114 XEvent* event,
115 Boolean *continueToDispatch);
116
117// unused for now
118#if 0
119
120// Helper function for 16-bit fonts
121static int str16len(const char *s)
122{
123 int count = 0;
124
125 while (s[0] && s[1]) {
126 count++;
127 s += 2;
128 }
129
130 return count;
131}
132
133#endif // 0
134
135// ----------------------------------------------------------------------------
136// macros
137// ----------------------------------------------------------------------------
50414e24
JS
138
139#define event_left_is_down(x) ((x)->xbutton.state & Button1Mask)
140#define event_middle_is_down(x) ((x)->xbutton.state & Button2Mask)
141#define event_right_is_down(x) ((x)->xbutton.state & Button3Mask)
142
34636400
VZ
143// ----------------------------------------------------------------------------
144// event tables
145// ----------------------------------------------------------------------------
4bb6408c 146
8e877c19 147 IMPLEMENT_DYNAMIC_CLASS(wxWindow, wxWindowBase)
4bb6408c 148
8e877c19 149 BEGIN_EVENT_TABLE(wxWindow, wxWindowBase)
34636400 150 EVT_SYS_COLOUR_CHANGED(wxWindow::OnSysColourChanged)
34636400 151 END_EVENT_TABLE()
4bb6408c 152
34636400
VZ
153// ============================================================================
154// implementation
155// ============================================================================
4bb6408c 156
34636400
VZ
157// ----------------------------------------------------------------------------
158// helper functions
159// ----------------------------------------------------------------------------
4bb6408c 160
34636400 161void wxWindow::UnmanageAndDestroy(WXWidget widget)
4bb6408c 162{
34636400
VZ
163 Widget w = (Widget)widget;
164 if ( w )
4bb6408c 165 {
34636400
VZ
166 XtUnmanageChild(w);
167 XtDestroyWidget(w);
4bb6408c 168 }
4bb6408c
JS
169}
170
b9ecc16a 171bool wxWindow::MapOrUnmap(WXWidget widget, bool domap)
4bb6408c 172{
34636400
VZ
173 Widget w = (Widget)widget;
174 if ( !w )
175 return FALSE;
176
882b1d8d
MB
177 // Rationale: a lot of common operations (including but not
178 // limited to moving, resizing and appending items to a listbox)
179 // unmamange the widget, do their work, then manage it again.
180 // This means that, for example adding an item to a listbox will show it,
181 // or that most controls are shown every time they are moved or resized!
182 XtSetMappedWhenManaged( w, domap );
183
28169f14
MB
184 // if the widget is not unmanaged, it still intercepts
185 // mouse events, even if it is not mapped (and hence invisible)
b9ecc16a 186 if ( domap )
28169f14
MB
187 {
188 XtManageChild(w);
882b1d8d 189 // XtMapWidget(w);
28169f14 190 }
34636400 191 else
28169f14 192 {
28169f14 193 XtUnmanageChild(w);
882b1d8d 194 // XtUnmapWidget(w);
28169f14 195 }
34636400 196
4bb6408c
JS
197 return TRUE;
198}
199
34636400
VZ
200// ----------------------------------------------------------------------------
201// constructors
202// ----------------------------------------------------------------------------
203
204void wxWindow::Init()
4bb6408c 205{
50414e24 206 // Motif-specific
a91b47e8 207 m_needsRefresh = TRUE;
50414e24 208 m_mainWidget = (WXWidget) 0;
34636400 209
50414e24 210 m_winCaptured = FALSE;
34636400 211
50414e24 212 m_isShown = TRUE;
3ab377bd 213
34636400
VZ
214 m_hScrollBar =
215 m_vScrollBar =
216 m_borderWidget =
217 m_scrolledWindow =
50414e24 218 m_drawingArea = (WXWidget) 0;
34636400 219
34636400
VZ
220 m_scrollPosX =
221 m_scrollPosY = 0;
222
50414e24 223 m_backingPixmap = (WXPixmap) 0;
34636400 224 m_pixmapWidth =
50414e24 225 m_pixmapHeight = 0;
34636400
VZ
226
227 m_pixmapOffsetX =
50414e24 228 m_pixmapOffsetY = 0;
34636400
VZ
229
230 m_lastTS = 0;
231 m_lastButton = 0;
34636400
VZ
232}
233
234// real construction (Init() must have been called before!)
235bool wxWindow::Create(wxWindow *parent, wxWindowID id,
236 const wxPoint& pos,
237 const wxSize& size,
238 long style,
239 const wxString& name)
240{
241 wxCHECK_MSG( parent, FALSE, "can't create wxWindow without parent" );
242
813c20a6 243 CreateBase(parent, id, pos, size, style, wxDefaultValidator, name);
34636400
VZ
244
245 parent->AddChild(this);
246
a756f210 247 m_backgroundColour = wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE);
4bb6408c 248 m_foregroundColour = *wxBLACK;
34636400 249
50414e24
JS
250 //// TODO: we should probably optimize by only creating a
251 //// a drawing area if we have one or more scrollbars (wxVSCROLL/wxHSCROLL).
252 //// But for now, let's simplify things by always creating the
253 //// drawing area, since otherwise the translations are different.
34636400 254
2d120f83 255 // New translations for getting mouse motion feedback
34636400
VZ
256 static const String translations =
257"<Btn1Motion>: wxCanvasMotionEvent() DrawingAreaInput() ManagerGadgetButtonMotion()\n\
2d120f83
JS
258<Btn2Motion>: wxCanvasMotionEvent() DrawingAreaInput() ManagerGadgetButtonMotion()\n\
259<Btn3Motion>: wxCanvasMotionEvent() DrawingAreaInput() ManagerGadgetButtonMotion()\n\
260<BtnMotion>: wxCanvasMotionEvent() DrawingAreaInput() ManagerGadgetButtonMotion()\n\
261<Btn1Down>: DrawingAreaInput() ManagerGadgetArm()\n\
262<Btn2Down>: DrawingAreaInput() ManagerGadgetArm()\n\
263<Btn3Down>: DrawingAreaInput() ManagerGadgetArm()\n\
264<Btn1Up>: DrawingAreaInput() ManagerGadgetActivate()\n\
265<Btn2Up>: DrawingAreaInput() ManagerGadgetActivate()\n\
266<Btn3Up>: DrawingAreaInput() ManagerGadgetActivate()\n\
267<Motion>: wxCanvasMotionEvent() DrawingAreaInput()\n\
268<EnterWindow>: wxCanvasMotionEvent() DrawingAreaInput()\n\
269<LeaveWindow>: wxCanvasMotionEvent() DrawingAreaInput()\n\
270<Key>: DrawingAreaInput()";
34636400 271
2d120f83
JS
272 XtActionsRec actions[1];
273 actions[0].string = "wxCanvasMotionEvent";
274 actions[0].proc = (XtActionProc) wxCanvasMotionEvent;
275 XtAppAddActions ((XtAppContext) wxTheApp->GetAppContext(), actions, 1);
34636400
VZ
276
277 Widget parentWidget = (Widget) parent->GetClientWidget();
6769d0cb 278 m_borderWidget = wxCreateBorderWidget( (WXWidget)parentWidget, style );
34636400
VZ
279
280 m_scrolledWindow = (WXWidget)XtVaCreateManagedWidget
281 (
282 "scrolledWindow",
283 xmScrolledWindowWidgetClass,
284 m_borderWidget ? (Widget) m_borderWidget
285 : parentWidget,
286 XmNresizePolicy, XmRESIZE_NONE,
287 XmNspacing, 0,
288 XmNscrollingPolicy, XmAPPLICATION_DEFINED,
289 //XmNscrollBarDisplayPolicy, XmAS_NEEDED,
290 NULL
291 );
292
293 XtTranslations ptr = XtParseTranslationTable(translations);
294 m_drawingArea = (WXWidget)XtVaCreateWidget
295 (
296 name,
297 xmDrawingAreaWidgetClass, (Widget) m_scrolledWindow,
298 XmNunitType, XmPIXELS,
299 // XmNresizePolicy, XmRESIZE_ANY,
300 XmNresizePolicy, XmRESIZE_NONE,
301 XmNmarginHeight, 0,
302 XmNmarginWidth, 0,
303 XmNtranslations, ptr,
304 NULL
305 );
306 XtFree((char *) ptr);
307
308#if 0
309 if (GetWindowStyleFlag() & wxOVERRIDE_KEY_TRANSLATIONS)
310 {
2d120f83
JS
311 ptr = XtParseTranslationTable ("<Key>: DrawingAreaInput()");
312 XtOverrideTranslations ((Widget) m_drawingArea, ptr);
313 XtFree ((char *) ptr);
34636400
VZ
314 }
315#endif // 0
316
2d120f83
JS
317 wxAddWindowToTable((Widget) m_drawingArea, this);
318 wxAddWindowToTable((Widget) m_scrolledWindow, this);
34636400
VZ
319
320 // This order is very important in Motif 1.2.1
2d120f83
JS
321 XtRealizeWidget ((Widget) m_scrolledWindow);
322 XtRealizeWidget ((Widget) m_drawingArea);
323 XtManageChild ((Widget) m_drawingArea);
34636400
VZ
324
325 ptr = XtParseTranslationTable("<Configure>: resize()");
326 XtOverrideTranslations((Widget) m_drawingArea, ptr);
50414e24 327 XtFree ((char *) ptr);
34636400 328
2d120f83
JS
329 XtAddCallback ((Widget) m_drawingArea, XmNexposeCallback, (XtCallbackProc) wxCanvasRepaintProc, (XtPointer) this);
330 XtAddCallback ((Widget) m_drawingArea, XmNinputCallback, (XtCallbackProc) wxCanvasInputEvent, (XtPointer) this);
34636400 331
34636400
VZ
332 XtAddEventHandler(
333 (Widget)m_drawingArea,
334 PointerMotionHintMask | EnterWindowMask |
335 LeaveWindowMask | FocusChangeMask,
336 False,
337 (XtEventHandler) wxCanvasEnterLeave,
338 (XtPointer) this
339 );
340
341 // Scrolled widget needs to have its colour changed or we get a little blue
342 // square where the scrollbars abutt
a756f210 343 wxColour backgroundColour = wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE);
a8680e3e
MB
344 wxDoChangeBackgroundColour(m_scrolledWindow, backgroundColour, TRUE);
345 wxDoChangeBackgroundColour(m_drawingArea, backgroundColour, TRUE);
34636400
VZ
346
347 XmScrolledWindowSetAreas(
348 (Widget)m_scrolledWindow,
349 (Widget) 0, (Widget) 0,
350 (Widget) m_drawingArea);
351
34636400
VZ
352 // Without this, the cursor may not be restored properly (e.g. in splitter
353 // sample).
2d120f83 354 SetCursor(*wxSTANDARD_CURSOR);
a756f210 355 SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT));
37c997b4 356 DoSetSizeIntr(pos.x, pos.y, size.x,size.y, wxSIZE_AUTO, TRUE);
2d120f83 357 return TRUE;
88150e60
JS
358}
359
34636400
VZ
360// Destructor
361wxWindow::~wxWindow()
362{
9806a47c 363 if (g_captureWindow == this)
2b5f62a0 364 g_captureWindow = NULL;
9806a47c 365
3ab377bd
MB
366 m_isBeingDeleted = TRUE;
367
34636400
VZ
368 // Motif-specific actions first
369 WXWidget wMain = GetMainWidget();
370 if ( wMain )
371 {
372 // Removes event handlers
373 DetachWidget(wMain);
374 }
375
34636400
VZ
376 // If m_drawingArea, we're a fully-fledged window with drawing area,
377 // scrollbars etc. (what wxCanvas used to be)
378 if ( m_drawingArea )
379 {
380 // Destroy children before destroying self
381 DestroyChildren();
382
383 if (m_backingPixmap)
384 XFreePixmap (XtDisplay ((Widget) GetMainWidget()), (Pixmap) m_backingPixmap);
385
386 Widget w = (Widget) m_drawingArea;
387 wxDeleteWindowFromTable(w);
388
389 if (w)
390 {
391 XtDestroyWidget(w);
2b5f62a0 392 m_drawingArea = (WXWidget) 0;
34636400
VZ
393 }
394
34636400
VZ
395 // Only if we're _really_ a canvas (not a dialog box/panel)
396 if (m_scrolledWindow)
397 {
398 wxDeleteWindowFromTable((Widget) m_scrolledWindow);
399 }
400
311227c3
MB
401 if (m_hScrollBar)
402 {
403 wxDeleteWindowFromTable((Widget) m_hScrollBar);
2b5f62a0 404 XtUnmanageChild((Widget) m_hScrollBar);
311227c3
MB
405 }
406 if (m_vScrollBar)
407 {
408 wxDeleteWindowFromTable((Widget) m_vScrollBar);
2b5f62a0 409 XtUnmanageChild((Widget) m_vScrollBar);
311227c3
MB
410 }
411
f0d5fc50 412 if (m_hScrollBar)
2b5f62a0 413 XtDestroyWidget((Widget) m_hScrollBar);
f0d5fc50 414 if (m_vScrollBar)
2b5f62a0 415 XtDestroyWidget((Widget) m_vScrollBar);
f0d5fc50 416
34636400
VZ
417 UnmanageAndDestroy(m_scrolledWindow);
418
419 if (m_borderWidget)
420 {
421 XtDestroyWidget ((Widget) m_borderWidget);
422 m_borderWidget = (WXWidget) 0;
423 }
424 }
7b28757f
JS
425 else // Why wasn't this here before? JACS 8/3/2000
426 DestroyChildren();
427
34636400
VZ
428
429 // Destroy the window
430 if (GetMainWidget())
431 {
432 // If this line (XtDestroyWidget) causes a crash, you may comment it out.
433 // Child widgets will get destroyed automatically when a frame
434 // or dialog is destroyed, but before that you may get some memory
435 // leaks and potential layout problems if you delete and then add
436 // child windows.
bdeca1d1
GRG
437
438 // GRG, Feb/2000: commented this out when adding support for
439 // wxSCROLL[WIN]_THUMBRELEASE events. Also it was reported
440 // that this call crashed wxMotif under OS/2, so it seems
441 // that leaving it out is the right thing to do.
b3ef4fb5
SN
442 // SN, Feb/2000: newgrid/griddemo shows why it is needed :-(
443 XtDestroyWidget((Widget) GetMainWidget());
34636400
VZ
444 SetMainWidget((WXWidget) NULL);
445 }
446}
447
448// ----------------------------------------------------------------------------
449// scrollbar management
450// ----------------------------------------------------------------------------
451
148b44a1
MB
452WXWidget wxWindow::DoCreateScrollBar(WXWidget parent,
453 wxOrientation orientation,
454 void (*callback)())
455{
456 int orient = ( orientation & wxHORIZONTAL ) ? XmHORIZONTAL : XmVERTICAL;
457 Widget sb =
458 XtVaCreateManagedWidget( "scrollBarWidget",
459 xmScrollBarWidgetClass, (Widget)parent,
460 XmNorientation, orient,
461 XmNincrement, 1,
462 XmNvalue, 0,
463 NULL );
464
465 XtPointer o = (XtPointer)orientation;
466 XtCallbackProc cb = (XtCallbackProc)callback;
467
468 XtAddCallback( sb, XmNvalueChangedCallback, cb, o );
469 XtAddCallback( sb, XmNdragCallback, cb, o );
470 XtAddCallback( sb, XmNincrementCallback, cb, o );
471 XtAddCallback( sb, XmNdecrementCallback, cb, o );
472 XtAddCallback( sb, XmNpageIncrementCallback, cb, o );
473 XtAddCallback( sb, XmNpageDecrementCallback, cb, o );
474 XtAddCallback( sb, XmNtoTopCallback, cb, o );
475 XtAddCallback( sb, XmNtoBottomCallback, cb, o );
476
477 return (WXWidget)sb;
478}
479
88150e60 480// Helper function
af0bb3b1 481void wxWindow::CreateScrollbar(wxOrientation orientation)
88150e60 482{
34636400
VZ
483 wxCHECK_RET( m_drawingArea, "this window can't have scrollbars" );
484
148b44a1
MB
485 XtVaSetValues( (Widget) m_scrolledWindow,
486 XmNresizePolicy, XmRESIZE_NONE,
487 NULL );
34636400 488
148b44a1 489 wxColour backgroundColour = wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE);
2d120f83
JS
490 // Add scrollbars if required
491 if (orientation == wxHORIZONTAL)
492 {
148b44a1
MB
493 m_hScrollBar = DoCreateScrollBar( m_scrolledWindow, wxHORIZONTAL,
494 (void (*)())wxScrollBarCallback );
34636400 495
a8680e3e 496 wxDoChangeBackgroundColour(m_hScrollBar, backgroundColour, TRUE);
34636400 497
148b44a1 498 XtRealizeWidget( (Widget)m_hScrollBar );
34636400 499
2d120f83
JS
500 XtVaSetValues((Widget) m_scrolledWindow,
501 XmNhorizontalScrollBar, (Widget) m_hScrollBar,
502 NULL);
34636400 503
148b44a1 504 wxAddWindowToTable( (Widget)m_hScrollBar, this );
2d120f83 505 }
148b44a1 506 else if (orientation == wxVERTICAL)
2d120f83 507 {
148b44a1
MB
508 m_vScrollBar = DoCreateScrollBar( m_scrolledWindow, wxVERTICAL,
509 (void (*)())wxScrollBarCallback );
34636400 510
a8680e3e 511 wxDoChangeBackgroundColour(m_vScrollBar, backgroundColour, TRUE);
34636400 512
148b44a1 513 XtRealizeWidget((Widget)m_vScrollBar);
34636400 514
2d120f83
JS
515 XtVaSetValues((Widget) m_scrolledWindow,
516 XmNverticalScrollBar, (Widget) m_vScrollBar,
517 NULL);
34636400 518
148b44a1 519 wxAddWindowToTable( (Widget)m_vScrollBar, this );
2d120f83 520 }
34636400 521
148b44a1
MB
522 XtVaSetValues( (Widget) m_scrolledWindow,
523 XmNresizePolicy, XmRESIZE_ANY,
524 NULL );
88150e60 525}
34636400 526
af0bb3b1 527void wxWindow::DestroyScrollbar(wxOrientation orientation)
88150e60 528{
34636400
VZ
529 wxCHECK_RET( m_drawingArea, "this window can't have scrollbars" );
530
148b44a1
MB
531 XtVaSetValues((Widget) m_scrolledWindow,
532 XmNresizePolicy, XmRESIZE_NONE,
533 NULL);
534 String stringSB = orientation == wxHORIZONTAL ?
535 XmNhorizontalScrollBar : XmNverticalScrollBar;
536 WXWidget* widgetSB = orientation == wxHORIZONTAL ?
537 &m_hScrollBar : &m_vScrollBar;
34636400 538
148b44a1 539 if( *widgetSB )
2d120f83 540 {
148b44a1
MB
541 wxDeleteWindowFromTable( (Widget)*widgetSB );
542 XtDestroyWidget( (Widget)*widgetSB );
543 *widgetSB = (WXWidget)NULL;
544 }
34636400 545
148b44a1
MB
546 XtVaSetValues( (Widget)m_scrolledWindow,
547 stringSB, (Widget) 0,
548 NULL );
34636400 549
148b44a1
MB
550 XtVaSetValues((Widget) m_scrolledWindow,
551 XmNresizePolicy, XmRESIZE_ANY,
552 NULL);
4bb6408c
JS
553}
554
34636400
VZ
555// ---------------------------------------------------------------------------
556// basic operations
557// ---------------------------------------------------------------------------
558
4bb6408c
JS
559void wxWindow::SetFocus()
560{
34636400
VZ
561 Widget wMain = (Widget) GetMainWidget();
562 XmProcessTraversal(wMain, XmTRAVERSE_CURRENT);
2d120f83 563 XmProcessTraversal((Widget) GetMainWidget(), XmTRAVERSE_CURRENT);
4bb6408c
JS
564}
565
34636400 566// Get the window with the focus
0fe02759 567wxWindow *wxWindowBase::DoFindFocus()
4bb6408c 568{
34636400
VZ
569 // TODO Problems:
570 // (1) Can there be multiple focussed widgets in an application?
571 // In which case we need to find the top-level window that's
572 // currently active.
573 // (2) The widget with the focus may not be in the widget table
574 // depending on which widgets I put in the table
575 wxWindow *winFocus = (wxWindow *)NULL;
1807c27d 576 for ( wxWindowList::compatibility_iterator node = wxTopLevelWindows.GetFirst();
34636400
VZ
577 node;
578 node = node->GetNext() )
2d120f83 579 {
34636400
VZ
580 wxWindow *win = node->GetData();
581
582 Widget w = XmGetFocusWidget ((Widget) win->GetTopWidget());
583
584 if (w != (Widget) NULL)
585 {
586 winFocus = wxGetWindowFromTable(w);
587 if ( winFocus )
588 break;
589 }
2d120f83 590 }
4bb6408c 591
34636400 592 return winFocus;
4bb6408c
JS
593}
594
af0bb3b1 595bool wxWindow::Enable(bool enable)
4bb6408c 596{
34636400
VZ
597 if ( !wxWindowBase::Enable(enable) )
598 return FALSE;
4bb6408c 599
af0bb3b1 600 Widget wMain = (Widget)GetMainWidget();
34636400
VZ
601 if ( wMain )
602 {
603 XtSetSensitive(wMain, enable);
604 XmUpdateDisplay(wMain);
605 }
606
607 return TRUE;
4bb6408c
JS
608}
609
34636400 610bool wxWindow::Show(bool show)
4bb6408c 611{
34636400
VZ
612 if ( !wxWindowBase::Show(show) )
613 return FALSE;
614
615 if (m_borderWidget || m_scrolledWindow)
2d120f83 616 {
34636400 617 MapOrUnmap(m_borderWidget ? m_borderWidget : m_scrolledWindow, show);
882b1d8d 618 // MapOrUnmap(m_drawingArea, show);
2d120f83
JS
619 }
620 else
34636400
VZ
621 {
622 if ( !MapOrUnmap(GetTopWidget(), show) )
623 MapOrUnmap(GetMainWidget(), show);
624 }
625
34636400
VZ
626 return TRUE;
627}
4bb6408c 628
34636400
VZ
629// Raise the window to the top of the Z order
630void wxWindow::Raise()
4bb6408c 631{
34636400
VZ
632 Widget wTop = (Widget) GetTopWidget();
633 Window window = XtWindow(wTop);
634 XRaiseWindow(XtDisplay(wTop), window);
4bb6408c
JS
635}
636
34636400
VZ
637// Lower the window to the bottom of the Z order
638void wxWindow::Lower()
639{
640 Widget wTop = (Widget) GetTopWidget();
641 Window window = XtWindow(wTop);
642 XLowerWindow(XtDisplay(wTop), window);
643}
4bb6408c 644
af0bb3b1 645void wxWindow::SetTitle(const wxString& title)
4bb6408c 646{
af0bb3b1 647 XtVaSetValues((Widget)GetMainWidget(), XmNtitle, title.c_str(), NULL);
4bb6408c
JS
648}
649
34636400 650wxString wxWindow::GetTitle() const
4bb6408c 651{
af0bb3b1
VZ
652 char *title;
653 XtVaGetValues((Widget)GetMainWidget(), XmNtitle, &title, NULL);
654
655 return wxString(title);
4bb6408c
JS
656}
657
4116c221 658void wxWindow::DoCaptureMouse()
4bb6408c 659{
9806a47c 660 g_captureWindow = this;
34636400 661 if ( m_winCaptured )
a4294b78 662 return;
34636400 663
af0bb3b1 664 Widget wMain = (Widget)GetMainWidget();
34636400
VZ
665 if ( wMain )
666 XtAddGrab(wMain, TRUE, FALSE);
667
668 m_winCaptured = TRUE;
4bb6408c
JS
669}
670
4116c221 671void wxWindow::DoReleaseMouse()
4bb6408c 672{
9806a47c 673 g_captureWindow = NULL;
34636400
VZ
674 if ( !m_winCaptured )
675 return;
676
af0bb3b1 677 Widget wMain = (Widget)GetMainWidget();
34636400
VZ
678 if ( wMain )
679 XtRemoveGrab(wMain);
680
681 m_winCaptured = FALSE;
4bb6408c
JS
682}
683
34636400 684bool wxWindow::SetFont(const wxFont& font)
4bb6408c 685{
34636400
VZ
686 if ( !wxWindowBase::SetFont(font) )
687 {
688 // nothing to do
689 return FALSE;
690 }
691
692 ChangeFont();
693
694 return TRUE;
4bb6408c
JS
695}
696
34636400 697bool wxWindow::SetCursor(const wxCursor& cursor)
4bb6408c 698{
34636400 699 if ( !wxWindowBase::SetCursor(cursor) )
2d120f83 700 {
34636400
VZ
701 // no change
702 return FALSE;
2d120f83 703 }
4bb6408c 704
f6bcfd97
BP
705 // wxASSERT_MSG( m_cursor.Ok(),
706 // wxT("cursor must be valid after call to the base version"));
707 wxCursor* cursor2 = NULL;
708 if (m_cursor.Ok())
709 cursor2 = & m_cursor;
710 else
711 cursor2 = wxSTANDARD_CURSOR;
4bb6408c 712
34636400 713 WXDisplay *dpy = GetXDisplay();
f6bcfd97 714 WXCursor x_cursor = cursor2->GetXCursor(dpy);
34636400
VZ
715
716 Widget w = (Widget) GetMainWidget();
717 Window win = XtWindow(w);
718 XDefineCursor((Display*) dpy, win, (Cursor) x_cursor);
af0bb3b1
VZ
719
720 return TRUE;
34636400
VZ
721}
722
723// Coordinates relative to the window
724void wxWindow::WarpPointer (int x, int y)
4bb6408c 725{
34636400
VZ
726 Widget wClient = (Widget)GetClientWidget();
727
728 XWarpPointer(XtDisplay(wClient), None, XtWindow(wClient), 0, 0, 0, 0, x, y);
4bb6408c
JS
729}
730
34636400
VZ
731// ---------------------------------------------------------------------------
732// scrolling stuff
733// ---------------------------------------------------------------------------
734
735int wxWindow::GetScrollPos(int orient) const
4bb6408c 736{
34636400
VZ
737 if (orient == wxHORIZONTAL)
738 return m_scrollPosX;
739 else
740 return m_scrollPosY;
741
742#if 0
743 Widget scrollBar = (Widget) ((orient == wxHORIZONTAL) ? m_hScrollBar : m_vScrollBar);
744 if (scrollBar)
2d120f83 745 {
34636400
VZ
746 int pos;
747 XtVaGetValues(scrollBar, XmNvalue, &pos, NULL);
748 return pos;
2d120f83 749 }
34636400
VZ
750 else
751 return 0;
752#endif // 0
2d120f83 753}
7fe7d506 754
34636400
VZ
755// This now returns the whole range, not just the number of positions that we
756// can scroll.
757int wxWindow::GetScrollRange(int orient) const
2d120f83 758{
af0bb3b1 759 Widget scrollBar = (Widget)GetScrollbar((wxOrientation)orient);
34e8f097
CE
760 // CE scintilla windows don't always have these scrollbars
761 // and it tends to pile up a whole bunch of asserts
762 //wxCHECK_MSG( scrollBar, 0, "no such scrollbar" );
34636400 763
c4cb3d0f
JS
764 int range = 0;
765 if (scrollBar)
766 XtVaGetValues(scrollBar, XmNmaximum, &range, NULL);
34636400 767 return range;
2d120f83 768}
4bb6408c 769
34636400 770int wxWindow::GetScrollThumb(int orient) const
4bb6408c 771{
af0bb3b1 772 Widget scrollBar = (Widget)GetScrollbar((wxOrientation)orient);
34e8f097 773 //wxCHECK_MSG( scrollBar, 0, "no such scrollbar" );
34636400 774
34e8f097
CE
775 int thumb = 0;
776 if (scrollBar)
777 XtVaGetValues(scrollBar, XmNsliderSize, &thumb, NULL);
34636400 778 return thumb;
4bb6408c
JS
779}
780
34636400 781void wxWindow::SetScrollPos(int orient, int pos, bool WXUNUSED(refresh))
4bb6408c 782{
af0bb3b1 783 Widget scrollBar = (Widget)GetScrollbar((wxOrientation)orient);
34636400
VZ
784
785 if ( scrollBar )
4bb6408c 786 {
34636400 787 XtVaSetValues (scrollBar, XmNvalue, pos, NULL);
4bb6408c 788 }
34636400 789
af0bb3b1 790 SetInternalScrollPos((wxOrientation)orient, pos);
4bb6408c
JS
791}
792
34636400
VZ
793// New function that will replace some of the above.
794void wxWindow::SetScrollbar(int orient, int pos, int thumbVisible,
795 int range, bool WXUNUSED(refresh))
4bb6408c 796{
34636400
VZ
797 int oldW, oldH;
798 GetSize(& oldW, & oldH);
799
800 if (range == 0)
801 range = 1;
802 if (thumbVisible == 0)
803 thumbVisible = 1;
804
805 if (thumbVisible > range)
806 thumbVisible = range;
807
808 // Save the old state to see if it changed
af0bb3b1 809 WXWidget oldScrollBar = GetScrollbar((wxOrientation)orient);
34636400
VZ
810
811 if (orient == wxHORIZONTAL)
50414e24 812 {
34636400 813 if (thumbVisible == range)
2d120f83 814 {
34636400
VZ
815 if (m_hScrollBar)
816 DestroyScrollbar(wxHORIZONTAL);
2d120f83
JS
817 }
818 else
819 {
34636400
VZ
820 if (!m_hScrollBar)
821 CreateScrollbar(wxHORIZONTAL);
2d120f83 822 }
50414e24 823 }
34636400 824 if (orient == wxVERTICAL)
50414e24 825 {
34636400 826 if (thumbVisible == range)
2d120f83 827 {
34636400
VZ
828 if (m_vScrollBar)
829 DestroyScrollbar(wxVERTICAL);
2d120f83
JS
830 }
831 else
832 {
34636400
VZ
833 if (!m_vScrollBar)
834 CreateScrollbar(wxVERTICAL);
2d120f83 835 }
50414e24 836 }
af0bb3b1 837 WXWidget newScrollBar = GetScrollbar((wxOrientation)orient);
4bb6408c 838
88150e60 839 if (oldScrollBar != newScrollBar)
28ab302b 840 {
34636400 841 // This is important! Without it, scrollbars misbehave badly.
2d120f83
JS
842 XtUnrealizeWidget((Widget) m_scrolledWindow);
843 XmScrolledWindowSetAreas ((Widget) m_scrolledWindow, (Widget) m_hScrollBar, (Widget) m_vScrollBar, (Widget) m_drawingArea);
844 XtRealizeWidget((Widget) m_scrolledWindow);
845 XtManageChild((Widget) m_scrolledWindow);
28ab302b 846 }
34636400 847
88150e60 848 if (newScrollBar)
34636400 849 {
2d120f83
JS
850 XtVaSetValues((Widget) newScrollBar,
851 XmNvalue, pos,
852 XmNminimum, 0,
853 XmNmaximum, range,
854 XmNsliderSize, thumbVisible,
855 NULL);
34636400
VZ
856 }
857
af0bb3b1 858 SetInternalScrollPos((wxOrientation)orient, pos);
34636400 859
88150e60
JS
860 int newW, newH;
861 GetSize(& newW, & newH);
34636400 862
88150e60
JS
863 // Adjusting scrollbars can resize the canvas accidentally
864 if (newW != oldW || newH != oldH)
865 SetSize(-1, -1, oldW, oldH);
4bb6408c
JS
866}
867
868// Does a physical scroll
16e93305 869void wxWindow::ScrollWindow(int dx, int dy, const wxRect *rect)
4bb6408c 870{
2d120f83
JS
871 int x, y, w, h;
872 if (rect)
873 {
874 // Use specified rectangle
875 x = rect->x; y = rect->y; w = rect->width; h = rect->height;
876 }
877 else
878 {
879 // Use whole client area
880 x = 0; y = 0;
881 GetClientSize(& w, & h);
882 }
34636400
VZ
883
884 int x1 = (dx >= 0) ? x : x - dx;
2d120f83
JS
885 int y1 = (dy >= 0) ? y : y - dy;
886 int w1 = w - abs(dx);
887 int h1 = h - abs(dy);
888 int x2 = (dx >= 0) ? x + dx : x;
889 int y2 = (dy >= 0) ? y + dy : y;
34636400 890
2d120f83 891 wxClientDC dc(this);
34636400 892
2d120f83 893 dc.SetLogicalFunction (wxCOPY);
34636400 894
2d120f83
JS
895 Widget widget = (Widget) GetMainWidget();
896 Window window = XtWindow(widget);
897 Display* display = XtDisplay(widget);
34636400
VZ
898
899 XCopyArea(display, window, window, (GC) dc.GetGC(),
900 x1, y1, w1, h1, x2, y2);
901
2d120f83
JS
902 dc.SetAutoSetting(TRUE);
903 wxBrush brush(GetBackgroundColour(), wxSOLID);
34636400
VZ
904 dc.SetBrush(brush); // FIXME: needed?
905
1807c27d 906 wxWindowList::compatibility_iterator cnode = m_children.GetFirst();
fc7ca9b3
MB
907 while (cnode)
908 {
909 wxWindow *child = cnode->GetData();
910 int sx = 0;
911 int sy = 0;
912 child->GetSize( &sx, &sy );
913 wxPoint pos( child->GetPosition() );
914 child->SetSize( pos.x + dx, pos.y + dy, sx, sy, wxSIZE_ALLOW_MINUS_ONE );
915 cnode = cnode->GetNext();
916 }
917
34636400
VZ
918 // We'll add rectangles to the list of update rectangles according to which
919 // bits we've exposed.
2d120f83 920 wxList updateRects;
34636400 921
2d120f83
JS
922 if (dx > 0)
923 {
924 wxRect *rect = new wxRect;
925 rect->x = x;
926 rect->y = y;
927 rect->width = dx;
928 rect->height = h;
34636400 929
2d120f83
JS
930 XFillRectangle(display, window,
931 (GC) dc.GetGC(), rect->x, rect->y, rect->width, rect->height);
34636400 932
2d120f83
JS
933 rect->x = rect->x;
934 rect->y = rect->y;
935 rect->width = rect->width;
936 rect->height = rect->height;
34636400 937
2d120f83
JS
938 updateRects.Append((wxObject*) rect);
939 }
940 else if (dx < 0)
941 {
942 wxRect *rect = new wxRect;
34636400 943
2d120f83
JS
944 rect->x = x + w + dx;
945 rect->y = y;
946 rect->width = -dx;
947 rect->height = h;
34636400 948
2d120f83
JS
949 XFillRectangle(display, window,
950 (GC) dc.GetGC(), rect->x, rect->y, rect->width,
951 rect->height);
34636400 952
2d120f83
JS
953 rect->x = rect->x;
954 rect->y = rect->y;
955 rect->width = rect->width;
956 rect->height = rect->height;
34636400 957
2d120f83
JS
958 updateRects.Append((wxObject*) rect);
959 }
960 if (dy > 0)
961 {
962 wxRect *rect = new wxRect;
34636400 963
2d120f83
JS
964 rect->x = x;
965 rect->y = y;
966 rect->width = w;
967 rect->height = dy;
34636400 968
2d120f83
JS
969 XFillRectangle(display, window,
970 (GC) dc.GetGC(), rect->x, rect->y, rect->width, rect->height);
34636400 971
2d120f83
JS
972 rect->x = rect->x;
973 rect->y = rect->y;
974 rect->width = rect->width;
975 rect->height = rect->height;
34636400 976
2d120f83
JS
977 updateRects.Append((wxObject*) rect);
978 }
979 else if (dy < 0)
980 {
981 wxRect *rect = new wxRect;
34636400 982
2d120f83
JS
983 rect->x = x;
984 rect->y = y + h + dy;
985 rect->width = w;
986 rect->height = -dy;
34636400 987
2d120f83
JS
988 XFillRectangle(display, window,
989 (GC) dc.GetGC(), rect->x, rect->y, rect->width, rect->height);
34636400 990
2d120f83
JS
991 rect->x = rect->x;
992 rect->y = rect->y;
993 rect->width = rect->width;
994 rect->height = rect->height;
34636400 995
2d120f83
JS
996 updateRects.Append((wxObject*) rect);
997 }
998 dc.SetBrush(wxNullBrush);
34636400 999
2d120f83 1000 // Now send expose events
34636400 1001
1807c27d 1002 wxList::compatibility_iterator node = updateRects.GetFirst();
2d120f83
JS
1003 while (node)
1004 {
1bc822df 1005 wxRect* rect = (wxRect*) node->GetData();
2d120f83 1006 XExposeEvent event;
34636400 1007
2d120f83
JS
1008 event.type = Expose;
1009 event.display = display;
1010 event.send_event = True;
1011 event.window = window;
34636400 1012
2d120f83
JS
1013 event.x = rect->x;
1014 event.y = rect->y;
1015 event.width = rect->width;
1016 event.height = rect->height;
34636400 1017
2d120f83 1018 event.count = 0;
34636400 1019
2d120f83 1020 XSendEvent(display, window, False, ExposureMask, (XEvent *)&event);
34636400 1021
1bc822df 1022 node = node->GetNext();
34636400 1023
2d120f83 1024 }
34636400 1025
2d120f83 1026 // Delete the update rects
1bc822df 1027 node = updateRects.GetFirst();
2d120f83
JS
1028 while (node)
1029 {
1bc822df 1030 wxRect* rect = (wxRect*) node->GetData();
2d120f83 1031 delete rect;
1bc822df 1032 node = node->GetNext();
2d120f83 1033 }
a91b47e8
JS
1034
1035 XmUpdateDisplay((Widget) GetMainWidget());
4bb6408c
JS
1036}
1037
34636400
VZ
1038// ---------------------------------------------------------------------------
1039// drag and drop
1040// ---------------------------------------------------------------------------
4ce81a75 1041
34636400 1042#if wxUSE_DRAG_AND_DROP
4ce81a75 1043
34636400 1044void wxWindow::SetDropTarget(wxDropTarget * WXUNUSED(pDropTarget))
4ce81a75 1045{
34636400 1046 // TODO
4bb6408c
JS
1047}
1048
34636400
VZ
1049#endif
1050
1051// Old style file-manager drag&drop
1052void wxWindow::DragAcceptFiles(bool WXUNUSED(accept))
4bb6408c 1053{
34636400 1054 // TODO
4bb6408c
JS
1055}
1056
34636400
VZ
1057// ----------------------------------------------------------------------------
1058// tooltips
1059// ----------------------------------------------------------------------------
1060
1061#if wxUSE_TOOLTIPS
1062
1063void wxWindow::DoSetToolTip(wxToolTip * WXUNUSED(tooltip))
4bb6408c 1064{
34636400 1065 // TODO
4bb6408c
JS
1066}
1067
34636400
VZ
1068#endif // wxUSE_TOOLTIPS
1069
ee31c392
VZ
1070// ----------------------------------------------------------------------------
1071// popup menus
1072// ----------------------------------------------------------------------------
1073
7e1bcfa8
MB
1074#if wxUSE_MENUS
1075
ee31c392
VZ
1076bool wxWindow::DoPopupMenu(wxMenu *menu, int x, int y)
1077{
971562cb
VS
1078 if ( x == -1 && y == -1 )
1079 {
1080 wxPoint mouse = ScreenToClient(wxGetMousePosition());
1081 x = mouse.x; y = mouse.y;
1082 }
1083
ee31c392
VZ
1084 Widget widget = (Widget) GetMainWidget();
1085
1086 /* The menuId field seems to be usused, so we'll use it to
1087 indicate whether a menu is popped up or not:
1088 0: Not currently created as a popup
1089 -1: Created as a popup, but not active
1090 1: Active popup.
1091 */
1092
1093 if (menu->GetParent() && (menu->GetId() != -1))
1094 return FALSE;
1095
7e1bcfa8
MB
1096 if (menu->GetMainWidget())
1097 {
ee31c392
VZ
1098 menu->DestroyMenu(TRUE);
1099 }
1100
1101 menu->SetId(1); /* Mark as popped-up */
1102 menu->CreateMenu(NULL, widget, menu);
1103 menu->SetInvokingWindow(this);
1104
1105 menu->UpdateUI();
1106
1107 // menu->SetParent(parent);
1108 // parent->children->Append(menu); // Store menu for later deletion
1109
1110 Widget menuWidget = (Widget) menu->GetMainWidget();
1111
1112 int rootX = 0;
1113 int rootY = 0;
1114
1115 int deviceX = x;
1116 int deviceY = y;
1117 /*
1118 if (this->IsKindOf(CLASSINFO(wxCanvas)))
1119 {
1120 wxCanvas *canvas = (wxCanvas *) this;
1121 deviceX = canvas->GetDC ()->LogicalToDeviceX (x);
1122 deviceY = canvas->GetDC ()->LogicalToDeviceY (y);
1123 }
1124 */
1125
1126 Display *display = XtDisplay (widget);
1127 Window rootWindow = RootWindowOfScreen (XtScreen((Widget)widget));
1128 Window thisWindow = XtWindow (widget);
1129 Window childWindow;
1130 XTranslateCoordinates (display, thisWindow, rootWindow, (int) deviceX, (int) deviceY,
1131 &rootX, &rootY, &childWindow);
1132
1133 XButtonPressedEvent event;
1134 event.type = ButtonPress;
1135 event.button = 1;
1136
1137 event.x = deviceX;
1138 event.y = deviceY;
1139
1140 event.x_root = rootX;
1141 event.y_root = rootY;
1142
1143 XmMenuPosition (menuWidget, &event);
1144 XtManageChild (menuWidget);
1145
2b5f62a0 1146 // The ID of a pop-up menu is 1 when active, and is set to 0 by the
e41e1385 1147 // idle-time destroy routine.
2b5f62a0 1148 // Waiting until this ID changes causes this function to block until
e41e1385
JS
1149 // the menu has been dismissed and the widgets cleaned up.
1150 // In other words, once this routine returns, it is safe to delete
1151 // the menu object.
1152 // Ian Brown <ian.brown@printsoft.de>
e41e1385 1153
7e1bcfa8 1154 wxEventLoop evtLoop;
e41e1385 1155
7e1bcfa8
MB
1156 while (menu->GetId() == 1)
1157 {
1158 wxDoEventLoopIteration( evtLoop );
e41e1385 1159 }
7e1bcfa8 1160
ee31c392
VZ
1161 return TRUE;
1162}
1163
7e1bcfa8
MB
1164#endif
1165
34636400
VZ
1166// ---------------------------------------------------------------------------
1167// moving and resizing
1168// ---------------------------------------------------------------------------
4bb6408c 1169
34636400 1170bool wxWindow::PreResize()
4bb6408c 1171{
2d120f83 1172 return TRUE;
4bb6408c
JS
1173}
1174
34636400 1175// Get total size
af0bb3b1 1176void wxWindow::DoGetSize(int *x, int *y) const
4bb6408c 1177{
fc7ca9b3
MB
1178 Widget widget = (Widget)( !m_drawingArea ? GetTopWidget() :
1179 ( m_borderWidget ? m_borderWidget :
1180 m_scrolledWindow ? m_scrolledWindow :
1181 m_drawingArea ) );
34636400 1182 Dimension xx, yy;
fc7ca9b3
MB
1183
1184 XtVaGetValues( widget,
1185 XmNwidth, &xx,
1186 XmNheight, &yy,
1187 NULL );
1188 if(x) *x = xx;
1189 if(y) *y = yy;
4bb6408c
JS
1190}
1191
af0bb3b1 1192void wxWindow::DoGetPosition(int *x, int *y) const
4bb6408c 1193{
fc7ca9b3
MB
1194 Widget widget = (Widget)
1195 ( m_drawingArea ?
1196 ( m_borderWidget ? m_borderWidget : m_scrolledWindow ) :
1197 GetTopWidget() );
1198
34636400
VZ
1199 Position xx, yy;
1200 XtVaGetValues(widget, XmNx, &xx, XmNy, &yy, NULL);
b59bf2db 1201
34636400
VZ
1202 // We may be faking the client origin. So a window that's really at (0, 30)
1203 // may appear (to wxWin apps) to be at (0, 0).
1204 if (GetParent())
b59bf2db 1205 {
34636400
VZ
1206 wxPoint pt(GetParent()->GetClientAreaOrigin());
1207 xx -= pt.x;
1208 yy -= pt.y;
b59bf2db 1209 }
34636400 1210
fc7ca9b3
MB
1211 if(x) *x = xx;
1212 if(y) *y = yy;
4bb6408c
JS
1213}
1214
af0bb3b1 1215void wxWindow::DoScreenToClient(int *x, int *y) const
4bb6408c 1216{
34636400
VZ
1217 Widget widget = (Widget) GetClientWidget();
1218 Display *display = XtDisplay((Widget) GetMainWidget());
1219 Window rootWindow = RootWindowOfScreen(XtScreen(widget));
1220 Window thisWindow = XtWindow(widget);
1221
1222 Window childWindow;
1223 int xx = *x;
1224 int yy = *y;
1225 XTranslateCoordinates(display, rootWindow, thisWindow, xx, yy, x, y, &childWindow);
4bb6408c
JS
1226}
1227
af0bb3b1 1228void wxWindow::DoClientToScreen(int *x, int *y) const
4bb6408c 1229{
34636400
VZ
1230 Widget widget = (Widget) GetClientWidget();
1231 Display *display = XtDisplay(widget);
1232 Window rootWindow = RootWindowOfScreen(XtScreen(widget));
1233 Window thisWindow = XtWindow(widget);
1234
1235 Window childWindow;
1236 int xx = *x;
1237 int yy = *y;
1238 XTranslateCoordinates(display, thisWindow, rootWindow, xx, yy, x, y, &childWindow);
4bb6408c
JS
1239}
1240
34636400
VZ
1241
1242// Get size *available for subwindows* i.e. excluding menu bar etc.
af0bb3b1 1243void wxWindow::DoGetClientSize(int *x, int *y) const
4fabb575 1244{
34636400
VZ
1245 Widget widget = (Widget) GetClientWidget();
1246 Dimension xx, yy;
1247 XtVaGetValues(widget, XmNwidth, &xx, XmNheight, &yy, NULL);
f6fb552e 1248 if(x) *x = xx; if(y) *y = yy;
4fabb575
JS
1249}
1250
34636400 1251void wxWindow::DoSetSize(int x, int y, int width, int height, int sizeFlags)
37c997b4
MB
1252{
1253 DoSetSizeIntr(x, y, width, height, sizeFlags, FALSE);
1254}
1255
1256void wxWindow::DoSetSizeIntr(int x, int y, int width, int height,
1257 int sizeFlags, bool fromCtor)
4bb6408c 1258{
34636400 1259 // A bit of optimization to help sort out the flickers.
bf5c9d34 1260 int oldX = -1, oldY = -1, oldW = -1, oldH = -1;
37c997b4
MB
1261 if( !fromCtor )
1262 {
1263 GetSize(& oldW, & oldH);
1264 GetPosition(& oldX, & oldY);
1265 }
34636400 1266
9d9b7755
VZ
1267 if ( !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) )
1268 {
1269 if ( x == -1 )
1270 x = oldX;
1271 if ( y == -1 )
1272 y = oldY;
1273 }
34636400 1274
fc7ca9b3 1275 wxSize size(-1, -1);
7e1bcfa8 1276 if ( width <= 0 )
fc7ca9b3 1277 {
66f8b9ac 1278 if ( ( sizeFlags & wxSIZE_AUTO_WIDTH ) && !fromCtor )
fc7ca9b3
MB
1279 {
1280 size = DoGetBestSize();
1281 width = size.x;
1282 }
1283 else
1284 {
1285 width = oldW;
1286 }
1287 }
34636400 1288
fc7ca9b3 1289 if ( height == -1 )
02800301 1290 {
66f8b9ac 1291 if( ( sizeFlags & wxSIZE_AUTO_HEIGHT ) && !fromCtor )
fc7ca9b3
MB
1292 {
1293 if( size.x == -1 ) size = DoGetBestSize();
1294 height = size.y;
1295 }
1296 else
1297 {
1298 height = oldH;
1299 }
34636400
VZ
1300 }
1301
fc7ca9b3
MB
1302 if ( x != oldX || y != oldY || width != oldW || height != oldH
1303 || !wxNoOptimize::CanOptimize() )
34636400 1304 {
9d9b7755
VZ
1305 if (m_drawingArea)
1306 {
fc7ca9b3
MB
1307 int flags = 0;
1308
1309 if (x > -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
1310 flags |= wxMOVE_X;
1311
1312 if (y > -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
1313 flags |= wxMOVE_Y;
1314
1315 if (width > 0)
1316 flags |= wxMOVE_WIDTH;
1317
1318 if (height > 0)
1319 flags |= wxMOVE_HEIGHT;
1320
1321 int xx = x; int yy = y;
1322 AdjustForParentClientOrigin(xx, yy, sizeFlags);
1323 if( !fromCtor )
1324 DoMoveWindow( xx, yy, width, height );
1325 else
1326 DoMoveWindowIntr( xx, yy, width, height, flags );
1327
9d9b7755
VZ
1328 return;
1329 }
34636400 1330
9d9b7755
VZ
1331 Widget widget = (Widget) GetTopWidget();
1332 if (!widget)
1333 return;
34636400 1334
9d9b7755
VZ
1335 bool managed = XtIsManaged( widget );
1336 if (managed)
1337 XtUnmanageChild(widget);
34636400 1338
9d9b7755
VZ
1339 int xx = x;
1340 int yy = y;
1341 AdjustForParentClientOrigin(xx, yy, sizeFlags);
1342
1343 DoMoveWindow(xx, yy, width, height);
34636400 1344
9d9b7755
VZ
1345 if (managed)
1346 XtManageChild(widget);
9d9b7755 1347 }
4bb6408c
JS
1348}
1349
34636400 1350void wxWindow::DoSetClientSize(int width, int height)
4bb6408c 1351{
34636400 1352 if (m_drawingArea)
4bb6408c 1353 {
fc7ca9b3
MB
1354 Widget drawingArea = (Widget) m_drawingArea;
1355
1356 XtVaSetValues(drawingArea, XmNresizePolicy, XmRESIZE_ANY, NULL);
1357
1358 if (width > -1)
1359 XtVaSetValues(drawingArea, XmNwidth, width, NULL);
1360 if (height > -1)
1361 XtVaSetValues(drawingArea, XmNheight, height, NULL);
1362
1363 XtVaSetValues(drawingArea, XmNresizePolicy, XmRESIZE_NONE, NULL);
34636400 1364 return;
4bb6408c 1365 }
34636400
VZ
1366
1367 Widget widget = (Widget) GetTopWidget();
1368
1369 if (width > -1)
1370 XtVaSetValues(widget, XmNwidth, width, NULL);
1371 if (height > -1)
1372 XtVaSetValues(widget, XmNheight, height, NULL);
4bb6408c
JS
1373}
1374
34636400
VZ
1375// For implementation purposes - sometimes decorations make the client area
1376// smaller
1377wxPoint wxWindow::GetClientAreaOrigin() const
02e8b2f9 1378{
34636400 1379 return wxPoint(0, 0);
02e8b2f9
JS
1380}
1381
fc7ca9b3
MB
1382void wxWindow::DoMoveWindowIntr(int xx, int yy, int w, int h,
1383 int flags)
9d9b7755 1384{
37c997b4 1385 if (m_drawingArea)
fc7ca9b3
MB
1386 {
1387 Widget drawingArea = (Widget) m_drawingArea;
1388 Widget borderOrScrolled = m_borderWidget ?
1389 (Widget) m_borderWidget :
1390 (Widget) m_scrolledWindow;
1391
1392 bool managed = XtIsManaged(borderOrScrolled);
fc7ca9b3
MB
1393 if (managed)
1394 XtUnmanageChild (borderOrScrolled);
1395 XtVaSetValues(drawingArea, XmNresizePolicy, XmRESIZE_ANY, NULL);
1396
1397 if (flags & wxMOVE_X)
1398 XtVaSetValues (borderOrScrolled,
1399 XmNx, xx,
1400 NULL);
1401 if (flags & wxMOVE_Y)
1402 XtVaSetValues (borderOrScrolled,
1403 XmNy, yy,
1404 NULL);
1405
1406 if (flags & wxMOVE_WIDTH)
1407 {
1408 if (m_borderWidget)
1409 {
1410 XtVaSetValues ((Widget) m_borderWidget, XmNwidth, w, NULL);
1411 short thick, margin;
1412 XtVaGetValues ((Widget) m_borderWidget,
1413 XmNshadowThickness, &thick,
1414 XmNmarginWidth, &margin,
1415 NULL);
1416 w -= 2 * (thick + margin);
1417 }
37c997b4 1418
88793548 1419 if( w < 1 ) w = 1;
fc7ca9b3
MB
1420 XtVaSetValues ((Widget) m_scrolledWindow, XmNwidth, w, NULL);
1421 }
d9d3622e 1422
fc7ca9b3
MB
1423 if (flags & wxMOVE_HEIGHT)
1424 {
1425 if (m_borderWidget)
1426 {
1427 XtVaSetValues ((Widget) m_borderWidget, XmNheight, h, NULL);
1428 short thick, margin;
1429 XtVaGetValues ((Widget) m_borderWidget,
1430 XmNshadowThickness, &thick,
1431 XmNmarginHeight, &margin,
1432 NULL);
1433 h -= 2 * (thick + margin);
1434 }
1435
88793548 1436 if( h < 1 ) h = 1;
fc7ca9b3
MB
1437 XtVaSetValues ((Widget) m_scrolledWindow, XmNheight, h, NULL);
1438 }
1439
1440 if (managed)
1441 XtManageChild (borderOrScrolled);
1442 XtVaSetValues(drawingArea, XmNresizePolicy, XmRESIZE_NONE, NULL);
1443 }
1444 else
1445 {
1446 if( w < 1 ) w = 1;
1447 if( h < 1 ) h = 1;
1448
1449 XtVaSetValues((Widget)GetTopWidget(),
1450 XmNx, xx,
1451 XmNy, yy,
1452 XmNwidth, w,
1453 XmNheight, h,
1454 NULL);
1455 }
1456}
1457
1458void wxWindow::DoMoveWindow(int x, int y, int width, int height)
1459{
1460 DoMoveWindowIntr (x, y, width, height,
1461 wxMOVE_X|wxMOVE_Y|wxMOVE_WIDTH|wxMOVE_HEIGHT);
9d9b7755
VZ
1462}
1463
34636400
VZ
1464// ---------------------------------------------------------------------------
1465// text metrics
1466// ---------------------------------------------------------------------------
1467
1468int wxWindow::GetCharHeight() const
4bb6408c 1469{
af0bb3b1 1470 wxCHECK_MSG( m_font.Ok(), 0, "valid window font needed" );
34636400 1471
af0bb3b1 1472 WXFontStructPtr pFontStruct = m_font.GetFontStruct(1.0, GetXDisplay());
34636400
VZ
1473
1474 int direction, ascent, descent;
1475 XCharStruct overall;
1476 XTextExtents ((XFontStruct*) pFontStruct, "x", 1, &direction, &ascent,
1477 &descent, &overall);
1478
1479 // return (overall.ascent + overall.descent);
1480 return (ascent + descent);
4bb6408c
JS
1481}
1482
34636400 1483int wxWindow::GetCharWidth() const
4bb6408c 1484{
af0bb3b1 1485 wxCHECK_MSG( m_font.Ok(), 0, "valid window font needed" );
34636400 1486
af0bb3b1 1487 WXFontStructPtr pFontStruct = m_font.GetFontStruct(1.0, GetXDisplay());
34636400
VZ
1488
1489 int direction, ascent, descent;
1490 XCharStruct overall;
1491 XTextExtents ((XFontStruct*) pFontStruct, "x", 1, &direction, &ascent,
1492 &descent, &overall);
1493
1494 return overall.width;
4bb6408c
JS
1495}
1496
34636400
VZ
1497void wxWindow::GetTextExtent(const wxString& string,
1498 int *x, int *y,
1499 int *descent, int *externalLeading,
1500 const wxFont *theFont) const
4bb6408c 1501{
34636400
VZ
1502 wxFont *fontToUse = (wxFont *)theFont;
1503 if (!fontToUse)
af0bb3b1 1504 fontToUse = (wxFont *) & m_font;
34636400 1505
af0bb3b1 1506 wxCHECK_RET( fontToUse->Ok(), "valid window font needed" );
8e877c19 1507
37c997b4 1508 WXFontStructPtr pFontStruct = fontToUse->GetFontStruct(1.0, GetXDisplay());
34636400
VZ
1509
1510 int direction, ascent, descent2;
1511 XCharStruct overall;
8e877c19 1512 int slen = string.Len();
34636400
VZ
1513
1514#if 0
1515 if (use16)
1516 XTextExtents16((XFontStruct*) pFontStruct, (XChar2b *) (char*) (const char*) string, slen, &direction,
1517 &ascent, &descent2, &overall);
1518#endif
1519
1520 XTextExtents((XFontStruct*) pFontStruct, string, slen,
1521 &direction, &ascent, &descent2, &overall);
1522
1523 if ( x )
1524 *x = (overall.width);
1525 if ( y )
1526 *y = (ascent + descent2);
1527 if (descent)
1528 *descent = descent2;
1529 if (externalLeading)
1530 *externalLeading = 0;
8e877c19 1531
4bb6408c
JS
1532}
1533
34636400
VZ
1534// ----------------------------------------------------------------------------
1535// painting
1536// ----------------------------------------------------------------------------
4bb6408c 1537
148b44a1
MB
1538void wxWindow::AddUpdateRect(int x, int y, int w, int h)
1539{
1540 m_updateRegion.Union( x, y, w, h );
1541}
1542
34636400 1543void wxWindow::Refresh(bool eraseBack, const wxRect *rect)
4bb6408c 1544{
34636400
VZ
1545 m_needsRefresh = TRUE;
1546 Display *display = XtDisplay((Widget) GetMainWidget());
1547 Window thisWindow = XtWindow((Widget) GetMainWidget());
1548
1549 XExposeEvent dummyEvent;
1550 int width, height;
1551 GetSize(&width, &height);
1552
1553 dummyEvent.type = Expose;
1554 dummyEvent.display = display;
1555 dummyEvent.send_event = True;
1556 dummyEvent.window = thisWindow;
1557 if (rect)
2d120f83 1558 {
34636400
VZ
1559 dummyEvent.x = rect->x;
1560 dummyEvent.y = rect->y;
1561 dummyEvent.width = rect->width;
1562 dummyEvent.height = rect->height;
2d120f83
JS
1563 }
1564 else
1565 {
34636400
VZ
1566 dummyEvent.x = 0;
1567 dummyEvent.y = 0;
1568 dummyEvent.width = width;
1569 dummyEvent.height = height;
2d120f83 1570 }
34636400 1571 dummyEvent.count = 0;
4bb6408c 1572
34636400 1573 if (eraseBack)
2d120f83 1574 {
34636400
VZ
1575 wxClientDC dc(this);
1576 wxBrush backgroundBrush(GetBackgroundColour(), wxSOLID);
1577 dc.SetBackground(backgroundBrush);
1578 if (rect)
1579 dc.Clear(*rect);
1580 else
1581 dc.Clear();
2d120f83 1582 }
4bb6408c 1583
34636400 1584 XSendEvent(display, thisWindow, False, ExposureMask, (XEvent *)&dummyEvent);
4bb6408c
JS
1585}
1586
34636400 1587void wxWindow::DoPaint()
4bb6408c 1588{
34636400
VZ
1589 //TODO : make a temporary gc so we can do the XCopyArea below
1590 if (m_backingPixmap && !m_needsRefresh)
4bb6408c 1591 {
34636400 1592 wxPaintDC dc(this);
4bb6408c 1593
34636400 1594 GC tempGC = (GC) dc.GetBackingGC();
4bb6408c 1595
34636400 1596 Widget widget = (Widget) GetMainWidget();
4bb6408c 1597
34636400
VZ
1598 int scrollPosX = 0;
1599 int scrollPosY = 0;
4bb6408c 1600
34636400
VZ
1601 // We have to test whether it's a wxScrolledWindow (hack!) because
1602 // otherwise we don't know how many pixels have been scrolled. We might
1603 // solve this in the future by defining virtual wxWindow functions to get
1604 // the scroll position in pixels. Or, each kind of scrolled window has to
77ffb593 1605 // implement backing stores itself, using generic wxWidgets code.
34636400
VZ
1606 wxScrolledWindow* scrolledWindow = wxDynamicCast(this, wxScrolledWindow);
1607 if ( scrolledWindow )
1608 {
1609 int x, y;
1610 scrolledWindow->CalcScrolledPosition(0, 0, &x, &y);
1611
1612 scrollPosX = - x;
1613 scrollPosY = - y;
1614 }
1615
1616 // TODO: This could be optimized further by only copying the areas in the
1617 // current update region.
1618
1619 // Only blit the part visible in the client area. The backing pixmap
1620 // always starts at 0, 0 but we may be looking at only a portion of it.
1621 wxSize clientArea = GetClientSize();
1622 int toBlitX = m_pixmapWidth - scrollPosX;
1623 int toBlitY = m_pixmapHeight - scrollPosY;
1624
1625 // Copy whichever is samller, the amount of pixmap we have to copy,
1626 // or the size of the client area.
1627 toBlitX = wxMin(toBlitX, clientArea.x);
1628 toBlitY = wxMin(toBlitY, clientArea.y);
1629
1630 // Make sure we're not negative
1631 toBlitX = wxMax(0, toBlitX);
1632 toBlitY = wxMax(0, toBlitY);
1633
1634 XCopyArea
1635 (
1636 XtDisplay(widget),
1637 (Pixmap) m_backingPixmap,
1638 XtWindow (widget),
1639 tempGC,
1640 scrollPosX, scrollPosY, // Start at the scroll position
1641 toBlitX, toBlitY, // How much of the pixmap to copy
1642 0, 0 // Destination
1643 );
1644 }
1645 else
4bb6408c 1646 {
fc7ca9b3 1647 wxWindowDC dc(this);
34636400 1648 // Set an erase event first
fc7ca9b3 1649 wxEraseEvent eraseEvent(GetId(), &dc);
34636400
VZ
1650 eraseEvent.SetEventObject(this);
1651 GetEventHandler()->ProcessEvent(eraseEvent);
1652
1653 wxPaintEvent event(GetId());
1654 event.SetEventObject(this);
1655 GetEventHandler()->ProcessEvent(event);
1656
1657 m_needsRefresh = FALSE;
4bb6408c 1658 }
4bb6408c
JS
1659}
1660
34636400
VZ
1661// ----------------------------------------------------------------------------
1662// event handlers
1663// ----------------------------------------------------------------------------
1664
1665// Responds to colour changes: passes event on to children.
1666void wxWindow::OnSysColourChanged(wxSysColourChangedEvent& event)
4bb6408c 1667{
1807c27d 1668 wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
34636400 1669 while ( node )
4bb6408c 1670 {
34636400
VZ
1671 // Only propagate to non-top-level windows
1672 wxWindow *win = node->GetData();
1673 if ( win->GetParent() )
2d120f83 1674 {
34636400
VZ
1675 wxSysColourChangedEvent event2;
1676 event.m_eventObject = win;
1677 win->GetEventHandler()->ProcessEvent(event2);
2d120f83 1678 }
4bb6408c 1679
34636400 1680 node = node->GetNext();
2d120f83 1681 }
4bb6408c
JS
1682}
1683
e39af974 1684void wxWindow::OnInternalIdle()
4bb6408c 1685{
34636400
VZ
1686 // This calls the UI-update mechanism (querying windows for
1687 // menu/toolbar/control state information)
e39af974
JS
1688 if (wxUpdateUIEvent::CanUpdate(this))
1689 UpdateWindowUI(wxUPDATE_UI_FROMIDLE);
4bb6408c
JS
1690}
1691
34636400
VZ
1692// ----------------------------------------------------------------------------
1693// accelerators
1694// ----------------------------------------------------------------------------
4bb6408c 1695
34636400 1696bool wxWindow::ProcessAccelerator(wxKeyEvent& event)
4bb6408c 1697{
7e1bcfa8 1698#if wxUSE_ACCEL
34636400
VZ
1699 if (!m_acceleratorTable.Ok())
1700 return FALSE;
4bb6408c 1701
34636400
VZ
1702 int count = m_acceleratorTable.GetCount();
1703 wxAcceleratorEntry* entries = m_acceleratorTable.GetEntries();
1704 int i;
1705 for (i = 0; i < count; i++)
2d120f83 1706 {
34636400
VZ
1707 wxAcceleratorEntry* entry = & (entries[i]);
1708 if (entry->MatchesEvent(event))
1709 {
f6045f99 1710 // Bingo, we have a match. Now find a control that matches the
2b5f62a0 1711 // entry command id.
4bb6408c 1712
34636400
VZ
1713 // Need to go up to the top of the window hierarchy, since it might
1714 // be e.g. a menu item
1715 wxWindow* parent = this;
1716 while ( parent && !parent->IsTopLevel() )
1717 parent = parent->GetParent();
4bb6408c 1718
34636400
VZ
1719 if (!parent)
1720 return FALSE;
4bb6408c 1721
34636400
VZ
1722 wxFrame* frame = wxDynamicCast(parent, wxFrame);
1723 if ( frame )
1724 {
7e1bcfa8 1725#if wxUSE_MENUS
34636400
VZ
1726 // Try for a menu command
1727 if (frame->GetMenuBar())
1728 {
c71830c3 1729 wxMenuItem* item = frame->GetMenuBar()->FindItem(entry->GetCommand());
34636400
VZ
1730 if (item)
1731 {
1732 wxCommandEvent commandEvent(wxEVT_COMMAND_MENU_SELECTED, entry->GetCommand());
1733 commandEvent.SetEventObject(frame);
4bb6408c 1734
34636400
VZ
1735 // If ProcessEvent returns TRUE (it was handled), then
1736 // the calling code will skip the event handling.
1737 return frame->GetEventHandler()->ProcessEvent(commandEvent);
1738 }
1739 }
7e1bcfa8 1740#endif
34636400 1741 }
3dd4e4e0 1742
34636400
VZ
1743 // Find a child matching the command id
1744 wxWindow* child = parent->FindWindow(entry->GetCommand());
3dd4e4e0 1745
34636400
VZ
1746 // No such child
1747 if (!child)
1748 return FALSE;
3dd4e4e0 1749
34636400
VZ
1750 // Now we process those kinds of windows that we can.
1751 // For now, only buttons.
1752 if ( wxDynamicCast(child, wxButton) )
1753 {
1754 wxCommandEvent commandEvent (wxEVT_COMMAND_BUTTON_CLICKED, child->GetId());
1755 commandEvent.SetEventObject(child);
1756 return child->GetEventHandler()->ProcessEvent(commandEvent);
1757 }
3dd4e4e0 1758
34636400
VZ
1759 return FALSE;
1760 } // matches event
1761 }// for
7e1bcfa8 1762#endif
4bb6408c 1763
34636400
VZ
1764 // We didn't match the key event against an accelerator.
1765 return FALSE;
4bb6408c
JS
1766}
1767
34636400
VZ
1768// ============================================================================
1769// Motif-specific stuff from here on
1770// ============================================================================
1771
1772// ----------------------------------------------------------------------------
77ffb593 1773// function which maintain the global hash table mapping Widgets to wxWidgets
34636400
VZ
1774// ----------------------------------------------------------------------------
1775
1776bool wxAddWindowToTable(Widget w, wxWindow *win)
4bb6408c 1777{
34636400 1778 wxWindow *oldItem = NULL;
33caefb3 1779 if ((oldItem = (wxWindow *)wxWidgetHashTable->Get ((long) w)))
2d120f83 1780 {
34636400
VZ
1781 wxLogDebug("Widget table clash: new widget is %ld, %s",
1782 (long)w, win->GetClassInfo()->GetClassName());
1783 return FALSE;
2d120f83 1784 }
4bb6408c 1785
33caefb3 1786 wxWidgetHashTable->Put((long) w, win);
4bb6408c 1787
1bc822df
MB
1788 wxLogTrace("widget", "Widget 0x%p <-> window %p (%s)",
1789 (WXWidget)w, win, win->GetClassInfo()->GetClassName());
31528cd3 1790
34636400 1791 return TRUE;
4bb6408c
JS
1792}
1793
34636400 1794wxWindow *wxGetWindowFromTable(Widget w)
4bb6408c 1795{
33caefb3 1796 return (wxWindow *)wxWidgetHashTable->Get((long) w);
4bb6408c
JS
1797}
1798
34636400 1799void wxDeleteWindowFromTable(Widget w)
4bb6408c 1800{
fc7ca9b3
MB
1801 wxLogTrace("widget", "Widget 0x%p", (WXWidget)w);
1802
33caefb3 1803 wxWidgetHashTable->Delete((long)w);
4bb6408c
JS
1804}
1805
34636400
VZ
1806// ----------------------------------------------------------------------------
1807// add/remove window from the table
1808// ----------------------------------------------------------------------------
4bb6408c 1809
34636400 1810// Add to hash table, add event handler
af111fc3 1811bool wxWindow::AttachWidget (wxWindow* WXUNUSED(parent), WXWidget mainWidget,
34636400 1812 WXWidget formWidget, int x, int y, int width, int height)
4bb6408c 1813{
34636400 1814 wxAddWindowToTable((Widget) mainWidget, this);
a8680e3e
MB
1815 XtAddEventHandler( (Widget) mainWidget,
1816 ButtonPressMask | ButtonReleaseMask
1817 | PointerMotionMask,
1818 False,
1819 wxPanelItemEventHandler,
1820 (XtPointer) this);
4bb6408c 1821
34636400
VZ
1822 if (!formWidget)
1823 {
1824 XtTranslations ptr;
1825 XtOverrideTranslations ((Widget) mainWidget,
1826 ptr = XtParseTranslationTable ("<Configure>: resize()"));
1827 XtFree ((char *) ptr);
1828 }
4bb6408c 1829
34636400
VZ
1830 // Some widgets have a parent form widget, e.g. wxRadioBox
1831 if (formWidget)
1832 {
1833 if (!wxAddWindowToTable((Widget) formWidget, this))
1834 return FALSE;
4bb6408c 1835
34636400
VZ
1836 XtTranslations ptr;
1837 XtOverrideTranslations ((Widget) formWidget,
1838 ptr = XtParseTranslationTable ("<Configure>: resize()"));
1839 XtFree ((char *) ptr);
1840 }
4bb6408c 1841
34636400
VZ
1842 if (x == -1)
1843 x = 0;
1844 if (y == -1)
1845 y = 0;
1846 SetSize (x, y, width, height);
4bb6408c 1847
34636400 1848 return TRUE;
4bb6408c
JS
1849}
1850
34636400
VZ
1851// Remove event handler, remove from hash table
1852bool wxWindow::DetachWidget(WXWidget widget)
4bb6408c 1853{
a8680e3e
MB
1854 XtRemoveEventHandler( (Widget) widget,
1855 ButtonPressMask | ButtonReleaseMask
1856 | PointerMotionMask,
1857 False,
1858 wxPanelItemEventHandler,
1859 (XtPointer)this);
4bb6408c 1860
34636400 1861 wxDeleteWindowFromTable((Widget) widget);
2d120f83 1862 return TRUE;
4bb6408c
JS
1863}
1864
34636400
VZ
1865// ----------------------------------------------------------------------------
1866// Motif-specific accessors
1867// ----------------------------------------------------------------------------
2d120f83 1868
1807c27d
MB
1869WXWindow wxWindow::GetClientXWindow() const
1870{
1871 Widget wMain = (Widget)GetClientWidget();
1872 if ( wMain )
1873 return (WXWindow) XtWindow(wMain);
1874 else
1875 return (WXWindow) 0;
1876}
1877
34636400 1878// Get the underlying X window
4bb6408c
JS
1879WXWindow wxWindow::GetXWindow() const
1880{
af0bb3b1 1881 Widget wMain = (Widget)GetMainWidget();
34636400
VZ
1882 if ( wMain )
1883 return (WXWindow) XtWindow(wMain);
ad813b00
JS
1884 else
1885 return (WXWindow) 0;
4bb6408c
JS
1886}
1887
34636400 1888// Get the underlying X display
4bb6408c
JS
1889WXDisplay *wxWindow::GetXDisplay() const
1890{
af0bb3b1 1891 Widget wMain = (Widget)GetMainWidget();
34636400
VZ
1892 if ( wMain )
1893 return (WXDisplay*) XtDisplay(wMain);
ad813b00
JS
1894 else
1895 return (WXDisplay*) NULL;
4bb6408c
JS
1896}
1897
1898WXWidget wxWindow::GetMainWidget() const
1899{
50414e24 1900 if (m_drawingArea)
2d120f83 1901 return m_drawingArea;
50414e24 1902 else
2d120f83 1903 return m_mainWidget;
50414e24
JS
1904}
1905
1906WXWidget wxWindow::GetClientWidget() const
1907{
1908 if (m_drawingArea != (WXWidget) 0)
1909 return m_drawingArea;
1910 else
02e8b2f9
JS
1911 return GetMainWidget();
1912}
1913
1914WXWidget wxWindow::GetTopWidget() const
1915{
1916 return GetMainWidget();
4bb6408c
JS
1917}
1918
34636400
VZ
1919WXWidget wxWindow::GetLabelWidget() const
1920{
1921 return GetMainWidget();
1922}
1923
1924// ----------------------------------------------------------------------------
1925// Motif callbacks
1926// ----------------------------------------------------------------------------
1927
1928// All widgets should have this as their resize proc.
1929// OnSize sent to wxWindow via client data.
66f8b9ac
MB
1930void wxWidgetResizeProc(Widget w, XConfigureEvent *WXUNUSED(event),
1931 String WXUNUSED(args)[], int *WXUNUSED(num_args))
34636400
VZ
1932{
1933 wxWindow *win = wxGetWindowFromTable(w);
1934 if (!win)
1935 return;
1936
1937 if (win->PreResize())
1938 {
1939 int width, height;
1940 win->GetSize(&width, &height);
1941 wxSizeEvent sizeEvent(wxSize(width, height), win->GetId());
1942 sizeEvent.SetEventObject(win);
1943 win->GetEventHandler()->ProcessEvent(sizeEvent);
1944 }
1945}
1946
1947static void wxCanvasRepaintProc(Widget drawingArea,
1948 XtPointer clientData,
1949 XmDrawingAreaCallbackStruct * cbs)
50414e24 1950{
34636400 1951 if (!wxGetWindowFromTable(drawingArea))
2d120f83 1952 return;
34636400 1953
50414e24 1954 XEvent * event = cbs->event;
55acd85e 1955 wxWindow * win = (wxWindow *) clientData;
34636400 1956
50414e24
JS
1957 switch (event->type)
1958 {
2d120f83 1959 case Expose:
55acd85e 1960 {
6970c7b9
MB
1961 win->AddUpdateRect(event->xexpose.x, event->xexpose.y,
1962 event->xexpose.width, event->xexpose.height);
148b44a1 1963
55acd85e
JS
1964 if (event -> xexpose.count == 0)
1965 {
a91b47e8 1966 win->DoPaint();
55acd85e
JS
1967 }
1968 break;
1969 }
50414e24 1970 }
50414e24
JS
1971}
1972
1973// Unable to deal with Enter/Leave without a separate EventHandler (Motif 1.1.4)
34636400 1974static void wxCanvasEnterLeave(Widget drawingArea,
af111fc3 1975 XtPointer WXUNUSED(clientData),
34636400 1976 XCrossingEvent * event)
50414e24 1977{
2d120f83
JS
1978 XmDrawingAreaCallbackStruct cbs;
1979 XEvent ev;
34636400 1980
2d120f83 1981 ((XCrossingEvent &) ev) = *event;
34636400 1982
2d120f83
JS
1983 cbs.reason = XmCR_INPUT;
1984 cbs.event = &ev;
34636400
VZ
1985
1986 wxCanvasInputEvent(drawingArea, (XtPointer) NULL, &cbs);
50414e24
JS
1987}
1988
1989// Fix to make it work under Motif 1.0 (!)
da494b40
MB
1990static void wxCanvasMotionEvent (Widget WXUNUSED(drawingArea),
1991 XButtonEvent *WXUNUSED(event))
50414e24 1992{
34636400 1993#if XmVersion <= 1000
2d120f83
JS
1994 XmDrawingAreaCallbackStruct cbs;
1995 XEvent ev;
34636400 1996
2d120f83
JS
1997 ev = *((XEvent *) event);
1998 cbs.reason = XmCR_INPUT;
1999 cbs.event = &ev;
34636400 2000
2d120f83 2001 wxCanvasInputEvent (drawingArea, (XtPointer) NULL, &cbs);
34636400 2002#endif // XmVersion <= 1000
50414e24
JS
2003}
2004
34636400 2005static void wxCanvasInputEvent(Widget drawingArea,
af111fc3 2006 XtPointer WXUNUSED(data),
34636400 2007 XmDrawingAreaCallbackStruct * cbs)
50414e24 2008{
34636400 2009 wxWindow *canvas = wxGetWindowFromTable(drawingArea);
2a23a89d 2010 XEvent* xevent = cbs->event;
34636400 2011
2d120f83 2012 if (canvas==NULL)
34636400
VZ
2013 return;
2014
2d120f83
JS
2015 if (cbs->reason != XmCR_INPUT)
2016 return;
34636400 2017
2a23a89d 2018 switch (xevent->xany.type)
50414e24
JS
2019 {
2020 case EnterNotify:
2021 case LeaveNotify:
2022 case ButtonPress:
2023 case ButtonRelease:
2024 case MotionNotify:
2d120f83 2025 {
2a23a89d
MB
2026 wxMouseEvent wxevent(0);
2027 if (wxTranslateMouseEvent(wxevent, canvas, drawingArea, xevent))
e700df04 2028 {
2a23a89d 2029 canvas->GetEventHandler()->ProcessEvent(wxevent);
e700df04 2030 }
e700df04 2031 break;
2a23a89d 2032 }
50414e24 2033 case KeyPress:
50414e24 2034 {
2b5f62a0 2035 wxKeyEvent event (wxEVT_CHAR);
2a23a89d 2036 if (wxTranslateKeyEvent (event, canvas, (Widget) 0, xevent))
2d120f83
JS
2037 {
2038 // Implement wxFrame::OnCharHook by checking ancestor.
66f8b9ac
MB
2039 wxWindow *parent = canvas;
2040 while (parent && !parent->IsTopLevel())
2d120f83 2041 parent = parent->GetParent();
34636400 2042
2d120f83
JS
2043 if (parent)
2044 {
2045 event.SetEventType(wxEVT_CHAR_HOOK);
2046 if (parent->GetEventHandler()->ProcessEvent(event))
2047 return;
2d120f83 2048 }
a91b47e8
JS
2049
2050 // For simplicity, OnKeyDown is the same as OnChar
2051 // TODO: filter modifier key presses from OnChar
2052 event.SetEventType(wxEVT_KEY_DOWN);
2053
2054 // Only process OnChar if OnKeyDown didn't swallow it
2055 if (!canvas->GetEventHandler()->ProcessEvent (event))
2056 {
66f8b9ac
MB
2057 event.SetEventType(wxEVT_CHAR);
2058 canvas->GetEventHandler()->ProcessEvent (event);
2059 }
2d120f83
JS
2060 }
2061 break;
2062 }
2063 case KeyRelease:
2064 {
2d120f83 2065 wxKeyEvent event (wxEVT_KEY_UP);
2a23a89d 2066 if (wxTranslateKeyEvent (event, canvas, (Widget) 0, xevent))
2d120f83
JS
2067 {
2068 canvas->GetEventHandler()->ProcessEvent (event);
2069 }
2070 break;
50414e24 2071 }
50414e24 2072 case FocusIn:
2d120f83 2073 {
2a23a89d 2074 if (xevent->xfocus.detail != NotifyPointer)
2d120f83
JS
2075 {
2076 wxFocusEvent event(wxEVT_SET_FOCUS, canvas->GetId());
2077 event.SetEventObject(canvas);
2078 canvas->GetEventHandler()->ProcessEvent(event);
2079 }
2080 break;
50414e24 2081 }
50414e24 2082 case FocusOut:
2d120f83 2083 {
2a23a89d 2084 if (xevent->xfocus.detail != NotifyPointer)
2d120f83
JS
2085 {
2086 wxFocusEvent event(wxEVT_KILL_FOCUS, canvas->GetId());
2087 event.SetEventObject(canvas);
2088 canvas->GetEventHandler()->ProcessEvent(event);
2089 }
2090 break;
2091 }
50414e24 2092 default:
2d120f83 2093 break;
50414e24
JS
2094 }
2095}
2096
34636400 2097static void wxPanelItemEventHandler(Widget wid,
af111fc3 2098 XtPointer WXUNUSED(client_data),
34636400
VZ
2099 XEvent* event,
2100 Boolean *continueToDispatch)
50414e24 2101{
34636400 2102 // Widget can be a label or the actual widget.
a91b47e8 2103
af0bb3b1 2104 wxWindow *window = wxGetWindowFromTable(wid);
34636400
VZ
2105 if (window)
2106 {
2107 wxMouseEvent wxevent(0);
2108 if (wxTranslateMouseEvent(wxevent, window, wid, event))
2109 {
2110 window->GetEventHandler()->ProcessEvent(wxevent);
2111 }
2112 }
a91b47e8 2113
34636400
VZ
2114 // TODO: probably the key to allowing default behaviour to happen. Say we
2115 // set a m_doDefault flag to FALSE at the start of this function. Then in
2116 // e.g. wxWindow::OnMouseEvent we can call Default() which sets this flag to
2117 // TRUE, indicating that default processing can happen. Thus, behaviour can
2118 // appear to be overridden just by adding an event handler and not calling
2119 // wxWindow::OnWhatever. ALSO, maybe we can use this instead of the current
2120 // way of handling drawing area events, to simplify things.
2121 *continueToDispatch = True;
2122}
a91b47e8 2123
34636400
VZ
2124static void wxScrollBarCallback(Widget scrollbar,
2125 XtPointer clientData,
311227c3 2126 XmScrollBarCallbackStruct *cbs)
34636400 2127{
34636400 2128 wxWindow *win = wxGetWindowFromTable(scrollbar);
148b44a1 2129 wxOrientation orientation = (wxOrientation)(int)clientData;
a91b47e8 2130
34636400
VZ
2131 wxEventType eventType = wxEVT_NULL;
2132 switch (cbs->reason)
2133 {
2134 case XmCR_INCREMENT:
2135 {
311227c3 2136 eventType = wxEVT_SCROLLWIN_LINEDOWN;
34636400
VZ
2137 break;
2138 }
2139 case XmCR_DECREMENT:
2140 {
311227c3 2141 eventType = wxEVT_SCROLLWIN_LINEUP;
34636400
VZ
2142 break;
2143 }
2144 case XmCR_DRAG:
2145 {
311227c3 2146 eventType = wxEVT_SCROLLWIN_THUMBTRACK;
34636400
VZ
2147 break;
2148 }
2149 case XmCR_VALUE_CHANGED:
2150 {
bdeca1d1 2151 eventType = wxEVT_SCROLLWIN_THUMBRELEASE;
34636400
VZ
2152 break;
2153 }
2154 case XmCR_PAGE_INCREMENT:
2155 {
311227c3 2156 eventType = wxEVT_SCROLLWIN_PAGEDOWN;
34636400
VZ
2157 break;
2158 }
2159 case XmCR_PAGE_DECREMENT:
2160 {
311227c3 2161 eventType = wxEVT_SCROLLWIN_PAGEUP;
34636400
VZ
2162 break;
2163 }
2164 case XmCR_TO_TOP:
2165 {
311227c3 2166 eventType = wxEVT_SCROLLWIN_TOP;
34636400
VZ
2167 break;
2168 }
2169 case XmCR_TO_BOTTOM:
2170 {
311227c3 2171 eventType = wxEVT_SCROLLWIN_BOTTOM;
34636400
VZ
2172 break;
2173 }
2174 default:
2175 {
2176 // Should never get here
2177 wxFAIL_MSG("Unknown scroll event.");
2178 break;
2179 }
2180 }
a91b47e8 2181
311227c3
MB
2182 wxScrollWinEvent event(eventType,
2183 cbs->value,
148b44a1 2184 orientation);
311227c3 2185 event.SetEventObject( win );
34636400
VZ
2186 win->GetEventHandler()->ProcessEvent(event);
2187}
a91b47e8 2188
34636400
VZ
2189// For repainting arbitrary windows
2190void wxUniversalRepaintProc(Widget w, XtPointer WXUNUSED(c_data), XEvent *event, char *)
2191{
2192 Window window;
2193 Display *display;
a91b47e8 2194
34636400
VZ
2195 wxWindow* win = wxGetWindowFromTable(w);
2196 if (!win)
2197 return;
a91b47e8 2198
34636400 2199 switch(event -> type)
50414e24 2200 {
af0bb3b1 2201 case Expose:
34636400
VZ
2202 {
2203 window = (Window) win -> GetXWindow();
2204 display = (Display *) win -> GetXDisplay();
a91b47e8 2205
148b44a1
MB
2206 win->AddUpdateRect(event->xexpose.x, event->xexpose.y,
2207 event->xexpose.width, event->xexpose.height);
2208
34636400
VZ
2209 if (event -> xexpose.count == 0)
2210 {
2211 win->DoPaint();
af0bb3b1
VZ
2212 }
2213
34636400
VZ
2214 break;
2215 }
50414e24
JS
2216 }
2217}
2218
34636400
VZ
2219// ----------------------------------------------------------------------------
2220// TranslateXXXEvent() functions
2221// ----------------------------------------------------------------------------
2222
a8680e3e 2223bool wxTranslateMouseEvent(wxMouseEvent& wxevent, wxWindow *win,
2a23a89d 2224 Widget widget, const XEvent *xevent)
02e8b2f9 2225{
2d120f83
JS
2226 switch (xevent->xany.type)
2227 {
a8680e3e
MB
2228 case EnterNotify:
2229 case LeaveNotify:
2230#if 0
2231 fprintf(stderr, "Widget 0x%p <-> window %p (%s), %s\n",
2232 (WXWidget)widget, win, win->GetClassInfo()->GetClassName(),
2233 (xevent->xany.type == EnterNotify ? "ENTER" : "LEAVE"));
2234#endif
1e8abce5
MB
2235 case ButtonPress:
2236 case ButtonRelease:
2237 case MotionNotify:
02e8b2f9 2238 {
2a23a89d
MB
2239 int eventx = xevent->xbutton.x, eventy = xevent->xbutton.y;
2240
2d120f83 2241 wxEventType eventType = wxEVT_NULL;
34636400 2242
2d120f83
JS
2243 if (xevent->xany.type == LeaveNotify)
2244 {
a8680e3e
MB
2245 eventType = wxEVT_LEAVE_WINDOW;
2246 }
2247 if (xevent->xany.type == EnterNotify)
2248 {
2249 eventType = wxEVT_ENTER_WINDOW;
2d120f83
JS
2250 }
2251 else if (xevent->xany.type == MotionNotify)
2252 {
2253 eventType = wxEVT_MOTION;
2a23a89d
MB
2254
2255 if (xevent->xmotion.is_hint == NotifyHint)
2256 {
2257 Window root, child;
2258 int x_root, y_root;
2259 unsigned int state;
2260 Display *dpy = XtDisplay (widget);
2261
2262 XQueryPointer (dpy, XtWindow (widget),
2263 &root, &child,
2264 &x_root, &y_root, &eventx, &eventy, &state);
2265 }
2d120f83
JS
2266 }
2267 else if (xevent->xany.type == ButtonPress)
2268 {
1e8abce5
MB
2269 wxevent.SetTimestamp(xevent->xbutton.time);
2270 int button = 0;
2d120f83
JS
2271 if (xevent->xbutton.button == Button1)
2272 {
2273 eventType = wxEVT_LEFT_DOWN;
1e8abce5 2274 button = 1;
2d120f83
JS
2275 }
2276 else if (xevent->xbutton.button == Button2)
2277 {
2278 eventType = wxEVT_MIDDLE_DOWN;
1e8abce5 2279 button = 2;
2d120f83
JS
2280 }
2281 else if (xevent->xbutton.button == Button3)
2282 {
2283 eventType = wxEVT_RIGHT_DOWN;
1e8abce5
MB
2284 button = 3;
2285 }
2286
2287 // check for a double click
2288 //
eb6fa4b4 2289 long dclickTime = XtGetMultiClickTime(xevent->xany.display);
1e8abce5
MB
2290 long ts = wxevent.GetTimestamp();
2291
2292 int buttonLast = win->GetLastClickedButton();
2293 long lastTS = win->GetLastClickTime();
a8680e3e
MB
2294 if ( buttonLast && buttonLast == button &&
2295 (ts - lastTS) < dclickTime )
1e8abce5
MB
2296 {
2297 // I have a dclick
2298 win->SetLastClick(0, ts);
205c0389
VZ
2299 if ( eventType == wxEVT_LEFT_DOWN )
2300 eventType = wxEVT_LEFT_DCLICK;
2301 else if ( eventType == wxEVT_MIDDLE_DOWN )
2302 eventType = wxEVT_MIDDLE_DCLICK;
2303 else if ( eventType == wxEVT_RIGHT_DOWN )
2304 eventType = wxEVT_RIGHT_DCLICK;
1e8abce5
MB
2305 }
2306 else
2307 {
2308 // not fast enough or different button
2309 win->SetLastClick(button, ts);
2d120f83
JS
2310 }
2311 }
2312 else if (xevent->xany.type == ButtonRelease)
2313 {
2314 if (xevent->xbutton.button == Button1)
2315 {
2316 eventType = wxEVT_LEFT_UP;
2d120f83
JS
2317 }
2318 else if (xevent->xbutton.button == Button2)
2319 {
2320 eventType = wxEVT_MIDDLE_UP;
2d120f83
JS
2321 }
2322 else if (xevent->xbutton.button == Button3)
2323 {
2324 eventType = wxEVT_RIGHT_UP;
2d120f83 2325 }
a8680e3e
MB
2326 else
2327 return FALSE;
2d120f83 2328 }
af0bb3b1
VZ
2329 else
2330 {
2331 return FALSE;
2332 }
34636400 2333
2d120f83 2334 wxevent.SetEventType(eventType);
34636400 2335
2d120f83
JS
2336 Position x1, y1;
2337 XtVaGetValues(widget, XmNx, &x1, XmNy, &y1, NULL);
34636400 2338
2d120f83
JS
2339 int x2, y2;
2340 win->GetPosition(&x2, &y2);
34636400 2341
77ffb593 2342 // The button x/y must be translated to wxWidgets
2d120f83
JS
2343 // window space - the widget might be a label or button,
2344 // within a form.
2345 int dx = 0;
2346 int dy = 0;
2347 if (widget != (Widget)win->GetMainWidget())
2348 {
2349 dx = x1;
2350 dy = y1;
2351 }
34636400 2352
2a23a89d
MB
2353 wxevent.m_x = eventx + dx;
2354 wxevent.m_y = eventy + dy;
34636400 2355
2d120f83 2356 wxevent.m_leftDown = ((eventType == wxEVT_LEFT_DOWN)
34636400 2357 || (event_left_is_down (xevent)
2d120f83
JS
2358 && (eventType != wxEVT_LEFT_UP)));
2359 wxevent.m_middleDown = ((eventType == wxEVT_MIDDLE_DOWN)
34636400 2360 || (event_middle_is_down (xevent)
2d120f83
JS
2361 && (eventType != wxEVT_MIDDLE_UP)));
2362 wxevent.m_rightDown = ((eventType == wxEVT_RIGHT_DOWN)
34636400 2363 || (event_right_is_down (xevent)
2d120f83 2364 && (eventType != wxEVT_RIGHT_UP)));
34636400 2365
2d120f83
JS
2366 wxevent.m_shiftDown = xevent->xbutton.state & ShiftMask;
2367 wxevent.m_controlDown = xevent->xbutton.state & ControlMask;
1e8abce5
MB
2368 wxevent.m_altDown = xevent->xbutton.state & Mod3Mask;
2369 wxevent.m_metaDown = xevent->xbutton.state & Mod1Mask;
2370
2371 wxevent.SetId(win->GetId());
2372 wxevent.SetEventObject(win);
2373
2d120f83
JS
2374 return TRUE;
2375 }
02e8b2f9 2376 }
2d120f83 2377 return FALSE;
02e8b2f9
JS
2378}
2379
fc7ca9b3 2380bool wxTranslateKeyEvent(wxKeyEvent& wxevent, wxWindow *win,
2a23a89d 2381 Widget WXUNUSED(widget), const XEvent *xevent)
02e8b2f9 2382{
2d120f83
JS
2383 switch (xevent->xany.type)
2384 {
02e8b2f9 2385 case KeyPress:
4a041f2f 2386 case KeyRelease:
2d120f83
JS
2387 {
2388 char buf[20];
34636400 2389
2d120f83 2390 KeySym keySym;
fc7ca9b3 2391 (void) XLookupString((XKeyEvent *)xevent, buf, 20, &keySym, NULL);
2d120f83 2392 int id = wxCharCodeXToWX (keySym);
2b5f62a0
VZ
2393 // id may be WXK_xxx code - these are outside ASCII range, so we
2394 // can't just use toupper() on id
2395 if (id >= 'a' && id <= 'z')
2396 id = toupper(id);
34636400 2397
2d120f83
JS
2398 if (xevent->xkey.state & ShiftMask)
2399 wxevent.m_shiftDown = TRUE;
2400 if (xevent->xkey.state & ControlMask)
2401 wxevent.m_controlDown = TRUE;
2402 if (xevent->xkey.state & Mod3Mask)
2403 wxevent.m_altDown = TRUE;
2404 if (xevent->xkey.state & Mod1Mask)
2405 wxevent.m_metaDown = TRUE;
2406 wxevent.SetEventObject(win);
2407 wxevent.m_keyCode = id;
2408 wxevent.SetTimestamp(xevent->xkey.time);
34636400 2409
2d120f83
JS
2410 wxevent.m_x = xevent->xbutton.x;
2411 wxevent.m_y = xevent->xbutton.y;
34636400 2412
2d120f83
JS
2413 if (id > -1)
2414 return TRUE;
2415 else
2416 return FALSE;
2417 break;
2418 }
02e8b2f9 2419 default:
2d120f83
JS
2420 break;
2421 }
2422 return FALSE;
02e8b2f9
JS
2423}
2424
34636400
VZ
2425// ----------------------------------------------------------------------------
2426// Colour stuff
2427// ----------------------------------------------------------------------------
2428
02e8b2f9 2429#define YAllocColor XAllocColor
0d57be45
JS
2430XColor g_itemColors[5];
2431int wxComputeColours (Display *display, wxColour * back, wxColour * fore)
02e8b2f9 2432{
2d120f83
JS
2433 int result;
2434 static XmColorProc colorProc;
34636400 2435
2d120f83 2436 result = wxNO_COLORS;
34636400 2437
2d120f83 2438 if (back)
02e8b2f9 2439 {
2d120f83
JS
2440 g_itemColors[0].red = (((long) back->Red ()) << 8);
2441 g_itemColors[0].green = (((long) back->Green ()) << 8);
2442 g_itemColors[0].blue = (((long) back->Blue ()) << 8);
2443 g_itemColors[0].flags = DoRed | DoGreen | DoBlue;
2444 if (colorProc == (XmColorProc) NULL)
2445 {
2446 // Get a ptr to the actual function
2447 colorProc = XmSetColorCalculation ((XmColorProc) NULL);
2448 // And set it back to motif.
2449 XmSetColorCalculation (colorProc);
2450 }
2451 (*colorProc) (&g_itemColors[wxBACK_INDEX],
2452 &g_itemColors[wxFORE_INDEX],
2453 &g_itemColors[wxSELE_INDEX],
2454 &g_itemColors[wxTOPS_INDEX],
2455 &g_itemColors[wxBOTS_INDEX]);
2456 result = wxBACK_COLORS;
02e8b2f9 2457 }
2d120f83 2458 if (fore)
02e8b2f9 2459 {
2d120f83
JS
2460 g_itemColors[wxFORE_INDEX].red = (((long) fore->Red ()) << 8);
2461 g_itemColors[wxFORE_INDEX].green = (((long) fore->Green ()) << 8);
2462 g_itemColors[wxFORE_INDEX].blue = (((long) fore->Blue ()) << 8);
2463 g_itemColors[wxFORE_INDEX].flags = DoRed | DoGreen | DoBlue;
2464 if (result == wxNO_COLORS)
2465 result = wxFORE_COLORS;
02e8b2f9 2466 }
34636400 2467
2d120f83
JS
2468 Display *dpy = display;
2469 Colormap cmap = (Colormap) wxTheApp->GetMainColormap((WXDisplay*) dpy);
34636400 2470
2d120f83 2471 if (back)
02e8b2f9 2472 {
2d120f83
JS
2473 /* 5 Colours to allocate */
2474 for (int i = 0; i < 5; i++)
2475 if (!YAllocColor (dpy, cmap, &g_itemColors[i]))
2476 result = wxNO_COLORS;
02e8b2f9 2477 }
2d120f83 2478 else if (fore)
02e8b2f9 2479 {
2d120f83
JS
2480 /* Only 1 colour to allocate */
2481 if (!YAllocColor (dpy, cmap, &g_itemColors[wxFORE_INDEX]))
2482 result = wxNO_COLORS;
02e8b2f9 2483 }
34636400 2484
fc7ca9b3 2485 return result;
02e8b2f9
JS
2486}
2487
34636400
VZ
2488// Changes the foreground and background colours to be derived from the current
2489// background colour. To change the foreground colour, you must call
2490// SetForegroundColour explicitly.
0d57be45 2491void wxWindow::ChangeBackgroundColour()
02e8b2f9 2492{
34636400
VZ
2493 WXWidget mainWidget = GetMainWidget();
2494 if ( mainWidget )
a8680e3e 2495 wxDoChangeBackgroundColour(mainWidget, m_backgroundColour);
0d57be45 2496}
02e8b2f9 2497
0d57be45
JS
2498void wxWindow::ChangeForegroundColour()
2499{
34636400
VZ
2500 WXWidget mainWidget = GetMainWidget();
2501 if ( mainWidget )
a8680e3e 2502 wxDoChangeForegroundColour(mainWidget, m_foregroundColour);
34636400 2503 if ( m_scrolledWindow && mainWidget != m_scrolledWindow )
a8680e3e 2504 wxDoChangeForegroundColour(m_scrolledWindow, m_foregroundColour);
02e8b2f9
JS
2505}
2506
af0bb3b1 2507bool wxWindow::SetBackgroundColour(const wxColour& col)
02e8b2f9 2508{
af0bb3b1
VZ
2509 if ( !wxWindowBase::SetBackgroundColour(col) )
2510 return FALSE;
2511
0d57be45 2512 ChangeBackgroundColour();
af0bb3b1
VZ
2513
2514 return TRUE;
0d57be45
JS
2515}
2516
af0bb3b1 2517bool wxWindow::SetForegroundColour(const wxColour& col)
0d57be45 2518{
af0bb3b1
VZ
2519 if ( !wxWindowBase::SetForegroundColour(col) )
2520 return FALSE;
2521
0d57be45 2522 ChangeForegroundColour();
af0bb3b1
VZ
2523
2524 return TRUE;
0d57be45
JS
2525}
2526
4b5f3fe6 2527void wxWindow::ChangeFont(bool keepOriginalSize)
0d57be45
JS
2528{
2529 // Note that this causes the widget to be resized back
2530 // to its original size! We therefore have to set the size
2531 // back again. TODO: a better way in Motif?
0d57be45 2532 Widget w = (Widget) GetLabelWidget(); // Usually the main widget
af0bb3b1 2533 if (w && m_font.Ok())
0d57be45
JS
2534 {
2535 int width, height, width1, height1;
2536 GetSize(& width, & height);
34636400 2537
e1aae528 2538 wxDoChangeFont( GetLabelWidget(), m_font );
34636400 2539
0d57be45 2540 GetSize(& width1, & height1);
4b5f3fe6 2541 if (keepOriginalSize && (width != width1 || height != height1))
0d57be45
JS
2542 {
2543 SetSize(-1, -1, width, height);
2544 }
2545 }
02e8b2f9 2546}
0d57be45 2547
34636400
VZ
2548// ----------------------------------------------------------------------------
2549// global functions
2550// ----------------------------------------------------------------------------
0d57be45 2551
34636400 2552wxWindow *wxGetActiveWindow()
1f112209
JS
2553{
2554 // TODO
9b8f6fa2 2555 wxFAIL_MSG("Not implemented");
34636400 2556 return NULL;
1f112209
JS
2557}
2558
9806a47c
JS
2559/* static */
2560wxWindow *wxWindowBase::GetCapture()
2561{
2562 return (wxWindow *)g_captureWindow;
2563}
2564
2565
3723b7b1
JS
2566// Find the wxWindow at the current mouse position, returning the mouse
2567// position.
2568wxWindow* wxFindWindowAtPointer(wxPoint& pt)
2569{
57591e0e 2570 return wxFindWindowAtPoint(wxGetMousePosition());
3723b7b1
JS
2571}
2572
2573// Get the current mouse position.
2574wxPoint wxGetMousePosition()
2575{
eb6fa4b4 2576 Display *display = wxGlobalDisplay();
59a12e90
JS
2577 Window rootWindow = RootWindowOfScreen (DefaultScreenOfDisplay(display));
2578 Window rootReturn, childReturn;
2579 int rootX, rootY, winX, winY;
2580 unsigned int maskReturn;
2581
2582 XQueryPointer (display,
2b5f62a0
VZ
2583 rootWindow,
2584 &rootReturn,
59a12e90
JS
2585 &childReturn,
2586 &rootX, &rootY, &winX, &winY, &maskReturn);
2587 return wxPoint(rootX, rootY);
3723b7b1
JS
2588}
2589
9806a47c 2590
34636400
VZ
2591// ----------------------------------------------------------------------------
2592// wxNoOptimize: switch off size optimization
2593// ----------------------------------------------------------------------------
88150e60 2594
af0bb3b1 2595int wxNoOptimize::ms_count = 0;
311227c3 2596