1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "window.h"
19 #include "wx/dcclient.h"
23 #include "wx/layout.h"
24 #include "wx/dialog.h"
25 #include "wx/listbox.h"
26 #include "wx/button.h"
27 #include "wx/settings.h"
28 #include "wx/msgdlg.h"
31 #include "wx/menuitem.h"
34 #if wxUSE_DRAG_AND_DROP
40 #include <Xm/DrawingA.h>
41 #include <Xm/ScrolledW.h>
42 #include <Xm/ScrollBar.h>
46 #include "wx/motif/private.h"
50 #define SCROLL_MARGIN 4
51 void wxCanvasRepaintProc (Widget
, XtPointer
, XmDrawingAreaCallbackStruct
* cbs
);
52 void wxCanvasInputEvent (Widget drawingArea
, XtPointer data
, XmDrawingAreaCallbackStruct
* cbs
);
53 void wxCanvasMotionEvent (Widget
, XButtonEvent
* event
);
54 void wxCanvasEnterLeave (Widget drawingArea
, XtPointer clientData
, XCrossingEvent
* event
);
55 static void wxScrollBarCallback(Widget widget
, XtPointer clientData
,
56 XmScaleCallbackStruct
*cbs
);
57 void wxPanelItemEventHandler (Widget wid
,
58 XtPointer client_data
,
60 Boolean
*continueToDispatch
);
62 #define event_left_is_down(x) ((x)->xbutton.state & Button1Mask)
63 #define event_middle_is_down(x) ((x)->xbutton.state & Button2Mask)
64 #define event_right_is_down(x) ((x)->xbutton.state & Button3Mask)
66 extern wxList wxPendingDelete
;
68 #if !USE_SHARED_LIBRARY
69 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxEvtHandler
)
71 BEGIN_EVENT_TABLE(wxWindow
, wxEvtHandler
)
72 EVT_CHAR(wxWindow::OnChar
)
73 EVT_ERASE_BACKGROUND(wxWindow::OnEraseBackground
)
74 EVT_SYS_COLOUR_CHANGED(wxWindow::OnSysColourChanged
)
75 EVT_INIT_DIALOG(wxWindow::OnInitDialog
)
76 EVT_IDLE(wxWindow::OnIdle
)
88 m_windowParent
= NULL
;
89 m_windowEventHandler
= this;
91 m_windowCursor
= *wxSTANDARD_CURSOR
;
92 m_children
= new wxList
;
94 m_constraintsInvolvedIn
= NULL
;
98 m_windowValidator
= NULL
;
101 m_caretWidth
= 0; m_caretHeight
= 0;
102 m_caretEnabled
= FALSE
;
103 m_caretShown
= FALSE
;
104 // m_backgroundColour = wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW) ; ;
105 m_backgroundColour
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
) ;
106 m_foregroundColour
= *wxBLACK
;
108 #if wxUSE_DRAG_AND_DROP
109 m_pDropTarget
= NULL
;
111 m_clientObject
= (wxClientData
*) NULL
;
115 m_mainWidget
= (WXWidget
) 0;
116 m_button1Pressed
= FALSE
;
117 m_button2Pressed
= FALSE
;
118 m_button3Pressed
= FALSE
;
119 m_winCaptured
= FALSE
;
121 m_hScrollBar
= (WXWidget
) 0;
122 m_vScrollBar
= (WXWidget
) 0;
123 m_borderWidget
= (WXWidget
) 0;
124 m_scrolledWindow
= (WXWidget
) 0;
125 m_drawingArea
= (WXWidget
) 0;
128 m_backingPixmap
= (WXPixmap
) 0;
135 m_canAddEventHandler
= FALSE
;
141 wxWindow::~wxWindow()
146 DetachWidget(GetMainWidget()); // Removes event handlers
148 // If m_drawingArea, we're a fully-fledged window with drawing area, scrollbars etc. (what wxCanvas used to be)
151 // Destroy children before destroying self
155 XFreePixmap (XtDisplay ((Widget
) GetMainWidget()), (Pixmap
) m_backingPixmap
);
157 Widget w
= (Widget
) m_drawingArea
;
158 wxDeleteWindowFromTable(w
);
162 m_mainWidget
= (WXWidget
) 0;
164 // Only if we're _really_ a canvas (not a dialog box/panel)
165 if (m_scrolledWindow
)
167 wxDeleteWindowFromTable((Widget
) m_scrolledWindow
);
172 XtUnmanageChild ((Widget
) m_hScrollBar
);
173 XtDestroyWidget ((Widget
) m_hScrollBar
);
177 XtUnmanageChild ((Widget
) m_vScrollBar
);
178 XtDestroyWidget ((Widget
) m_vScrollBar
);
180 if (m_scrolledWindow
)
182 XtUnmanageChild ((Widget
) m_scrolledWindow
);
183 XtDestroyWidget ((Widget
) m_scrolledWindow
);
188 XtDestroyWidget ((Widget
) m_borderWidget
);
189 m_borderWidget
= (WXWidget
) 0;
195 // Have to delete constraints/sizer FIRST otherwise
196 // sizers may try to look at deleted windows as they
197 // delete themselves.
198 #if wxUSE_CONSTRAINTS
199 DeleteRelatedConstraints();
202 // This removes any dangling pointers to this window
203 // in other windows' constraintsInvolvedIn lists.
204 UnsetConstraints(m_constraints
);
205 delete m_constraints
;
206 m_constraints
= NULL
;
210 delete m_windowSizer
;
211 m_windowSizer
= NULL
;
213 // If this is a child of a sizer, remove self from parent
215 m_sizerParent
->RemoveChild((wxWindow
*)this);
219 m_windowParent
->RemoveChild(this);
223 // Destroy the window
226 wxDeleteWindowFromTable((Widget
) GetMainWidget());
227 XtDestroyWidget((Widget
) GetMainWidget());
228 SetMainWidget((WXWidget
) NULL
);
234 // Just in case the window has been Closed, but
235 // we're then deleting immediately: don't leave
236 // dangling pointers.
237 wxPendingDelete
.DeleteObject(this);
239 if ( m_windowValidator
) delete m_windowValidator
;
240 if (m_clientObject
) delete m_clientObject
;
245 // Destroy the window (delayed, if a managed window)
246 bool wxWindow::Destroy()
253 bool wxWindow::Create(wxWindow
*parent
, wxWindowID id
,
257 const wxString
& name
)
262 m_windowParent
= NULL
;
263 m_windowEventHandler
= this;
265 m_windowCursor
= *wxSTANDARD_CURSOR
;
266 m_constraints
= NULL
;
267 m_constraintsInvolvedIn
= NULL
;
268 m_windowSizer
= NULL
;
269 m_sizerParent
= NULL
;
270 m_autoLayout
= FALSE
;
271 m_windowValidator
= NULL
;
272 #if wxUSE_DRAG_AND_DROP
273 m_pDropTarget
= NULL
;
275 m_caretWidth
= 0; m_caretHeight
= 0;
276 m_caretEnabled
= FALSE
;
277 m_caretShown
= FALSE
;
282 m_defaultItem
= NULL
;
283 m_windowParent
= NULL
;
284 m_clientObject
= (wxClientData
*) NULL
;
288 m_canAddEventHandler
= FALSE
;
289 m_mainWidget
= (WXWidget
) 0;
290 m_button1Pressed
= FALSE
;
291 m_button2Pressed
= FALSE
;
292 m_button3Pressed
= FALSE
;
293 m_winCaptured
= FALSE
;
295 m_hScrollBar
= (WXWidget
) 0;
296 m_vScrollBar
= (WXWidget
) 0;
297 m_borderWidget
= (WXWidget
) 0;
298 m_scrolledWindow
= (WXWidget
) 0;
299 m_drawingArea
= (WXWidget
) 0;
302 m_backingPixmap
= (WXPixmap
) 0;
313 if (parent
) parent
->AddChild(this);
320 m_windowId
= (int)NewControlId();
324 // m_backgroundColour = wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW) ; ;
325 m_backgroundColour
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
) ;
326 m_foregroundColour
= *wxBLACK
;
328 m_windowStyle
= style
;
331 m_windowId
= (int)NewControlId();
335 //// TODO: we should probably optimize by only creating a
336 //// a drawing area if we have one or more scrollbars (wxVSCROLL/wxHSCROLL).
337 //// But for now, let's simplify things by always creating the
338 //// drawing area, since otherwise the translations are different.
340 // New translations for getting mouse motion feedback
341 String translations
=
342 "<Btn1Motion>: wxCanvasMotionEvent() DrawingAreaInput() ManagerGadgetButtonMotion()\n\
343 <Btn2Motion>: wxCanvasMotionEvent() DrawingAreaInput() ManagerGadgetButtonMotion()\n\
344 <Btn3Motion>: wxCanvasMotionEvent() DrawingAreaInput() ManagerGadgetButtonMotion()\n\
345 <BtnMotion>: wxCanvasMotionEvent() DrawingAreaInput() ManagerGadgetButtonMotion()\n\
346 <Btn1Down>: DrawingAreaInput() ManagerGadgetArm()\n\
347 <Btn2Down>: DrawingAreaInput() ManagerGadgetArm()\n\
348 <Btn3Down>: DrawingAreaInput() ManagerGadgetArm()\n\
349 <Btn1Up>: DrawingAreaInput() ManagerGadgetActivate()\n\
350 <Btn2Up>: DrawingAreaInput() ManagerGadgetActivate()\n\
351 <Btn3Up>: DrawingAreaInput() ManagerGadgetActivate()\n\
352 <Motion>: wxCanvasMotionEvent() DrawingAreaInput()\n\
353 <EnterWindow>: wxCanvasMotionEvent() DrawingAreaInput()\n\
354 <LeaveWindow>: wxCanvasMotionEvent() DrawingAreaInput()\n\
355 <Key>: DrawingAreaInput()";
357 XtActionsRec actions
[1];
358 actions
[0].string
= "wxCanvasMotionEvent";
359 actions
[0].proc
= (XtActionProc
) wxCanvasMotionEvent
;
360 XtAppAddActions ((XtAppContext
) wxTheApp
->GetAppContext(), actions
, 1);
362 Widget parentWidget
= (Widget
) parent
->GetClientWidget();
363 if (style
& wxBORDER
)
364 m_borderWidget
= (WXWidget
) XtVaCreateManagedWidget ("canvasBorder",
365 xmFrameWidgetClass
, parentWidget
,
366 XmNshadowType
, XmSHADOW_IN
,
369 m_scrolledWindow
= (WXWidget
) XtVaCreateManagedWidget ("scrolledWindow",
370 xmScrolledWindowWidgetClass
, m_borderWidget
? (Widget
) m_borderWidget
: parentWidget
,
372 XmNscrollingPolicy
, XmAPPLICATION_DEFINED
,
376 m_drawingArea
= (WXWidget
) XtVaCreateWidget ((char*) (const char*) name
,
377 xmDrawingAreaWidgetClass
, (Widget
) m_scrolledWindow
,
378 XmNunitType
, XmPIXELS
,
379 // XmNresizePolicy, XmRESIZE_ANY,
380 XmNresizePolicy
, XmRESIZE_NONE
,
383 XmNtranslations
, ptr
= XtParseTranslationTable (translations
),
386 if (GetWindowStyleFlag() & wxOVERRIDE_KEY_TRANSLATIONS)
388 XtFree ((char *) ptr);
389 ptr = XtParseTranslationTable ("<Key>: DrawingAreaInput()");
390 XtOverrideTranslations ((Widget) m_drawingArea, ptr);
391 XtFree ((char *) ptr);
395 wxAddWindowToTable((Widget
) m_drawingArea
, this);
396 wxAddWindowToTable((Widget
) m_scrolledWindow
, this);
399 * This order is very important in Motif 1.2.1
403 XtRealizeWidget ((Widget
) m_scrolledWindow
);
404 XtRealizeWidget ((Widget
) m_drawingArea
);
405 XtManageChild ((Widget
) m_drawingArea
);
407 XtOverrideTranslations ((Widget
) m_drawingArea
,
408 ptr
= XtParseTranslationTable ("<Configure>: resize()"));
409 XtFree ((char *) ptr
);
411 XtAddCallback ((Widget
) m_drawingArea
, XmNexposeCallback
, (XtCallbackProc
) wxCanvasRepaintProc
, (XtPointer
) this);
412 XtAddCallback ((Widget
) m_drawingArea
, XmNinputCallback
, (XtCallbackProc
) wxCanvasInputEvent
, (XtPointer
) this);
415 display = XtDisplay (scrolledWindow);
416 xwindow = XtWindow (drawingArea);
419 XtAddEventHandler ((Widget
) m_drawingArea
, PointerMotionHintMask
| EnterWindowMask
| LeaveWindowMask
| FocusChangeMask
,
420 False
, (XtEventHandler
) wxCanvasEnterLeave
, (XtPointer
) this);
422 // Add scrollbars if required
423 if (m_windowStyle
& wxHSCROLL
)
425 Widget hScrollBar
= XtVaCreateManagedWidget ("hsb",
426 xmScrollBarWidgetClass
, (Widget
) m_scrolledWindow
,
427 XmNorientation
, XmHORIZONTAL
,
429 // XtAddCallback (hScrollBar, XmNvalueChangedCallback, (XtCallbackProc) wxScrollBarCallback, (XtPointer) XmHORIZONTAL);
430 XtAddCallback (hScrollBar
, XmNdragCallback
, (XtCallbackProc
) wxScrollBarCallback
, (XtPointer
) XmHORIZONTAL
);
431 XtAddCallback (hScrollBar
, XmNincrementCallback
, (XtCallbackProc
) wxScrollBarCallback
, (XtPointer
) XmHORIZONTAL
);
432 XtAddCallback (hScrollBar
, XmNdecrementCallback
, (XtCallbackProc
) wxScrollBarCallback
, (XtPointer
) XmHORIZONTAL
);
433 XtAddCallback (hScrollBar
, XmNpageIncrementCallback
, (XtCallbackProc
) wxScrollBarCallback
, (XtPointer
) XmHORIZONTAL
);
434 XtAddCallback (hScrollBar
, XmNpageDecrementCallback
, (XtCallbackProc
) wxScrollBarCallback
, (XtPointer
) XmHORIZONTAL
);
435 XtAddCallback (hScrollBar
, XmNtoTopCallback
, (XtCallbackProc
) wxScrollBarCallback
, (XtPointer
) XmHORIZONTAL
);
436 XtAddCallback (hScrollBar
, XmNtoBottomCallback
, (XtCallbackProc
) wxScrollBarCallback
, (XtPointer
) XmHORIZONTAL
);
438 XtVaSetValues (hScrollBar
,
443 m_hScrollBar
= (WXWidget
) hScrollBar
;
446 if (m_windowStyle
& wxVSCROLL
)
448 Widget vScrollBar
= XtVaCreateManagedWidget ("vsb",
449 xmScrollBarWidgetClass
, (Widget
) m_scrolledWindow
,
450 XmNorientation
, XmVERTICAL
,
452 // XtAddCallback (vScrollBar, XmNvalueChangedCallback, (XtCallbackProc) wxScrollBarCallback, (XtPointer) XmVERTICAL);
453 XtAddCallback (vScrollBar
, XmNdragCallback
, (XtCallbackProc
) wxScrollBarCallback
, (XtPointer
) XmVERTICAL
);
454 XtAddCallback (vScrollBar
, XmNincrementCallback
, (XtCallbackProc
) wxScrollBarCallback
, (XtPointer
) XmVERTICAL
);
455 XtAddCallback (vScrollBar
, XmNdecrementCallback
, (XtCallbackProc
) wxScrollBarCallback
, (XtPointer
) XmVERTICAL
);
456 XtAddCallback (vScrollBar
, XmNpageIncrementCallback
, (XtCallbackProc
) wxScrollBarCallback
, (XtPointer
) XmVERTICAL
);
457 XtAddCallback (vScrollBar
, XmNpageDecrementCallback
, (XtCallbackProc
) wxScrollBarCallback
, (XtPointer
) XmVERTICAL
);
458 XtAddCallback (vScrollBar
, XmNtoTopCallback
, (XtCallbackProc
) wxScrollBarCallback
, (XtPointer
) XmVERTICAL
);
459 XtAddCallback (vScrollBar
, XmNtoBottomCallback
, (XtCallbackProc
) wxScrollBarCallback
, (XtPointer
) XmVERTICAL
);
461 XtVaSetValues (vScrollBar
,
466 m_vScrollBar
= (WXWidget
) vScrollBar
;
470 if (m_hScrollBar
|| m_vScrollBar
)
471 XmScrolledWindowSetAreas ((Widget
) m_scrolledWindow
, (Widget
) m_hScrollBar
, (Widget
) m_vScrollBar
, (Widget
) m_drawingArea
);
474 XtRealizeWidget ((Widget
) m_hScrollBar
);
476 XtRealizeWidget ((Widget
) m_vScrollBar
);
478 // Without this, the cursor may not be restored properly
479 // (e.g. in splitter sample).
480 SetCursor(*wxSTANDARD_CURSOR
);
481 SetSize(pos
.x
, pos
.y
, size
.x
, size
.y
);
486 void wxWindow::SetFocus()
488 XmProcessTraversal((Widget
) GetMainWidget(), XmTRAVERSE_CURRENT
);
489 XmProcessTraversal((Widget
) GetMainWidget(), XmTRAVERSE_CURRENT
);
492 void wxWindow::Enable(bool enable
)
496 XtSetSensitive((Widget
) GetMainWidget(), enable
);
497 XmUpdateDisplay((Widget
) GetMainWidget());
501 void wxWindow::CaptureMouse()
507 XtAddGrab((Widget
) GetMainWidget(), TRUE
, FALSE
);
509 m_winCaptured
= TRUE
;
512 void wxWindow::ReleaseMouse()
518 XtRemoveGrab((Widget
) GetMainWidget());
519 m_winCaptured
= FALSE
;
522 // Push/pop event handler (i.e. allow a chain of event handlers
524 void wxWindow::PushEventHandler(wxEvtHandler
*handler
)
526 handler
->SetNextHandler(GetEventHandler());
527 SetEventHandler(handler
);
530 wxEvtHandler
*wxWindow::PopEventHandler(bool deleteHandler
)
532 if ( GetEventHandler() )
534 wxEvtHandler
*handlerA
= GetEventHandler();
535 wxEvtHandler
*handlerB
= handlerA
->GetNextHandler();
536 handlerA
->SetNextHandler(NULL
);
537 SetEventHandler(handlerB
);
550 #if wxUSE_DRAG_AND_DROP
552 void wxWindow::SetDropTarget(wxDropTarget
*pDropTarget
)
554 if ( m_pDropTarget
!= 0 ) {
555 delete m_pDropTarget
;
558 m_pDropTarget
= pDropTarget
;
559 if ( m_pDropTarget
!= 0 )
567 // Old style file-manager drag&drop
568 void wxWindow::DragAcceptFiles(bool accept
)
574 void wxWindow::GetSize(int *x
, int *y
) const
582 Widget widget
= (Widget
) GetTopWidget();
584 XtVaGetValues(widget
, XmNwidth
, &xx
, XmNheight
, &yy
, NULL
);
588 void wxWindow::GetPosition(int *x
, int *y
) const
592 CanvasGetPosition(x
, y
);
595 Widget widget
= (Widget
) GetTopWidget();
597 XtVaGetValues(widget
, XmNx
, &xx
, XmNy
, &yy
, NULL
);
599 // We may be faking the client origin.
600 // So a window that's really at (0, 30) may appear
601 // (to wxWin apps) to be at (0, 0).
604 wxPoint
pt(GetParent()->GetClientAreaOrigin());
612 void wxWindow::ScreenToClient(int *x
, int *y
) const
614 Widget widget
= (Widget
) GetClientWidget();
615 Display
*display
= XtDisplay((Widget
) GetMainWidget());
616 Window rootWindow
= RootWindowOfScreen(XtScreen(widget
));
617 Window thisWindow
= XtWindow(widget
);
622 XTranslateCoordinates(display
, rootWindow
, thisWindow
, xx
, yy
, x
, y
, &childWindow
);
625 void wxWindow::ClientToScreen(int *x
, int *y
) const
627 Widget widget
= (Widget
) GetClientWidget();
628 Display
*display
= XtDisplay(widget
);
629 Window rootWindow
= RootWindowOfScreen(XtScreen(widget
));
630 Window thisWindow
= XtWindow(widget
);
635 XTranslateCoordinates(display
, thisWindow
, rootWindow
, xx
, yy
, x
, y
, &childWindow
);
638 void wxWindow::SetCursor(const wxCursor
& cursor
)
640 m_windowCursor
= cursor
;
641 if (m_windowCursor
.Ok())
643 WXDisplay
*dpy
= GetXDisplay();
644 WXCursor x_cursor
= ((wxCursor
&)cursor
).GetXCursor(dpy
);
646 Widget w
= (Widget
) GetMainWidget();
647 Window win
= XtWindow(w
);
648 XDefineCursor((Display
*) dpy
, win
, (Cursor
) x_cursor
);
653 // Get size *available for subwindows* i.e. excluding menu bar etc.
654 void wxWindow::GetClientSize(int *x
, int *y
) const
656 Widget widget
= (Widget
) GetClientWidget();
658 XtVaGetValues(widget
, XmNwidth
, &xx
, XmNheight
, &yy
, NULL
);
662 void wxWindow::SetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
664 // A bit of optimization to help sort out the flickers.
665 int oldX
, oldY
, oldW
, oldH
;
666 GetSize(& oldW
, & oldH
);
667 GetPosition(& oldX
, & oldY
);
669 bool useOldPos
= FALSE
;
670 bool useOldSize
= FALSE
;
672 if ((x
== -1) && (x
== -1) && ((sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) == 0))
674 else if (x
== oldX
&& y
== oldY
)
677 if ((width
== -1) && (height
== -1))
679 else if (width
== oldW
&& height
== oldH
)
682 if (useOldPos
&& useOldSize
)
687 CanvasSetSize(x
, y
, width
, height
, sizeFlags
);
690 Widget widget
= (Widget
) GetTopWidget();
694 bool managed
= XtIsManaged( widget
);
696 XtUnmanageChild(widget
);
698 int xx
= x
; int yy
= y
;
699 AdjustForParentClientOrigin(xx
, yy
, sizeFlags
);
703 if (x
> -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
704 XtVaSetValues(widget
, XmNx
, xx
, NULL
);
705 if (y
> -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
706 XtVaSetValues(widget
, XmNy
, yy
, NULL
);
711 XtVaSetValues(widget
, XmNwidth
, width
, NULL
);
713 XtVaSetValues(widget
, XmNheight
, height
, NULL
);
717 XtManageChild(widget
);
719 // How about this bit. Maybe we don't need to generate size events
720 // all the time -- they'll be generated when the window is sized anyway.
722 wxSizeEvent sizeEvent(wxSize(width, height), GetId());
723 sizeEvent.SetEventObject(this);
725 GetEventHandler()->ProcessEvent(sizeEvent);
729 void wxWindow::SetClientSize(int width
, int height
)
733 CanvasSetClientSize(width
, height
);
737 Widget widget
= (Widget
) GetTopWidget();
740 XtVaSetValues(widget
, XmNwidth
, width
, NULL
);
742 XtVaSetValues(widget
, XmNheight
, height
, NULL
);
744 wxSizeEvent
sizeEvent(wxSize(width
, height
), GetId());
745 sizeEvent
.SetEventObject(this);
747 GetEventHandler()->ProcessEvent(sizeEvent
);
750 // For implementation purposes - sometimes decorations make the client area
752 wxPoint
wxWindow::GetClientAreaOrigin() const
754 return wxPoint(0, 0);
757 // Makes an adjustment to the window position (for example, a frame that has
758 // a toolbar that it manages itself).
759 void wxWindow::AdjustForParentClientOrigin(int& x
, int& y
, int sizeFlags
)
761 if (((sizeFlags
& wxSIZE_NO_ADJUSTMENTS
) == 0) && GetParent())
763 wxPoint
pt(GetParent()->GetClientAreaOrigin());
764 x
+= pt
.x
; y
+= pt
.y
;
768 bool wxWindow::Show(bool show
)
772 if (m_borderWidget
|| m_scrolledWindow
)
775 XtMapWidget((Widget
) m_drawingArea
);
776 XtMapWidget(m_borderWidget
? (Widget
) m_borderWidget
: (Widget
) m_scrolledWindow
);
780 WXWidget topWidget
= GetTopWidget();
782 XtMapWidget((Widget
) GetTopWidget());
783 else if (GetMainWidget())
784 XtMapWidget((Widget
) GetMainWidget());
789 if (m_borderWidget
|| m_scrolledWindow
)
792 XtUnmapWidget((Widget
) m_drawingArea
);
793 XtUnmapWidget(m_borderWidget
? (Widget
) m_borderWidget
: (Widget
) m_scrolledWindow
);
798 XtUnmapWidget((Widget
) GetTopWidget());
799 else if (GetMainWidget())
800 XtUnmapWidget((Widget
) GetMainWidget());
805 Window xwin = (Window) GetXWindow();
806 Display *xdisp = (Display*) GetXDisplay();
808 XMapWindow(xdisp, xwin);
810 XUnmapWindow(xdisp, xwin);
818 bool wxWindow::IsShown() const
823 int wxWindow::GetCharHeight() const
825 if (!m_windowFont
.Ok())
828 WXFontStructPtr pFontStruct
= m_windowFont
.GetFontStruct(1.0, GetXDisplay());
830 int direction
, ascent
, descent
;
832 XTextExtents ((XFontStruct
*) pFontStruct
, "x", 1, &direction
, &ascent
,
834 // return (overall.ascent + overall.descent);
835 return (ascent
+ descent
);
838 int wxWindow::GetCharWidth() const
840 if (!m_windowFont
.Ok())
843 WXFontStructPtr pFontStruct
= m_windowFont
.GetFontStruct(1.0, GetXDisplay());
845 int direction
, ascent
, descent
;
847 XTextExtents ((XFontStruct
*) pFontStruct
, "x", 1, &direction
, &ascent
,
849 return overall
.width
;
852 /* Helper function for 16-bit fonts */
853 static int str16len(const char *s
)
857 while (s
[0] && s
[1]) {
865 void wxWindow::GetTextExtent(const wxString
& string
, int *x
, int *y
,
866 int *descent
, int *externalLeading
, const wxFont
*theFont
, bool use16
) const
868 wxFont
*fontToUse
= (wxFont
*)theFont
;
870 fontToUse
= (wxFont
*) & m_windowFont
;
872 if (!fontToUse
->Ok())
875 WXFontStructPtr pFontStruct
= theFont
->GetFontStruct(1.0, GetXDisplay());
877 int direction
, ascent
, descent2
;
881 if (use16
) slen
= str16len(string
); else slen
= strlen(string
);
884 XTextExtents16((XFontStruct
*) pFontStruct
, (XChar2b
*) (char*) (const char*) string
, slen
, &direction
,
885 &ascent
, &descent2
, &overall
);
887 XTextExtents((XFontStruct
*) pFontStruct
, (char*) (const char*) string
, slen
, &direction
,
888 &ascent
, &descent2
, &overall
);
890 *x
= (overall
.width
);
891 *y
= (ascent
+ descent2
);
895 *externalLeading
= 0;
898 void wxWindow::Refresh(bool eraseBack
, const wxRectangle
*rect
)
900 Display
*display
= XtDisplay((Widget
) GetMainWidget());
901 Window thisWindow
= XtWindow((Widget
) GetMainWidget());
903 XExposeEvent dummyEvent
;
905 GetSize(&width
, &height
);
907 dummyEvent
.type
= Expose
;
908 dummyEvent
.display
= display
;
909 dummyEvent
.send_event
= True
;
910 dummyEvent
.window
= thisWindow
;
913 dummyEvent
.x
= rect
->x
;
914 dummyEvent
.y
= rect
->y
;
915 dummyEvent
.width
= rect
->width
;
916 dummyEvent
.height
= rect
->height
;
922 dummyEvent
.width
= width
;
923 dummyEvent
.height
= height
;
925 dummyEvent
.count
= 0;
930 wxBrush
backgroundBrush(GetBackgroundColour(), wxSOLID
);
931 dc
.SetBackground(backgroundBrush
);
935 XSendEvent(display
, thisWindow
, False
, ExposureMask
, (XEvent
*)&dummyEvent
);
938 // Responds to colour changes: passes event on to children.
939 void wxWindow::OnSysColourChanged(wxSysColourChangedEvent
& event
)
941 wxNode
*node
= GetChildren()->First();
944 // Only propagate to non-top-level windows
945 wxWindow
*win
= (wxWindow
*)node
->Data();
946 if ( win
->GetParent() )
948 wxSysColourChangedEvent event2
;
949 event
.m_eventObject
= win
;
950 win
->GetEventHandler()->ProcessEvent(event2
);
957 // This can be called by the app (or wxWindows) to do default processing for the current
958 // event. Save message/event info in wxWindow so they can be used in this function.
959 long wxWindow::Default()
965 void wxWindow::InitDialog()
967 wxInitDialogEvent
event(GetId());
968 event
.SetEventObject( this );
969 GetEventHandler()->ProcessEvent(event
);
972 // Default init dialog behaviour is to transfer data to window
973 void wxWindow::OnInitDialog(wxInitDialogEvent
& event
)
975 TransferDataToWindow();
978 // Caret manipulation
979 void wxWindow::CreateCaret(int w
, int h
)
983 m_caretEnabled
= TRUE
;
986 void wxWindow::CreateCaret(const wxBitmap
*WXUNUSED(bitmap
))
991 void wxWindow::ShowCaret(bool show
)
996 void wxWindow::DestroyCaret()
999 m_caretEnabled
= FALSE
;
1002 void wxWindow::SetCaretPos(int x
, int y
)
1007 void wxWindow::GetCaretPos(int *x
, int *y
) const
1012 wxWindow
*wxGetActiveWindow()
1018 void wxWindow::SetSizeHints(int minW
, int minH
, int maxW
, int maxH
, int incW
, int incH
)
1025 if (!this->IsKindOf(CLASSINFO(wxFrame
)))
1028 wxFrame
*frame
= (wxFrame
*)this;
1029 Widget widget
= (Widget
) frame
->GetShellWidget();
1032 XtVaSetValues(widget
, XmNminWidth
, minW
, NULL
);
1034 XtVaSetValues(widget
, XmNminHeight
, minH
, NULL
);
1036 XtVaSetValues(widget
, XmNmaxWidth
, maxW
, NULL
);
1038 XtVaSetValues(widget
, XmNmaxHeight
, maxH
, NULL
);
1040 XtVaSetValues(widget
, XmNwidthInc
, incW
, NULL
);
1042 XtVaSetValues(widget
, XmNheightInc
, incH
, NULL
);
1045 void wxWindow::Centre(int direction
)
1047 int x
, y
, width
, height
, panel_width
, panel_height
, new_x
, new_y
;
1049 wxWindow
*father
= (wxWindow
*)GetParent();
1053 father
->GetClientSize(&panel_width
, &panel_height
);
1054 GetSize(&width
, &height
);
1055 GetPosition(&x
, &y
);
1060 if (direction
& wxHORIZONTAL
)
1061 new_x
= (int)((panel_width
- width
)/2);
1063 if (direction
& wxVERTICAL
)
1064 new_y
= (int)((panel_height
- height
)/2);
1066 SetSize(new_x
, new_y
, -1, -1);
1070 // Coordinates relative to the window
1071 void wxWindow::WarpPointer (int x
, int y
)
1073 XWarpPointer (XtDisplay((Widget
) GetClientWidget()), None
, XtWindow((Widget
) GetClientWidget()), 0, 0, 0, 0, x
, y
);
1076 void wxWindow::OnEraseBackground(wxEraseEvent
& event
)
1082 int wxWindow::GetScrollPos(int orient
) const
1084 if (orient
== wxHORIZONTAL
)
1085 return m_scrollPosX
;
1087 return m_scrollPosY
;
1089 Widget scrollBar = (Widget) ((orient == wxHORIZONTAL) ? m_hScrollBar : m_vScrollBar);
1093 XtVaGetValues(scrollBar,
1094 XmNvalue, &pos, NULL);
1102 // This now returns the whole range, not just the number
1103 // of positions that we can scroll.
1104 int wxWindow::GetScrollRange(int orient
) const
1106 Widget scrollBar
= (Widget
) ((orient
== wxHORIZONTAL
) ? m_hScrollBar
: m_vScrollBar
);
1110 XtVaGetValues(scrollBar
,
1111 XmNmaximum
, &range
, NULL
);
1118 int wxWindow::GetScrollThumb(int orient
) const
1120 Widget scrollBar
= (Widget
) ((orient
== wxHORIZONTAL
) ? m_hScrollBar
: m_vScrollBar
);
1124 XtVaGetValues(scrollBar
,
1125 XmNsliderSize
, &thumb
, NULL
);
1132 void wxWindow::SetScrollPos(int orient
, int pos
, bool WXUNUSED(refresh
))
1134 Widget scrollBar
= (Widget
) ((orient
== wxHORIZONTAL
) ? m_hScrollBar
: m_vScrollBar
);
1137 XtVaSetValues (scrollBar
,
1141 if (orient
== wxHORIZONTAL
)
1148 // New function that will replace some of the above.
1149 void wxWindow::SetScrollbar(int orient
, int pos
, int thumbVisible
,
1150 int range
, bool WXUNUSED(refresh
))
1152 Widget scrollBar
= (Widget
) ((orient
== wxHORIZONTAL
) ? m_hScrollBar
: m_vScrollBar
);
1158 if (thumbVisible
== 0)
1161 XtVaSetValues(scrollBar
,
1165 XmNsliderSize
, thumbVisible
,
1168 if (orient
== wxHORIZONTAL
)
1174 // Does a physical scroll
1175 void wxWindow::ScrollWindow(int dx
, int dy
, const wxRectangle
*rect
)
1177 // cerr << "Scrolling. delta = " << dx << ", " << dy << endl;
1181 // Use specified rectangle
1182 x
= rect
->x
; y
= rect
->y
; w
= rect
->width
; h
= rect
->height
;
1186 // Use whole client area
1188 GetClientSize(& w
, & h
);
1191 int x1
= (dx
>= 0) ? x
: x
- dx
;
1192 int y1
= (dy
>= 0) ? y
: y
- dy
;
1193 int w1
= w
- abs(dx
);
1194 int h1
= h
- abs(dy
);
1195 int x2
= (dx
>= 0) ? x
+ dx
: x
;
1196 int y2
= (dy
>= 0) ? y
+ dy
: y
;
1198 wxClientDC
dc(this);
1200 dc
.SetLogicalFunction (wxCOPY
);
1202 Widget widget
= (Widget
) GetMainWidget();
1203 Window window
= XtWindow(widget
);
1204 Display
* display
= XtDisplay(widget
);
1206 XCopyArea(display
, window
,
1207 window
, (GC
) dc
.GetGC(),
1212 dc
.SetAutoSetting(TRUE
);
1213 wxBrush
brush(GetBackgroundColour(), wxSOLID
);
1214 dc
.SetBrush(brush
); // ??
1216 // We'll add rectangles to the list of update rectangles
1217 // according to which bits we've exposed.
1222 wxRect
*rect
= new wxRect
;
1228 XFillRectangle(display
, window
,
1229 (GC
) dc
.GetGC(), rect
->x
, rect
->y
, rect
->width
, rect
->height
);
1233 rect
->width
= rect
->width
;
1234 rect
->height
= rect
->height
;
1236 updateRects
.Append((wxObject
*) rect
);
1240 wxRect
*rect
= new wxRect
;
1242 rect
->x
= x
+ w
+ dx
;
1247 XFillRectangle(display
, window
,
1248 (GC
) dc
.GetGC(), rect
->x
, rect
->y
, rect
->width
,
1253 rect
->width
= rect
->width
;
1254 rect
->height
= rect
->height
;
1256 updateRects
.Append((wxObject
*) rect
);
1260 wxRect
*rect
= new wxRect
;
1267 XFillRectangle(display
, window
,
1268 (GC
) dc
.GetGC(), rect
->x
, rect
->y
, rect
->width
, rect
->height
);
1272 rect
->width
= rect
->width
;
1273 rect
->height
= rect
->height
;
1275 updateRects
.Append((wxObject
*) rect
);
1279 wxRect
*rect
= new wxRect
;
1282 rect
->y
= y
+ h
+ dy
;
1286 XFillRectangle(display
, window
,
1287 (GC
) dc
.GetGC(), rect
->x
, rect
->y
, rect
->width
, rect
->height
);
1291 rect
->width
= rect
->width
;
1292 rect
->height
= rect
->height
;
1294 updateRects
.Append((wxObject
*) rect
);
1296 dc
.SetBrush(wxNullBrush
);
1298 // Now send expose events
1300 wxNode
* node
= updateRects
.First();
1303 wxRect
* rect
= (wxRect
*) node
->Data();
1306 event
.type
= Expose
;
1307 event
.display
= display
;
1308 event
.send_event
= True
;
1309 event
.window
= window
;
1313 event
.width
= rect
->width
;
1314 event
.height
= rect
->height
;
1318 XSendEvent(display
, window
, False
, ExposureMask
, (XEvent
*)&event
);
1320 node
= node
->Next();
1324 // Delete the update rects
1325 node
= updateRects
.First();
1328 wxRect
* rect
= (wxRect
*) node
->Data();
1330 node
= node
->Next();
1335 void wxWindow::OnChar(wxKeyEvent
& event
)
1337 if ( event
.KeyCode() == WXK_TAB
) {
1338 // propagate the TABs to the parent - it's up to it to decide what
1340 if ( GetParent() ) {
1341 if ( GetParent()->ProcessEvent(event
) )
1347 void wxWindow::OnPaint(wxPaintEvent
& event
)
1352 bool wxWindow::IsEnabled() const
1354 // TODO. Is this right?
1355 // return XtGetSensitive((Widget) GetMainWidget());
1359 // Dialog support: override these and call
1360 // base class members to add functionality
1361 // that can't be done using validators.
1362 // NOTE: these functions assume that controls
1363 // are direct children of this window, not grandchildren
1364 // or other levels of descendant.
1366 // Transfer values to controls. If returns FALSE,
1367 // it's an application error (pops up a dialog)
1368 bool wxWindow::TransferDataToWindow()
1370 wxNode
*node
= GetChildren()->First();
1373 wxWindow
*child
= (wxWindow
*)node
->Data();
1374 if ( child
->GetValidator() &&
1375 !child
->GetValidator()->TransferToWindow() )
1377 wxMessageBox("Application Error", "Could not transfer data to window", wxOK
|wxICON_EXCLAMATION
);
1381 node
= node
->Next();
1386 // Transfer values from controls. If returns FALSE,
1387 // validation failed: don't quit
1388 bool wxWindow::TransferDataFromWindow()
1390 wxNode
*node
= GetChildren()->First();
1393 wxWindow
*child
= (wxWindow
*)node
->Data();
1394 if ( child
->GetValidator() && !child
->GetValidator()->TransferFromWindow() )
1399 node
= node
->Next();
1404 bool wxWindow::Validate()
1406 wxNode
*node
= GetChildren()->First();
1409 wxWindow
*child
= (wxWindow
*)node
->Data();
1410 if ( child
->GetValidator() && /* child->GetValidator()->Ok() && */ !child
->GetValidator()->Validate(this) )
1415 node
= node
->Next();
1420 // Get the window with the focus
1421 wxWindow
*wxWindow::FindFocus()
1427 void wxWindow::AddChild(wxWindow
*child
)
1429 GetChildren()->Append(child
);
1430 child
->m_windowParent
= this;
1433 void wxWindow::RemoveChild(wxWindow
*child
)
1436 GetChildren()->DeleteObject(child
);
1437 child
->m_windowParent
= NULL
;
1440 // Reparents this window to have the new parent.
1441 bool wxWindow::Reparent(wxWindow
* WXUNUSED(parent
))
1443 // For now, we indicate that this isn't implemented.
1447 void wxWindow::DestroyChildren()
1451 wxNode
*node
= GetChildren()->First();
1454 wxNode
* next
= node
->Next();
1455 wxWindow
* child
= (wxWindow
*) node
->Data();
1459 GetChildren()->Clear();
1462 while ((node
= GetChildren()->First()) != (wxNode
*)NULL
) {
1464 if ((child
= (wxWindow
*)node
->Data()) != (wxWindow
*)NULL
) {
1466 if ( GetChildren()->Member(child
) )
1474 void wxWindow::MakeModal(bool modal
)
1476 // Disable all other windows
1477 if (this->IsKindOf(CLASSINFO(wxDialog
)) || this->IsKindOf(CLASSINFO(wxFrame
)))
1479 wxNode
*node
= wxTopLevelWindows
.First();
1482 wxWindow
*win
= (wxWindow
*)node
->Data();
1484 win
->Enable(!modal
);
1486 node
= node
->Next();
1491 // If nothing defined for this, try the parent.
1492 // E.g. we may be a button loaded from a resource, with no callback function
1494 void wxWindow::OnCommand(wxWindow
& win
, wxCommandEvent
& event
)
1496 if (GetEventHandler()->ProcessEvent(event
) )
1499 m_windowParent
->GetEventHandler()->OnCommand(win
, event
);
1502 void wxWindow::SetConstraints(wxLayoutConstraints
*c
)
1506 UnsetConstraints(m_constraints
);
1507 delete m_constraints
;
1512 // Make sure other windows know they're part of a 'meaningful relationship'
1513 if (m_constraints
->left
.GetOtherWindow() && (m_constraints
->left
.GetOtherWindow() != this))
1514 m_constraints
->left
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
1515 if (m_constraints
->top
.GetOtherWindow() && (m_constraints
->top
.GetOtherWindow() != this))
1516 m_constraints
->top
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
1517 if (m_constraints
->right
.GetOtherWindow() && (m_constraints
->right
.GetOtherWindow() != this))
1518 m_constraints
->right
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
1519 if (m_constraints
->bottom
.GetOtherWindow() && (m_constraints
->bottom
.GetOtherWindow() != this))
1520 m_constraints
->bottom
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
1521 if (m_constraints
->width
.GetOtherWindow() && (m_constraints
->width
.GetOtherWindow() != this))
1522 m_constraints
->width
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
1523 if (m_constraints
->height
.GetOtherWindow() && (m_constraints
->height
.GetOtherWindow() != this))
1524 m_constraints
->height
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
1525 if (m_constraints
->centreX
.GetOtherWindow() && (m_constraints
->centreX
.GetOtherWindow() != this))
1526 m_constraints
->centreX
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
1527 if (m_constraints
->centreY
.GetOtherWindow() && (m_constraints
->centreY
.GetOtherWindow() != this))
1528 m_constraints
->centreY
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
1532 // This removes any dangling pointers to this window
1533 // in other windows' constraintsInvolvedIn lists.
1534 void wxWindow::UnsetConstraints(wxLayoutConstraints
*c
)
1538 if (c
->left
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this))
1539 c
->left
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
1540 if (c
->top
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this))
1541 c
->top
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
1542 if (c
->right
.GetOtherWindow() && (c
->right
.GetOtherWindow() != this))
1543 c
->right
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
1544 if (c
->bottom
.GetOtherWindow() && (c
->bottom
.GetOtherWindow() != this))
1545 c
->bottom
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
1546 if (c
->width
.GetOtherWindow() && (c
->width
.GetOtherWindow() != this))
1547 c
->width
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
1548 if (c
->height
.GetOtherWindow() && (c
->height
.GetOtherWindow() != this))
1549 c
->height
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
1550 if (c
->centreX
.GetOtherWindow() && (c
->centreX
.GetOtherWindow() != this))
1551 c
->centreX
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
1552 if (c
->centreY
.GetOtherWindow() && (c
->centreY
.GetOtherWindow() != this))
1553 c
->centreY
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
1557 // Back-pointer to other windows we're involved with, so if we delete
1558 // this window, we must delete any constraints we're involved with.
1559 void wxWindow::AddConstraintReference(wxWindow
*otherWin
)
1561 if (!m_constraintsInvolvedIn
)
1562 m_constraintsInvolvedIn
= new wxList
;
1563 if (!m_constraintsInvolvedIn
->Member(otherWin
))
1564 m_constraintsInvolvedIn
->Append(otherWin
);
1567 // REMOVE back-pointer to other windows we're involved with.
1568 void wxWindow::RemoveConstraintReference(wxWindow
*otherWin
)
1570 if (m_constraintsInvolvedIn
)
1571 m_constraintsInvolvedIn
->DeleteObject(otherWin
);
1574 // Reset any constraints that mention this window
1575 void wxWindow::DeleteRelatedConstraints()
1577 if (m_constraintsInvolvedIn
)
1579 wxNode
*node
= m_constraintsInvolvedIn
->First();
1582 wxWindow
*win
= (wxWindow
*)node
->Data();
1583 wxNode
*next
= node
->Next();
1584 wxLayoutConstraints
*constr
= win
->GetConstraints();
1586 // Reset any constraints involving this window
1589 constr
->left
.ResetIfWin((wxWindow
*)this);
1590 constr
->top
.ResetIfWin((wxWindow
*)this);
1591 constr
->right
.ResetIfWin((wxWindow
*)this);
1592 constr
->bottom
.ResetIfWin((wxWindow
*)this);
1593 constr
->width
.ResetIfWin((wxWindow
*)this);
1594 constr
->height
.ResetIfWin((wxWindow
*)this);
1595 constr
->centreX
.ResetIfWin((wxWindow
*)this);
1596 constr
->centreY
.ResetIfWin((wxWindow
*)this);
1601 delete m_constraintsInvolvedIn
;
1602 m_constraintsInvolvedIn
= NULL
;
1606 void wxWindow::SetSizer(wxSizer
*sizer
)
1608 m_windowSizer
= sizer
;
1610 sizer
->SetSizerParent((wxWindow
*)this);
1617 bool wxWindow::Layout()
1619 if (GetConstraints())
1622 GetClientSize(&w
, &h
);
1623 GetConstraints()->width
.SetValue(w
);
1624 GetConstraints()->height
.SetValue(h
);
1627 // If top level (one sizer), evaluate the sizer's constraints.
1631 GetSizer()->ResetConstraints(); // Mark all constraints as unevaluated
1632 GetSizer()->LayoutPhase1(&noChanges
);
1633 GetSizer()->LayoutPhase2(&noChanges
);
1634 GetSizer()->SetConstraintSizes(); // Recursively set the real window sizes
1639 // Otherwise, evaluate child constraints
1640 ResetConstraints(); // Mark all constraints as unevaluated
1641 DoPhase(1); // Just one phase need if no sizers involved
1643 SetConstraintSizes(); // Recursively set the real window sizes
1649 // Do a phase of evaluating constraints:
1650 // the default behaviour. wxSizers may do a similar
1651 // thing, but also impose their own 'constraints'
1652 // and order the evaluation differently.
1653 bool wxWindow::LayoutPhase1(int *noChanges
)
1655 wxLayoutConstraints
*constr
= GetConstraints();
1658 return constr
->SatisfyConstraints((wxWindow
*)this, noChanges
);
1664 bool wxWindow::LayoutPhase2(int *noChanges
)
1674 // Do a phase of evaluating child constraints
1675 bool wxWindow::DoPhase(int phase
)
1677 int noIterations
= 0;
1678 int maxIterations
= 500;
1682 while ((noChanges
> 0) && (noIterations
< maxIterations
))
1686 wxNode
*node
= GetChildren()->First();
1689 wxWindow
*child
= (wxWindow
*)node
->Data();
1690 if (!child
->IsKindOf(CLASSINFO(wxFrame
)) && !child
->IsKindOf(CLASSINFO(wxDialog
)))
1692 wxLayoutConstraints
*constr
= child
->GetConstraints();
1695 if (succeeded
.Member(child
))
1700 int tempNoChanges
= 0;
1701 bool success
= ( (phase
== 1) ? child
->LayoutPhase1(&tempNoChanges
) : child
->LayoutPhase2(&tempNoChanges
) ) ;
1702 noChanges
+= tempNoChanges
;
1705 succeeded
.Append(child
);
1710 node
= node
->Next();
1717 void wxWindow::ResetConstraints()
1719 wxLayoutConstraints
*constr
= GetConstraints();
1722 constr
->left
.SetDone(FALSE
);
1723 constr
->top
.SetDone(FALSE
);
1724 constr
->right
.SetDone(FALSE
);
1725 constr
->bottom
.SetDone(FALSE
);
1726 constr
->width
.SetDone(FALSE
);
1727 constr
->height
.SetDone(FALSE
);
1728 constr
->centreX
.SetDone(FALSE
);
1729 constr
->centreY
.SetDone(FALSE
);
1731 wxNode
*node
= GetChildren()->First();
1734 wxWindow
*win
= (wxWindow
*)node
->Data();
1735 if (!win
->IsKindOf(CLASSINFO(wxFrame
)) && !win
->IsKindOf(CLASSINFO(wxDialog
)))
1736 win
->ResetConstraints();
1737 node
= node
->Next();
1741 // Need to distinguish between setting the 'fake' size for
1742 // windows and sizers, and setting the real values.
1743 void wxWindow::SetConstraintSizes(bool recurse
)
1745 wxLayoutConstraints
*constr
= GetConstraints();
1746 if (constr
&& constr
->left
.GetDone() && constr
->right
.GetDone() &&
1747 constr
->width
.GetDone() && constr
->height
.GetDone())
1749 int x
= constr
->left
.GetValue();
1750 int y
= constr
->top
.GetValue();
1751 int w
= constr
->width
.GetValue();
1752 int h
= constr
->height
.GetValue();
1754 // If we don't want to resize this window, just move it...
1755 if ((constr
->width
.GetRelationship() != wxAsIs
) ||
1756 (constr
->height
.GetRelationship() != wxAsIs
))
1758 // Calls Layout() recursively. AAAGH. How can we stop that.
1759 // Simply take Layout() out of non-top level OnSizes.
1760 SizerSetSize(x
, y
, w
, h
);
1769 char *windowClass
= this->GetClassInfo()->GetClassName();
1772 if (GetName() == "")
1773 winName
= "unnamed";
1775 winName
= GetName();
1776 wxDebugMsg("Constraint(s) not satisfied for window of type %s, name %s:\n", (const char *)windowClass
, (const char *)winName
);
1777 if (!constr
->left
.GetDone())
1778 wxDebugMsg(" unsatisfied 'left' constraint.\n");
1779 if (!constr
->right
.GetDone())
1780 wxDebugMsg(" unsatisfied 'right' constraint.\n");
1781 if (!constr
->width
.GetDone())
1782 wxDebugMsg(" unsatisfied 'width' constraint.\n");
1783 if (!constr
->height
.GetDone())
1784 wxDebugMsg(" unsatisfied 'height' constraint.\n");
1785 wxDebugMsg("Please check constraints: try adding AsIs() constraints.\n");
1790 wxNode
*node
= GetChildren()->First();
1793 wxWindow
*win
= (wxWindow
*)node
->Data();
1794 if (!win
->IsKindOf(CLASSINFO(wxFrame
)) && !win
->IsKindOf(CLASSINFO(wxDialog
)))
1795 win
->SetConstraintSizes();
1796 node
= node
->Next();
1801 // This assumes that all sizers are 'on' the same
1802 // window, i.e. the parent of this window.
1803 void wxWindow::TransformSizerToActual(int *x
, int *y
) const
1805 if (!m_sizerParent
|| m_sizerParent
->IsKindOf(CLASSINFO(wxDialog
)) ||
1806 m_sizerParent
->IsKindOf(CLASSINFO(wxFrame
)) )
1810 m_sizerParent
->GetPosition(&xp
, &yp
);
1811 m_sizerParent
->TransformSizerToActual(&xp
, &yp
);
1816 void wxWindow::SizerSetSize(int x
, int y
, int w
, int h
)
1820 TransformSizerToActual(&xx
, &yy
);
1821 SetSize(xx
, yy
, w
, h
);
1824 void wxWindow::SizerMove(int x
, int y
)
1828 TransformSizerToActual(&xx
, &yy
);
1832 // Only set the size/position of the constraint (if any)
1833 void wxWindow::SetSizeConstraint(int x
, int y
, int w
, int h
)
1835 wxLayoutConstraints
*constr
= GetConstraints();
1840 constr
->left
.SetValue(x
);
1841 constr
->left
.SetDone(TRUE
);
1845 constr
->top
.SetValue(y
);
1846 constr
->top
.SetDone(TRUE
);
1850 constr
->width
.SetValue(w
);
1851 constr
->width
.SetDone(TRUE
);
1855 constr
->height
.SetValue(h
);
1856 constr
->height
.SetDone(TRUE
);
1861 void wxWindow::MoveConstraint(int x
, int y
)
1863 wxLayoutConstraints
*constr
= GetConstraints();
1868 constr
->left
.SetValue(x
);
1869 constr
->left
.SetDone(TRUE
);
1873 constr
->top
.SetValue(y
);
1874 constr
->top
.SetDone(TRUE
);
1879 void wxWindow::GetSizeConstraint(int *w
, int *h
) const
1881 wxLayoutConstraints
*constr
= GetConstraints();
1884 *w
= constr
->width
.GetValue();
1885 *h
= constr
->height
.GetValue();
1891 void wxWindow::GetClientSizeConstraint(int *w
, int *h
) const
1893 wxLayoutConstraints
*constr
= GetConstraints();
1896 *w
= constr
->width
.GetValue();
1897 *h
= constr
->height
.GetValue();
1900 GetClientSize(w
, h
);
1903 void wxWindow::GetPositionConstraint(int *x
, int *y
) const
1905 wxLayoutConstraints
*constr
= GetConstraints();
1908 *x
= constr
->left
.GetValue();
1909 *y
= constr
->top
.GetValue();
1915 bool wxWindow::Close(bool force
)
1917 wxCloseEvent
event(wxEVT_CLOSE_WINDOW
, m_windowId
);
1918 event
.SetEventObject(this);
1919 event
.SetForce(force
);
1921 return GetEventHandler()->ProcessEvent(event
);
1924 wxObject
* wxWindow::GetChild(int number
) const
1926 // Return a pointer to the Nth object in the window
1929 wxNode
*node
= GetChildren()->First();
1932 node
= node
->Next() ;
1935 wxObject
*obj
= (wxObject
*)node
->Data();
1942 void wxWindow::OnDefaultAction(wxControl
*initiatingItem
)
1944 // Obsolete function
1947 void wxWindow::Clear()
1949 wxClientDC
dc(this);
1950 wxBrush
brush(GetBackgroundColour(), wxSOLID
);
1951 dc
.SetBackground(brush
);
1955 // Fits the panel around the items
1956 void wxWindow::Fit()
1960 wxNode
*node
= GetChildren()->First();
1963 wxWindow
*win
= (wxWindow
*)node
->Data();
1965 win
->GetPosition(&wx
, &wy
);
1966 win
->GetSize(&ww
, &wh
);
1967 if ( wx
+ ww
> maxX
)
1969 if ( wy
+ wh
> maxY
)
1972 node
= node
->Next();
1974 SetClientSize(maxX
+ 5, maxY
+ 5);
1977 void wxWindow::SetValidator(const wxValidator
& validator
)
1979 if ( m_windowValidator
)
1980 delete m_windowValidator
;
1981 m_windowValidator
= validator
.Clone();
1983 if ( m_windowValidator
)
1984 m_windowValidator
->SetWindow(this) ;
1987 void wxWindow::SetClientObject( wxClientData
*data
)
1989 if (m_clientObject
) delete m_clientObject
;
1990 m_clientObject
= data
;
1993 wxClientData
*wxWindow::GetClientObject()
1995 return m_clientObject
;
1998 void wxWindow::SetClientData( void *data
)
2000 m_clientData
= data
;
2003 void *wxWindow::GetClientData()
2005 return m_clientData
;
2008 // Find a window by id or name
2009 wxWindow
*wxWindow::FindWindow(long id
)
2014 wxNode
*node
= GetChildren()->First();
2017 wxWindow
*child
= (wxWindow
*)node
->Data();
2018 wxWindow
*found
= child
->FindWindow(id
);
2021 node
= node
->Next();
2026 wxWindow
*wxWindow::FindWindow(const wxString
& name
)
2028 if ( GetName() == name
)
2031 wxNode
*node
= GetChildren()->First();
2034 wxWindow
*child
= (wxWindow
*)node
->Data();
2035 wxWindow
*found
= child
->FindWindow(name
);
2038 node
= node
->Next();
2043 void wxWindow::OnIdle(wxIdleEvent
& event
)
2045 // This calls the UI-update mechanism (querying windows for
2046 // menu/toolbar/control state information)
2050 // Raise the window to the top of the Z order
2051 void wxWindow::Raise()
2053 Window window
= XtWindow((Widget
) GetTopWidget());
2054 XRaiseWindow(XtDisplay((Widget
) GetTopWidget()), window
);
2057 // Lower the window to the bottom of the Z order
2058 void wxWindow::Lower()
2060 Window window
= XtWindow((Widget
) GetTopWidget());
2061 XLowerWindow(XtDisplay((Widget
) GetTopWidget()), window
);
2064 bool wxWindow::AcceptsFocus() const
2066 return IsShown() && IsEnabled();
2069 // Update region access
2070 wxRegion
& wxWindow::GetUpdateRegion() const
2072 return (wxRegion
&) m_updateRegion
;
2075 bool wxWindow::IsExposed(int x
, int y
, int w
, int h
) const
2077 return (m_updateRegion
.Contains(x
, y
, w
, h
) != wxOutRegion
);
2080 bool wxWindow::IsExposed(const wxPoint
& pt
) const
2082 return (m_updateRegion
.Contains(pt
) != wxOutRegion
);
2085 bool wxWindow::IsExposed(const wxRect
& rect
) const
2087 return (m_updateRegion
.Contains(rect
) != wxOutRegion
);
2091 * Allocates control IDs
2094 int wxWindow::NewControlId()
2096 static int s_controlId
= 0;
2101 void wxWindow::SetAcceleratorTable(const wxAcceleratorTable
& accel
)
2103 m_acceleratorTable
= accel
;
2106 // All widgets should have this as their resize proc.
2107 // OnSize sent to wxWindow via client data.
2108 void wxWidgetResizeProc(Widget w
, XConfigureEvent
*event
, String args
[], int *num_args
)
2110 wxWindow
*win
= (wxWindow
*)wxWidgetHashTable
->Get((long)w
);
2114 if (win
->PreResize())
2117 win
->GetSize(&width
, &height
);
2118 wxSizeEvent
sizeEvent(wxSize(width
, height
), win
->GetId());
2119 sizeEvent
.SetEventObject(win
);
2120 win
->GetEventHandler()->ProcessEvent(sizeEvent
);
2124 bool wxAddWindowToTable(Widget w
, wxWindow
*win
)
2126 wxWindow
*oldItem
= NULL
;
2127 // printf("Adding widget %ld, name = %s\n", w, win->GetClassInfo()->GetClassName());
2128 if ((oldItem
= (wxWindow
*)wxWidgetHashTable
->Get ((long) w
)))
2131 sprintf(buf
, "Widget table clash: new widget is %ld, %s", (long)w
, win
->GetClassInfo()->GetClassName());
2134 sprintf(buf
, "Old widget was %s", oldItem
->GetClassInfo()->GetClassName());
2139 wxWidgetHashTable
->Put ((long) w
, win
);
2143 wxWindow
*wxGetWindowFromTable(Widget w
)
2145 return (wxWindow
*)wxWidgetHashTable
->Get ((long) w
);
2148 void wxDeleteWindowFromTable(Widget w
)
2150 wxWidgetHashTable
->Delete((long)w
);
2153 // Get the underlying X window and display
2154 WXWindow
wxWindow::GetXWindow() const
2156 return (WXWindow
) XtWindow((Widget
) GetMainWidget());
2159 WXDisplay
*wxWindow::GetXDisplay() const
2161 return (WXDisplay
*) XtDisplay((Widget
) GetMainWidget());
2164 WXWidget
wxWindow::GetMainWidget() const
2167 return m_drawingArea
;
2169 return m_mainWidget
;
2172 WXWidget
wxWindow::GetClientWidget() const
2174 if (m_drawingArea
!= (WXWidget
) 0)
2175 return m_drawingArea
;
2177 return GetMainWidget();
2180 WXWidget
wxWindow::GetTopWidget() const
2182 return GetMainWidget();
2185 void wxCanvasRepaintProc (Widget drawingArea
, XtPointer clientData
,
2186 XmDrawingAreaCallbackStruct
* cbs
)
2188 if (!wxWidgetHashTable
->Get ((long) (Widget
) drawingArea
))
2191 XEvent
* event
= cbs
->event
;
2192 wxWindow
* win
= (wxWindow
*) clientData
;
2193 Display
* display
= (Display
*) win
->GetXDisplay();
2195 switch (event
->type
)
2199 wxRect
* rect
= new wxRect(event
->xexpose
.x
, event
->xexpose
.y
,
2200 event
->xexpose
.width
, event
->xexpose
.height
);
2202 cout << "Expose proc. wxRect: " << rect->x << ", " << rect->y << ", ";
2203 cout << rect->width << ", " << rect->height << "\n\n";
2206 win
->m_updateRects
.Append((wxObject
*) rect
);
2208 if (event
-> xexpose
.count
== 0)
2210 wxPaintEvent
event(win
->GetId());
2211 event
.SetEventObject(win
);
2212 win
->GetEventHandler()->ProcessEvent(event
);
2214 win
->ClearUpdateRects();
2220 cout
<< "\n\nNew Event ! is = " << event
-> type
<< "\n";
2226 // Unable to deal with Enter/Leave without a separate EventHandler (Motif 1.1.4)
2228 wxCanvasEnterLeave (Widget drawingArea
, XtPointer clientData
, XCrossingEvent
* event
)
2230 XmDrawingAreaCallbackStruct cbs
;
2233 //if (event->mode!=NotifyNormal)
2236 // ev = *((XEvent *) event); // Causes Purify error (copying too many bytes)
2237 ((XCrossingEvent
&) ev
) = *event
;
2239 cbs
.reason
= XmCR_INPUT
;
2242 wxCanvasInputEvent (drawingArea
, (XtPointer
) NULL
, &cbs
);
2245 // Fix to make it work under Motif 1.0 (!)
2246 void wxCanvasMotionEvent (Widget drawingArea
, XButtonEvent
* event
)
2250 XmDrawingAreaCallbackStruct cbs
;
2253 //ev.xbutton = *event;
2254 ev
= *((XEvent
*) event
);
2255 cbs
.reason
= XmCR_INPUT
;
2258 wxCanvasInputEvent (drawingArea
, (XtPointer
) NULL
, &cbs
);
2262 void wxCanvasInputEvent (Widget drawingArea
, XtPointer data
, XmDrawingAreaCallbackStruct
* cbs
)
2264 wxWindow
*canvas
= (wxWindow
*) wxWidgetHashTable
->Get ((long) (Widget
) drawingArea
);
2270 if (cbs
->reason
!= XmCR_INPUT
)
2273 local_event
= *(cbs
->event
); // We must keep a copy!
2276 switch (local_event.xany.type)
2279 cout << "EnterNotify\n";
2282 cout << "LeaveNotify\n";
2285 cout << "ButtonPress\n";
2288 cout << "ButtonRelease\n";
2291 cout << "MotionNotify\n";
2294 cout << "Something else\n";
2299 switch (local_event
.xany
.type
)
2307 wxEventType eventType
= wxEVT_NULL
;
2309 if (local_event
.xany
.type
== EnterNotify
)
2311 //if (local_event.xcrossing.mode!=NotifyNormal)
2312 // return ; // Ignore grab events
2313 eventType
= wxEVT_ENTER_WINDOW
;
2314 // canvas->GetEventHandler()->OnSetFocus();
2316 else if (local_event
.xany
.type
== LeaveNotify
)
2318 //if (local_event.xcrossing.mode!=NotifyNormal)
2319 // return ; // Ignore grab events
2320 eventType
= wxEVT_LEAVE_WINDOW
;
2321 // canvas->GetEventHandler()->OnKillFocus();
2323 else if (local_event
.xany
.type
== MotionNotify
)
2325 eventType
= wxEVT_MOTION
;
2326 if (local_event
.xmotion
.is_hint
== NotifyHint
)
2329 Display
*dpy
= XtDisplay (drawingArea
);
2331 XQueryPointer (dpy
, XtWindow (drawingArea
),
2333 &local_event
.xmotion
.x_root
,
2334 &local_event
.xmotion
.y_root
,
2335 &local_event
.xmotion
.x
,
2336 &local_event
.xmotion
.y
,
2337 &local_event
.xmotion
.state
);
2344 else if (local_event
.xany
.type
== ButtonPress
)
2346 if (local_event
.xbutton
.button
== Button1
)
2348 eventType
= wxEVT_LEFT_DOWN
;
2349 canvas
->m_button1Pressed
= TRUE
;
2351 else if (local_event
.xbutton
.button
== Button2
)
2353 eventType
= wxEVT_MIDDLE_DOWN
;
2354 canvas
->m_button2Pressed
= TRUE
;
2356 else if (local_event
.xbutton
.button
== Button3
)
2358 eventType
= wxEVT_RIGHT_DOWN
;
2359 canvas
->m_button3Pressed
= TRUE
;
2362 else if (local_event
.xany
.type
== ButtonRelease
)
2364 if (local_event
.xbutton
.button
== Button1
)
2366 eventType
= wxEVT_LEFT_UP
;
2367 canvas
->m_button1Pressed
= FALSE
;
2369 else if (local_event
.xbutton
.button
== Button2
)
2371 eventType
= wxEVT_MIDDLE_UP
;
2372 canvas
->m_button2Pressed
= FALSE
;
2374 else if (local_event
.xbutton
.button
== Button3
)
2376 eventType
= wxEVT_RIGHT_UP
;
2377 canvas
->m_button3Pressed
= FALSE
;
2381 wxMouseEvent
wxevent (eventType
);
2382 wxevent
.m_eventHandle
= (char *) &local_event
;
2384 wxevent
.m_leftDown
= ((eventType
== wxEVT_LEFT_DOWN
)
2385 || (event_left_is_down (&local_event
)
2386 && (eventType
!= wxEVT_LEFT_UP
)));
2387 wxevent
.m_middleDown
= ((eventType
== wxEVT_MIDDLE_DOWN
)
2388 || (event_middle_is_down (&local_event
)
2389 && (eventType
!= wxEVT_MIDDLE_UP
)));
2390 wxevent
.m_rightDown
= ((eventType
== wxEVT_RIGHT_DOWN
)
2391 || (event_right_is_down (&local_event
)
2392 && (eventType
!= wxEVT_RIGHT_UP
)));
2394 wxevent
.m_shiftDown
= local_event
.xbutton
.state
& ShiftMask
;
2395 wxevent
.m_controlDown
= local_event
.xbutton
.state
& ControlMask
;
2396 wxevent
.m_altDown
= local_event
.xbutton
.state
& Mod3Mask
;
2397 wxevent
.m_metaDown
= local_event
.xbutton
.state
& Mod1Mask
;
2398 wxevent
.SetTimestamp(local_event
.xbutton
.time
);
2400 // Now check if we need to translate this event into a double click
2401 if (TRUE
) // canvas->doubleClickAllowed)
2403 if (wxevent
.ButtonDown())
2405 long dclickTime
= XtGetMultiClickTime((Display
*) wxGetDisplay()) ;
2407 // get button and time-stamp
2409 if (wxevent
.LeftDown()) button
= 1;
2410 else if (wxevent
.MiddleDown()) button
= 2;
2411 else if (wxevent
.RightDown()) button
= 3;
2412 long ts
= wxevent
.GetTimestamp();
2413 // check, if single or double click
2414 if (canvas
->m_lastButton
&& canvas
->m_lastButton
==button
&& (ts
- canvas
->m_lastTS
) < dclickTime
)
2417 canvas
->m_lastButton
= 0;
2418 switch ( eventType
)
2420 case wxEVT_LEFT_DOWN
:
2421 wxevent
.SetEventType(wxEVT_LEFT_DCLICK
);
2423 case wxEVT_MIDDLE_DOWN
:
2424 wxevent
.SetEventType(wxEVT_MIDDLE_DCLICK
);
2426 case wxEVT_RIGHT_DOWN
:
2427 wxevent
.SetEventType(wxEVT_RIGHT_DCLICK
);
2437 // not fast enough or different button
2438 canvas
->m_lastTS
= ts
;
2439 canvas
->m_lastButton
= button
;
2444 wxevent
.SetId(canvas
->GetId());
2445 wxevent
.SetEventObject(canvas
);
2446 wxevent
.m_x
= local_event
.xbutton
.x
;
2447 wxevent
.m_y
= local_event
.xbutton
.y
;
2448 canvas
->GetEventHandler()->ProcessEvent (wxevent
);
2450 if (eventType == wxEVT_ENTER_WINDOW ||
2451 eventType == wxEVT_LEAVE_WINDOW ||
2452 eventType == wxEVT_MOTION
2461 // XComposeStatus compose;
2462 // (void) XLookupString ((XKeyEvent *) & local_event, wxBuffer, 20, &keySym, &compose);
2463 (void) XLookupString ((XKeyEvent
*) & local_event
, wxBuffer
, 20, &keySym
, NULL
);
2464 int id
= wxCharCodeXToWX (keySym
);
2466 wxKeyEvent
event (wxEVT_CHAR
);
2468 if (local_event
.xkey
.state
& ShiftMask
)
2469 event
.m_shiftDown
= TRUE
;
2470 if (local_event
.xkey
.state
& ControlMask
)
2471 event
.m_controlDown
= TRUE
;
2472 if (local_event
.xkey
.state
& Mod3Mask
)
2473 event
.m_altDown
= TRUE
;
2474 if (local_event
.xkey
.state
& Mod1Mask
)
2475 event
.m_metaDown
= TRUE
;
2476 event
.SetEventObject(canvas
);
2477 event
.m_keyCode
= id
;
2478 event
.SetTimestamp(local_event
.xkey
.time
);
2482 // Implement wxFrame::OnCharHook by checking ancestor.
2483 wxWindow
*parent
= canvas
->GetParent();
2484 while (parent
&& !parent
->IsKindOf(CLASSINFO(wxFrame
)))
2485 parent
= parent
->GetParent();
2489 event
.SetEventType(wxEVT_CHAR_HOOK
);
2490 if (parent
->GetEventHandler()->ProcessEvent(event
))
2492 event
.SetEventType(wxEVT_CHAR
);
2495 canvas
->GetEventHandler()->ProcessEvent (event
);
2501 if (local_event
.xfocus
.detail
!= NotifyPointer
)
2503 wxFocusEvent
event(wxEVT_SET_FOCUS
, canvas
->GetId());
2504 event
.SetEventObject(canvas
);
2505 canvas
->GetEventHandler()->ProcessEvent(event
);
2511 if (local_event
.xfocus
.detail
!= NotifyPointer
)
2513 wxFocusEvent
event(wxEVT_KILL_FOCUS
, canvas
->GetId());
2514 event
.SetEventObject(canvas
);
2515 canvas
->GetEventHandler()->ProcessEvent(event
);
2524 void wxWindow::DoPaint()
2526 //TODO : make a temporary gc so we can do the XCopyArea below
2527 if (0) // m_backingPixmap)
2530 Widget drawingArea = (Widget) m_drawingArea;
2531 // int orig = GetDC()->GetLogicalFunction();
2532 // GetDC()->SetLogicalFunction (wxCOPY);
2534 // TODO: it may not be necessary to store m_pixmapOffsetX/Y; we
2535 // should be able to calculate them.
2536 XCopyArea (XtDisplay (drawingArea), m_backingPixmap, XtWindow (drawingArea), GetDC ()->gc,
2537 m_pixmapOffsetX, m_pixmapOffsetY,
2538 m_pixmapWidth, m_pixmapHeight,
2541 // GetDC()->SetLogicalFunction (orig);
2546 wxPaintEvent
event(GetId());
2547 event
.SetEventObject(this);
2548 GetEventHandler()->ProcessEvent(event
);
2552 // SetSize, but as per old wxCanvas (with drawing widget etc.)
2553 void wxWindow::CanvasSetSize (int x
, int y
, int w
, int h
, int sizeFlags
)
2555 // A bit of optimization to help sort out the flickers.
2556 int oldX
, oldY
, oldW
, oldH
;
2557 GetSize(& oldW
, & oldH
);
2558 GetPosition(& oldX
, & oldY
);
2560 bool useOldPos
= FALSE
;
2561 bool useOldSize
= FALSE
;
2563 if ((x
== -1) && (x
== -1) && ((sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) == 0))
2565 else if (x
== oldX
&& y
== oldY
)
2568 if ((w
== -1) && (h
== -1))
2570 else if (w
== oldW
&& h
== oldH
)
2573 if (useOldPos
&& useOldSize
)
2576 Widget drawingArea
= (Widget
) m_drawingArea
;
2577 bool managed
= XtIsManaged(m_borderWidget
? (Widget
) m_borderWidget
: (Widget
) m_scrolledWindow
);
2580 XtUnmanageChild (m_borderWidget
? (Widget
) m_borderWidget
: (Widget
) m_scrolledWindow
);
2581 XtVaSetValues((Widget
) m_drawingArea
, XmNresizePolicy
, XmRESIZE_ANY
, NULL
);
2583 int xx
= x
; int yy
= y
;
2584 AdjustForParentClientOrigin(xx
, yy
, sizeFlags
);
2588 if (x
> -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
2590 XtVaSetValues (m_borderWidget
? (Widget
) m_borderWidget
: (Widget
) m_scrolledWindow
,
2594 if (y
> -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
2596 XtVaSetValues (m_borderWidget
? (Widget
) m_borderWidget
: (Widget
) m_scrolledWindow
,
2608 XtVaSetValues ((Widget
) m_borderWidget
, XmNwidth
, w
, NULL
);
2609 short thick
, margin
;
2610 XtVaGetValues ((Widget
) m_borderWidget
,
2611 XmNshadowThickness
, &thick
,
2612 XmNmarginWidth
, &margin
,
2614 w
-= 2 * (thick
+ margin
);
2617 XtVaSetValues ((Widget
) m_scrolledWindow
, XmNwidth
, w
, NULL
);
2621 XtVaGetValues ((Widget
) m_scrolledWindow
,
2622 XmNspacing
, &spacing
,
2623 XmNverticalScrollBar
, &sbar
,
2627 XtVaGetValues (sbar
, XmNwidth
, &wsbar
, NULL
);
2631 w
-= (spacing
+ wsbar
);
2633 XtVaSetValues ((Widget
) m_drawingArea
, XmNwidth
, w
, NULL
);
2639 XtVaSetValues ((Widget
) m_borderWidget
, XmNheight
, h
, NULL
);
2640 short thick
, margin
;
2641 XtVaGetValues ((Widget
) m_borderWidget
,
2642 XmNshadowThickness
, &thick
,
2643 XmNmarginHeight
, &margin
,
2645 h
-= 2 * (thick
+ margin
);
2648 XtVaSetValues ((Widget
) m_scrolledWindow
, XmNheight
, h
, NULL
);
2652 XtVaGetValues ((Widget
) m_scrolledWindow
,
2653 XmNspacing
, &spacing
,
2654 XmNhorizontalScrollBar
, &sbar
,
2658 XtVaGetValues (sbar
, XmNheight
, &wsbar
, NULL
);
2662 h
-= (spacing
+ wsbar
);
2664 XtVaSetValues ((Widget
) m_drawingArea
, XmNheight
, h
, NULL
);
2669 XtManageChild (m_borderWidget
? (Widget
) m_borderWidget
: (Widget
) m_scrolledWindow
);
2670 XtVaSetValues((Widget
) m_drawingArea
, XmNresizePolicy
, XmRESIZE_NONE
, NULL
);
2674 GetClientSize (&ww, &hh);
2675 wxSizeEvent sizeEvent(wxSize(ww, hh), GetId());
2676 sizeEvent.SetEventObject(this);
2678 GetEventHandler()->ProcessEvent(sizeEvent);
2683 void wxWindow::CanvasSetClientSize (int w
, int h
)
2685 Widget drawingArea
= (Widget
) m_drawingArea
;
2687 XtVaSetValues((Widget
) m_drawingArea
, XmNresizePolicy
, XmRESIZE_ANY
, NULL
);
2690 XtVaSetValues ((Widget
) m_drawingArea
, XmNwidth
, w
, NULL
);
2692 XtVaSetValues ((Widget
) m_drawingArea
, XmNheight
, h
, NULL
);
2693 /* TODO: is this necessary?
2694 allowRepainting = FALSE;
2696 XSync (XtDisplay (drawingArea), FALSE);
2698 while (XtAppPending (wxTheApp->appContext))
2700 XFlush (XtDisplay (drawingArea));
2701 XtAppNextEvent (wxTheApp->appContext, &event);
2702 XtDispatchEvent (&event);
2706 XtVaSetValues((Widget
) m_drawingArea
, XmNresizePolicy
, XmRESIZE_NONE
, NULL
);
2709 allowRepainting = TRUE;
2714 wxSizeEvent sizeEvent(wxSize(w, h), GetId());
2715 sizeEvent.SetEventObject(this);
2717 GetEventHandler()->ProcessEvent(sizeEvent);
2721 void wxWindow::CanvasGetClientSize (int *w
, int *h
) const
2723 // Must return the same thing that was set via SetClientSize
2725 XtVaGetValues ((Widget
) m_drawingArea
, XmNwidth
, &xx
, XmNheight
, &yy
, NULL
);
2730 void wxWindow::CanvasGetSize (int *w
, int *h
) const
2733 if ((Widget
) m_borderWidget
)
2734 XtVaGetValues ((Widget
) m_borderWidget
, XmNwidth
, &xx
, XmNheight
, &yy
, NULL
);
2735 else if ((Widget
) m_scrolledWindow
)
2736 XtVaGetValues ((Widget
) m_scrolledWindow
, XmNwidth
, &xx
, XmNheight
, &yy
, NULL
);
2738 XtVaGetValues ((Widget
) m_drawingArea
, XmNwidth
, &xx
, XmNheight
, &yy
, NULL
);
2744 void wxWindow::CanvasGetPosition (int *x
, int *y
) const
2747 XtVaGetValues (m_borderWidget
? (Widget
) m_borderWidget
: (Widget
) m_scrolledWindow
, XmNx
, &xx
, XmNy
, &yy
, NULL
);
2749 // We may be faking the client origin.
2750 // So a window that's really at (0, 30) may appear
2751 // (to wxWin apps) to be at (0, 0).
2754 wxPoint
pt(GetParent()->GetClientAreaOrigin());
2763 // Add to hash table, add event handler
2764 bool wxWindow::AttachWidget (wxWindow
* parent
, WXWidget mainWidget
,
2765 WXWidget formWidget
, int x
, int y
, int width
, int height
)
2767 wxAddWindowToTable((Widget
) mainWidget
, this);
2768 if (CanAddEventHandler())
2770 XtAddEventHandler((Widget
) mainWidget
,
2771 ButtonPressMask
| ButtonReleaseMask
| PointerMotionMask
, // | KeyPressMask,
2773 wxPanelItemEventHandler
,
2780 XtOverrideTranslations ((Widget
) mainWidget
,
2781 ptr
= XtParseTranslationTable ("<Configure>: resize()"));
2782 XtFree ((char *) ptr
);
2785 // Some widgets have a parent form widget, e.g. wxRadioBox
2788 if (!wxAddWindowToTable((Widget
) formWidget
, this))
2792 XtOverrideTranslations ((Widget
) formWidget
,
2793 ptr
= XtParseTranslationTable ("<Configure>: resize()"));
2794 XtFree ((char *) ptr
);
2801 SetSize (x
, y
, width
, height
);
2806 // Remove event handler, remove from hash table
2807 bool wxWindow::DetachWidget(WXWidget widget
)
2809 if (CanAddEventHandler())
2811 XtRemoveEventHandler((Widget
) widget
,
2812 ButtonPressMask
| ButtonReleaseMask
| PointerMotionMask
, // | KeyPressMask,
2814 wxPanelItemEventHandler
,
2818 wxDeleteWindowFromTable((Widget
) widget
);
2822 void wxPanelItemEventHandler (Widget wid
,
2823 XtPointer client_data
,
2825 Boolean
*continueToDispatch
)
2827 // Widget can be a label or the actual widget.
2829 wxWindow
*window
= (wxWindow
*)wxWidgetHashTable
->Get((long)wid
);
2832 wxMouseEvent
wxevent(0);
2833 if (wxTranslateMouseEvent(wxevent
, window
, wid
, event
))
2835 window
->GetEventHandler()->ProcessEvent(wxevent
);
2838 // TODO: probably the key to allowing default behaviour
2840 // Say we set a m_doDefault flag to FALSE at the start of this
2841 // function. Then in e.g. wxWindow::OnMouseEvent we can
2842 // call Default() which sets this flag to TRUE, indicating
2843 // that default processing can happen. Thus, behaviour can appear
2844 // to be overridden just by adding an event handler and not calling
2845 // wxWindow::OnWhatever.
2846 // ALSO, maybe we can use this instead of the current way of handling
2847 // drawing area events, to simplify things.
2848 *continueToDispatch
= True
;
2851 static void wxScrollBarCallback(Widget scrollbar
, XtPointer clientData
,
2852 XmScaleCallbackStruct
*cbs
)
2854 Widget scrolledWindow
= XtParent (scrollbar
);
2855 wxWindow
*win
= (wxWindow
*) wxWidgetHashTable
->Get ((long) scrolledWindow
);
2856 int orientation
= (int) clientData
;
2858 wxEventType eventType
= wxEVT_NULL
;
2859 switch (cbs
->reason
)
2861 case XmCR_INCREMENT
:
2863 eventType
= wxEVT_SCROLL_LINEDOWN
;
2866 case XmCR_DECREMENT
:
2868 eventType
= wxEVT_SCROLL_LINEUP
;
2873 eventType
= wxEVT_SCROLL_THUMBTRACK
;
2876 case XmCR_VALUE_CHANGED
:
2878 // TODO: Should this be intercepted too, or will it cause
2879 // duplicate events?
2880 eventType
= wxEVT_SCROLL_THUMBTRACK
;
2883 case XmCR_PAGE_INCREMENT
:
2885 eventType
= wxEVT_SCROLL_PAGEDOWN
;
2888 case XmCR_PAGE_DECREMENT
:
2890 eventType
= wxEVT_SCROLL_PAGEUP
;
2895 eventType
= wxEVT_SCROLL_TOP
;
2898 case XmCR_TO_BOTTOM
:
2900 eventType
= wxEVT_SCROLL_BOTTOM
;
2905 // Should never get here
2906 wxFAIL_MSG("Unknown scroll event.");
2911 wxScrollEvent
event(eventType
, win
->GetId());
2912 event
.SetEventObject(win
);
2913 event
.SetPosition(cbs
->value
);
2914 event
.SetOrientation( (orientation
== XmHORIZONTAL
) ? wxHORIZONTAL
: wxVERTICAL
);
2916 win
->GetEventHandler()->ProcessEvent(event
);
2919 bool wxTranslateMouseEvent(wxMouseEvent
& wxevent
, wxWindow
*win
, Widget widget
, XEvent
*xevent
)
2921 switch (xevent
->xany
.type
)
2929 wxEventType eventType
= wxEVT_NULL
;
2931 if (xevent
->xany
.type
== LeaveNotify
)
2933 win
->m_button1Pressed
= FALSE
;
2934 win
->m_button2Pressed
= FALSE
;
2935 win
->m_button3Pressed
= FALSE
;
2938 else if (xevent
->xany
.type
== MotionNotify
)
2940 eventType
= wxEVT_MOTION
;
2942 else if (xevent
->xany
.type
== ButtonPress
)
2944 if (xevent
->xbutton
.button
== Button1
)
2946 eventType
= wxEVT_LEFT_DOWN
;
2947 win
->m_button1Pressed
= TRUE
;
2949 else if (xevent
->xbutton
.button
== Button2
)
2951 eventType
= wxEVT_MIDDLE_DOWN
;
2952 win
->m_button2Pressed
= TRUE
;
2954 else if (xevent
->xbutton
.button
== Button3
)
2956 eventType
= wxEVT_RIGHT_DOWN
;
2957 win
->m_button3Pressed
= TRUE
;
2960 else if (xevent
->xany
.type
== ButtonRelease
)
2962 if (xevent
->xbutton
.button
== Button1
)
2964 eventType
= wxEVT_LEFT_UP
;
2965 win
->m_button1Pressed
= FALSE
;
2967 else if (xevent
->xbutton
.button
== Button2
)
2969 eventType
= wxEVT_MIDDLE_UP
;
2970 win
->m_button2Pressed
= FALSE
;
2972 else if (xevent
->xbutton
.button
== Button3
)
2974 eventType
= wxEVT_RIGHT_UP
;
2975 win
->m_button3Pressed
= FALSE
;
2981 wxevent
.m_eventHandle
= (char *)xevent
;
2982 wxevent
.SetEventType(eventType
);
2985 XtVaGetValues(widget
, XmNx
, &x1
, XmNy
, &y1
, NULL
);
2988 win
->GetPosition(&x2
, &y2
);
2990 // The button x/y must be translated to wxWindows
2991 // window space - the widget might be a label or button,
2995 if (widget
!= (Widget
)win
->GetMainWidget())
3001 wxevent
.m_x
= xevent
->xbutton
.x
+ dx
;
3002 wxevent
.m_y
= xevent
->xbutton
.y
+ dy
;
3004 wxevent
.m_leftDown
= ((eventType
== wxEVT_LEFT_DOWN
)
3005 || (event_left_is_down (xevent
)
3006 && (eventType
!= wxEVT_LEFT_UP
)));
3007 wxevent
.m_middleDown
= ((eventType
== wxEVT_MIDDLE_DOWN
)
3008 || (event_middle_is_down (xevent
)
3009 && (eventType
!= wxEVT_MIDDLE_UP
)));
3010 wxevent
.m_rightDown
= ((eventType
== wxEVT_RIGHT_DOWN
)
3011 || (event_right_is_down (xevent
)
3012 && (eventType
!= wxEVT_RIGHT_UP
)));
3014 wxevent
.m_shiftDown
= xevent
->xbutton
.state
& ShiftMask
;
3015 wxevent
.m_controlDown
= xevent
->xbutton
.state
& ControlMask
;
3022 bool wxTranslateKeyEvent(wxKeyEvent
& wxevent
, wxWindow
*win
, Widget widget
, XEvent
*xevent
)
3024 switch (xevent
->xany
.type
)
3031 // XComposeStatus compose;
3032 // (void) XLookupString ((XKeyEvent *) xevent, buf, 20, &keySym, &compose);
3033 (void) XLookupString ((XKeyEvent
*) xevent
, buf
, 20, &keySym
, NULL
);
3034 int id
= wxCharCodeXToWX (keySym
);
3036 if (xevent
->xkey
.state
& ShiftMask
)
3037 wxevent
.m_shiftDown
= TRUE
;
3038 if (xevent
->xkey
.state
& ControlMask
)
3039 wxevent
.m_controlDown
= TRUE
;
3040 if (xevent
->xkey
.state
& Mod3Mask
)
3041 wxevent
.m_altDown
= TRUE
;
3042 if (xevent
->xkey
.state
& Mod1Mask
)
3043 wxevent
.m_metaDown
= TRUE
;
3044 wxevent
.SetEventObject(win
);
3045 wxevent
.m_keyCode
= id
;
3046 wxevent
.SetTimestamp(xevent
->xkey
.time
);
3048 wxevent
.m_x
= xevent
->xbutton
.x
;
3049 wxevent
.m_y
= xevent
->xbutton
.y
;
3063 #define YAllocColor XAllocColor
3064 XColor g_itemColors
[5];
3065 int wxComputeColours (Display
*display
, wxColour
* back
, wxColour
* fore
)
3068 static XmColorProc colorProc
;
3070 result
= wxNO_COLORS
;
3074 g_itemColors
[0].red
= (((long) back
->Red ()) << 8);
3075 g_itemColors
[0].green
= (((long) back
->Green ()) << 8);
3076 g_itemColors
[0].blue
= (((long) back
->Blue ()) << 8);
3077 g_itemColors
[0].flags
= DoRed
| DoGreen
| DoBlue
;
3078 if (colorProc
== (XmColorProc
) NULL
)
3080 // Get a ptr to the actual function
3081 colorProc
= XmSetColorCalculation ((XmColorProc
) NULL
);
3082 // And set it back to motif.
3083 XmSetColorCalculation (colorProc
);
3085 (*colorProc
) (&g_itemColors
[wxBACK_INDEX
],
3086 &g_itemColors
[wxFORE_INDEX
],
3087 &g_itemColors
[wxSELE_INDEX
],
3088 &g_itemColors
[wxTOPS_INDEX
],
3089 &g_itemColors
[wxBOTS_INDEX
]);
3090 result
= wxBACK_COLORS
;
3094 g_itemColors
[wxFORE_INDEX
].red
= (((long) fore
->Red ()) << 8);
3095 g_itemColors
[wxFORE_INDEX
].green
= (((long) fore
->Green ()) << 8);
3096 g_itemColors
[wxFORE_INDEX
].blue
= (((long) fore
->Blue ()) << 8);
3097 g_itemColors
[wxFORE_INDEX
].flags
= DoRed
| DoGreen
| DoBlue
;
3098 if (result
== wxNO_COLORS
)
3099 result
= wxFORE_COLORS
;
3102 Display
*dpy
= display
;
3103 Colormap cmap
= (Colormap
) wxTheApp
->GetMainColormap((WXDisplay
*) dpy
);
3107 /* 5 Colours to allocate */
3108 for (int i
= 0; i
< 5; i
++)
3109 if (!YAllocColor (dpy
, cmap
, &g_itemColors
[i
]))
3110 result
= wxNO_COLORS
;
3114 /* Only 1 colour to allocate */
3115 if (!YAllocColor (dpy
, cmap
, &g_itemColors
[wxFORE_INDEX
]))
3116 result
= wxNO_COLORS
;
3123 // Changes the foreground and background colours to be derived
3124 // from the current background colour.
3125 // To change the foreground colour, you must call SetForegroundColour
3127 void wxWindow::ChangeBackgroundColour()
3129 if (GetMainWidget())
3130 DoChangeBackgroundColour(GetMainWidget(), m_backgroundColour
);
3133 void wxWindow::ChangeForegroundColour()
3135 if (GetMainWidget())
3136 DoChangeForegroundColour(GetMainWidget(), m_foregroundColour
);
3139 // Change a widget's foreground and background colours.
3141 void wxWindow::DoChangeForegroundColour(WXWidget widget
, wxColour
& foregroundColour
)
3143 // When should we specify the foreground, if it's calculated
3144 // by wxComputeColours?
3145 // Solution: say we start with the default (computed) foreground colour.
3146 // If we call SetForegroundColour explicitly for a control or window,
3147 // then the foreground is changed.
3148 // Therefore SetBackgroundColour computes the foreground colour, and
3149 // SetForegroundColour changes the foreground colour. The ordering is
3152 XtVaSetValues ((Widget
) widget
,
3153 XmNforeground
, foregroundColour
.AllocColour(XtDisplay((Widget
) widget
)),
3157 void wxWindow::DoChangeBackgroundColour(WXWidget widget
, wxColour
& backgroundColour
, bool changeArmColour
)
3159 wxComputeColours (XtDisplay((Widget
) widget
), & backgroundColour
,
3162 XtVaSetValues ((Widget
) widget
,
3163 XmNbackground
, g_itemColors
[wxBACK_INDEX
].pixel
,
3164 XmNtopShadowColor
, g_itemColors
[wxTOPS_INDEX
].pixel
,
3165 XmNbottomShadowColor
, g_itemColors
[wxBOTS_INDEX
].pixel
,
3166 XmNforeground
, g_itemColors
[wxFORE_INDEX
].pixel
,
3169 if (changeArmColour
)
3170 XtVaSetValues ((Widget
) widget
,
3171 XmNarmColor
, g_itemColors
[wxSELE_INDEX
].pixel
,
3175 void wxWindow::SetBackgroundColour(const wxColour
& col
)
3177 m_backgroundColour
= col
;
3178 ChangeBackgroundColour();
3181 void wxWindow::SetForegroundColour(const wxColour
& col
)
3183 m_foregroundColour
= col
;
3184 ChangeForegroundColour();
3187 void wxWindow::ChangeFont(bool keepOriginalSize
)
3189 // Note that this causes the widget to be resized back
3190 // to its original size! We therefore have to set the size
3191 // back again. TODO: a better way in Motif?
3192 Widget w
= (Widget
) GetLabelWidget(); // Usually the main widget
3193 if (w
&& m_windowFont
.Ok())
3195 int width
, height
, width1
, height1
;
3196 GetSize(& width
, & height
);
3199 XmNfontList
, (XmFontList
) m_windowFont
.GetFontList(1.0, XtDisplay(w
)),
3202 GetSize(& width1
, & height1
);
3203 if (keepOriginalSize
&& (width
!= width1
|| height
!= height1
))
3205 SetSize(-1, -1, width
, height
);
3210 void wxWindow::SetFont(const wxFont
& font
)
3212 m_windowFont
= font
;
3216 void wxWindow::ClearUpdateRects()
3218 wxNode
* node
= m_updateRects
.First();
3221 wxRect
* rect
= (wxRect
*) node
->Data();
3223 node
= node
->Next();
3225 m_updateRects
.Clear();
3228 bool wxWindow::ProcessAccelerator(wxKeyEvent
& event
)
3230 if (!m_acceleratorTable
.Ok())
3233 int count
= m_acceleratorTable
.GetCount();
3234 wxAcceleratorEntry
* entries
= m_acceleratorTable
.GetEntries();
3236 for (i
= 0; i
< count
; i
++)
3238 wxAcceleratorEntry
* entry
= & (entries
[i
]);
3239 if (entry
->MatchesEvent(event
))
3241 // Bingo, we have a match. Now find a control
3242 // that matches the entry command id.
3244 // Need to go up to the top of the window hierarchy,
3245 // since it might be e.g. a menu item
3246 wxWindow
* parent
= this;
3247 while (parent
&& !parent
->IsKindOf(CLASSINFO(wxFrame
)) && !parent
->IsKindOf(CLASSINFO(wxDialog
)))
3248 parent
= parent
->GetParent();
3253 if (parent
->IsKindOf(CLASSINFO(wxFrame
)))
3255 // Try for a menu command
3256 wxFrame
* frame
= (wxFrame
*) parent
;
3257 if (frame
->GetMenuBar())
3259 wxMenuItem
* item
= frame
->GetMenuBar()->FindItemForId(entry
->GetCommand());
3262 wxCommandEvent
commandEvent(wxEVT_COMMAND_MENU_SELECTED
, entry
->GetCommand());
3263 commandEvent
.SetEventObject(frame
);
3265 // If ProcessEvent returns TRUE (it was handled), then
3266 // the calling code will skip the event handling.
3267 return frame
->GetEventHandler()->ProcessEvent(commandEvent
);
3272 // Find a child matching the command id
3273 wxWindow
* child
= parent
->FindWindow(entry
->GetCommand());
3279 // Now we process those kinds of windows that we can.
3280 // For now, only buttons.
3281 if (child
->IsKindOf(CLASSINFO(wxButton
)))
3283 wxCommandEvent
commandEvent (wxEVT_COMMAND_BUTTON_CLICKED
, child
->GetId());
3284 commandEvent
.SetEventObject(child
);
3285 return child
->GetEventHandler()->ProcessEvent(commandEvent
);
3292 // We didn't match the key event against an accelerator.