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