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