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