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