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 void wxPanelItemEventHandler (Widget wid
,
56 XtPointer client_data
,
58 Boolean
*continueToDispatch
);
60 #define event_left_is_down(x) ((x)->xbutton.state & Button1Mask)
61 #define event_middle_is_down(x) ((x)->xbutton.state & Button2Mask)
62 #define event_right_is_down(x) ((x)->xbutton.state & Button3Mask)
64 extern wxList wxPendingDelete
;
66 #if !USE_SHARED_LIBRARY
67 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxEvtHandler
)
69 BEGIN_EVENT_TABLE(wxWindow
, wxEvtHandler
)
70 EVT_CHAR(wxWindow::OnChar
)
71 EVT_ERASE_BACKGROUND(wxWindow::OnEraseBackground
)
72 EVT_SYS_COLOUR_CHANGED(wxWindow::OnSysColourChanged
)
73 EVT_INIT_DIALOG(wxWindow::OnInitDialog
)
74 EVT_IDLE(wxWindow::OnIdle
)
86 m_windowParent
= NULL
;
87 m_windowEventHandler
= this;
89 m_windowCursor
= *wxSTANDARD_CURSOR
;
90 m_children
= new wxList
;
92 m_constraintsInvolvedIn
= NULL
;
96 m_windowValidator
= NULL
;
99 m_caretWidth
= 0; m_caretHeight
= 0;
100 m_caretEnabled
= FALSE
;
101 m_caretShown
= FALSE
;
102 m_backgroundColour
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW
) ; ;
103 m_foregroundColour
= *wxBLACK
;
104 m_defaultForegroundColour
= *wxBLACK
;
105 m_defaultBackgroundColour
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
) ;
107 #if wxUSE_DRAG_AND_DROP
108 m_pDropTarget
= NULL
;
112 m_mainWidget
= (WXWidget
) 0;
113 m_button1Pressed
= FALSE
;
114 m_button2Pressed
= FALSE
;
115 m_button3Pressed
= FALSE
;
116 m_winCaptured
= FALSE
;
118 m_hScrollBar
= (WXWidget
) 0;
119 m_vScrollBar
= (WXWidget
) 0;
120 m_borderWidget
= (WXWidget
) 0;
121 m_scrolledWindow
= (WXWidget
) 0;
122 m_drawingArea
= (WXWidget
) 0;
125 m_hScrollingEnabled
= FALSE
;
126 m_vScrollingEnabled
= FALSE
;
127 m_backingPixmap
= (WXPixmap
) 0;
134 m_canAddEventHandler
= FALSE
;
135 m_paintRegion
= (WXRegion
) 0;
139 wxWindow::~wxWindow()
144 XDestroyRegion ((Region
) m_paintRegion
);
145 m_paintRegion
= (WXRegion
) 0;
148 DetachWidget(GetMainWidget()); // Removes event handlers
150 // If m_drawingArea, we're a fully-fledged window with drawing area, scrollbars etc. (what wxCanvas used to be)
153 // Destroy children before destroying self
157 XFreePixmap (XtDisplay ((Widget
) GetMainWidget()), (Pixmap
) m_backingPixmap
);
159 Widget w
= (Widget
) m_drawingArea
;
160 wxDeleteWindowFromTable(w
);
164 m_mainWidget
= (WXWidget
) 0;
166 // Only if we're _really_ a canvas (not a dialog box/panel)
167 if (m_scrolledWindow
)
169 wxDeleteWindowFromTable((Widget
) m_scrolledWindow
);
174 XtUnmanageChild ((Widget
) m_hScrollBar
);
175 XtDestroyWidget ((Widget
) m_hScrollBar
);
179 XtUnmanageChild ((Widget
) m_vScrollBar
);
180 XtDestroyWidget ((Widget
) m_vScrollBar
);
182 if (m_scrolledWindow
)
184 XtUnmanageChild ((Widget
) m_scrolledWindow
);
185 XtDestroyWidget ((Widget
) m_scrolledWindow
);
190 XtDestroyWidget ((Widget
) m_borderWidget
);
191 m_borderWidget
= (WXWidget
) 0;
197 // Have to delete constraints/sizer FIRST otherwise
198 // sizers may try to look at deleted windows as they
199 // delete themselves.
200 #if wxUSE_CONSTRAINTS
201 DeleteRelatedConstraints();
204 // This removes any dangling pointers to this window
205 // in other windows' constraintsInvolvedIn lists.
206 UnsetConstraints(m_constraints
);
207 delete m_constraints
;
208 m_constraints
= NULL
;
212 delete m_windowSizer
;
213 m_windowSizer
= NULL
;
215 // If this is a child of a sizer, remove self from parent
217 m_sizerParent
->RemoveChild((wxWindow
*)this);
221 m_windowParent
->RemoveChild(this);
225 // Destroy the window
228 wxDeleteWindowFromTable((Widget
) GetMainWidget());
229 XtDestroyWidget((Widget
) GetMainWidget());
230 SetMainWidget((WXWidget
) NULL
);
236 // Just in case the window has been Closed, but
237 // we're then deleting immediately: don't leave
238 // dangling pointers.
239 wxPendingDelete
.DeleteObject(this);
241 if ( m_windowValidator
)
242 delete m_windowValidator
;
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
;
286 m_canAddEventHandler
= FALSE
;
287 m_mainWidget
= (WXWidget
) 0;
288 m_button1Pressed
= FALSE
;
289 m_button2Pressed
= FALSE
;
290 m_button3Pressed
= FALSE
;
291 m_winCaptured
= FALSE
;
293 m_hScrollBar
= (WXWidget
) 0;
294 m_vScrollBar
= (WXWidget
) 0;
295 m_borderWidget
= (WXWidget
) 0;
296 m_scrolledWindow
= (WXWidget
) 0;
297 m_drawingArea
= (WXWidget
) 0;
300 m_hScrollingEnabled
= FALSE
;
301 m_vScrollingEnabled
= FALSE
;
302 m_backingPixmap
= (WXPixmap
) 0;
307 m_paintRegion
= (WXRegion
) 0;
312 if (parent
) parent
->AddChild(this);
319 m_windowId
= (int)NewControlId();
323 m_backgroundColour
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW
) ; ;
324 m_foregroundColour
= *wxBLACK
;
325 m_defaultForegroundColour
= *wxBLACK
;
326 m_defaultBackgroundColour
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
) ;
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 SetSize(pos
.x
, pos
.y
, size
.x
, size
.y
);
427 void wxWindow::SetFocus()
429 XmProcessTraversal((Widget
) GetMainWidget(), XmTRAVERSE_CURRENT
);
430 XmProcessTraversal((Widget
) GetMainWidget(), XmTRAVERSE_CURRENT
);
433 void wxWindow::Enable(bool enable
)
437 XtSetSensitive((Widget
) GetMainWidget(), enable
);
438 XmUpdateDisplay((Widget
) GetMainWidget());
442 void wxWindow::CaptureMouse()
448 XtAddGrab((Widget
) GetMainWidget(), TRUE
, FALSE
);
450 m_winCaptured
= TRUE
;
453 void wxWindow::ReleaseMouse()
459 XtRemoveGrab((Widget
) GetMainWidget());
460 m_winCaptured
= FALSE
;
463 // Push/pop event handler (i.e. allow a chain of event handlers
465 void wxWindow::PushEventHandler(wxEvtHandler
*handler
)
467 handler
->SetNextHandler(GetEventHandler());
468 SetEventHandler(handler
);
471 wxEvtHandler
*wxWindow::PopEventHandler(bool deleteHandler
)
473 if ( GetEventHandler() )
475 wxEvtHandler
*handlerA
= GetEventHandler();
476 wxEvtHandler
*handlerB
= handlerA
->GetNextHandler();
477 handlerA
->SetNextHandler(NULL
);
478 SetEventHandler(handlerB
);
491 #if wxUSE_DRAG_AND_DROP
493 void wxWindow::SetDropTarget(wxDropTarget
*pDropTarget
)
495 if ( m_pDropTarget
!= 0 ) {
496 delete m_pDropTarget
;
499 m_pDropTarget
= pDropTarget
;
500 if ( m_pDropTarget
!= 0 )
508 // Old style file-manager drag&drop
509 void wxWindow::DragAcceptFiles(bool accept
)
515 void wxWindow::GetSize(int *x
, int *y
) const
523 Widget widget
= (Widget
) GetTopWidget();
525 XtVaGetValues(widget
, XmNwidth
, &xx
, XmNheight
, &yy
, NULL
);
529 void wxWindow::GetPosition(int *x
, int *y
) const
533 CanvasGetPosition(x
, y
);
536 Widget widget
= (Widget
) GetTopWidget();
538 XtVaGetValues(widget
, XmNx
, &xx
, XmNy
, &yy
, NULL
);
542 void wxWindow::ScreenToClient(int *x
, int *y
) const
547 void wxWindow::ClientToScreen(int *x
, int *y
) const
549 Widget widget
= (Widget
) GetClientWidget();
550 Display
*display
= XtDisplay(widget
);
551 Window rootWindow
= RootWindowOfScreen(XtScreen(widget
));
553 if (this->IsKindOf(CLASSINFO(wxFrame
)))
555 wxFrame
*fr
= (wxFrame
*)this;
557 // thisWindow = XtWindow(fr->m_clientArea);
560 thisWindow
= XtWindow((Widget
)widget
);
565 XTranslateCoordinates(display
, thisWindow
, rootWindow
, xx
, yy
, x
, y
, &childWindow
);
568 void wxWindow::SetCursor(const wxCursor
& cursor
)
570 m_windowCursor
= cursor
;
571 if (m_windowCursor
.Ok())
573 /* TODO when wxCursor implemented
574 WXDisplay *dpy = GetXDisplay();
575 Cursor x_cursor = cursor.GetXCursor(dpy);
577 Widget w = (Widget) GetMainWidget();
578 Window win = XtWindow(w);
579 XDefineCursor((Display*) dpy, win, x_cursor);
585 // Get size *available for subwindows* i.e. excluding menu bar etc.
586 void wxWindow::GetClientSize(int *x
, int *y
) const
588 Widget widget
= (Widget
) GetTopWidget();
590 XtVaGetValues(widget
, XmNwidth
, &xx
, XmNheight
, &yy
, NULL
);
594 void wxWindow::SetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
598 CanvasSetSize(x
, y
, width
, height
, sizeFlags
);
601 Widget widget
= (Widget
) GetTopWidget();
605 bool managed
= XtIsManaged( widget
);
607 XtUnmanageChild(widget
);
609 if (x
> -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
610 XtVaSetValues(widget
, XmNx
, x
, NULL
);
611 if (y
> -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
612 XtVaSetValues(widget
, XmNy
, y
, NULL
);
614 XtVaSetValues(widget
, XmNwidth
, width
, NULL
);
616 XtVaSetValues(widget
, XmNheight
, height
, NULL
);
619 XtManageChild(widget
);
621 wxSizeEvent
sizeEvent(wxSize(width
, height
), GetId());
622 sizeEvent
.SetEventObject(this);
624 GetEventHandler()->ProcessEvent(sizeEvent
);
627 void wxWindow::SetClientSize(int width
, int height
)
631 CanvasSetClientSize(width
, height
);
635 Widget widget
= (Widget
) GetTopWidget();
638 XtVaSetValues(widget
, XmNwidth
, width
, NULL
);
640 XtVaSetValues(widget
, XmNheight
, height
, NULL
);
642 wxSizeEvent
sizeEvent(wxSize(width
, height
), GetId());
643 sizeEvent
.SetEventObject(this);
645 GetEventHandler()->ProcessEvent(sizeEvent
);
648 // For implementation purposes - sometimes decorations make the client area
650 wxPoint
wxWindow::GetClientAreaOrigin() const
652 return wxPoint(0, 0);
655 // Makes an adjustment to the window position (for example, a frame that has
656 // a toolbar that it manages itself).
657 void wxWindow::AdjustForParentClientOrigin(int& x
, int& y
, int sizeFlags
)
659 if (((sizeFlags
& wxSIZE_NO_ADJUSTMENTS
) == 0) && GetParent())
661 wxPoint
pt(GetParent()->GetClientAreaOrigin());
662 x
+= pt
.x
; y
+= pt
.y
;
666 bool wxWindow::Show(bool show
)
670 if (m_borderWidget
|| m_scrolledWindow
)
672 XtMapWidget(m_borderWidget
? (Widget
) m_borderWidget
: (Widget
) m_scrolledWindow
);
676 XtMapWidget((Widget
) GetTopWidget());
681 if (m_borderWidget
|| m_scrolledWindow
)
683 XtUnmapWidget(m_borderWidget
? (Widget
) m_borderWidget
: (Widget
) m_scrolledWindow
);
687 XtUnmapWidget((Widget
) GetTopWidget());
692 Window xwin = (Window) GetXWindow();
693 Display *xdisp = (Display*) GetXDisplay();
695 XMapWindow(xdisp, xwin);
697 XUnmapWindow(xdisp, xwin);
705 bool wxWindow::IsShown() const
710 int wxWindow::GetCharHeight() const
716 int wxWindow::GetCharWidth() const
722 void wxWindow::GetTextExtent(const wxString
& string
, int *x
, int *y
,
723 int *descent
, int *externalLeading
, const wxFont
*theFont
, bool) const
725 wxFont
*fontToUse
= (wxFont
*)theFont
;
727 fontToUse
= (wxFont
*) & m_windowFont
;
732 void wxWindow::Refresh(bool eraseBack
, const wxRectangle
*rect
)
734 Display
*display
= XtDisplay((Widget
) GetMainWidget());
735 Window thisWindow
= XtWindow((Widget
) GetMainWidget());
737 XExposeEvent dummyEvent
;
739 GetSize(&width
, &height
);
741 dummyEvent
.type
= Expose
;
742 dummyEvent
.display
= display
;
743 dummyEvent
.send_event
= True
;
744 dummyEvent
.window
= thisWindow
;
747 dummyEvent
.x
= rect
->x
;
748 dummyEvent
.y
= rect
->y
;
749 dummyEvent
.width
= rect
->width
;
750 dummyEvent
.height
= rect
->height
;
756 dummyEvent
.width
= width
;
757 dummyEvent
.height
= height
;
759 dummyEvent
.count
= 0;
764 wxBrush
backgroundBrush(GetBackgroundColour(), wxSOLID
);
765 dc
.SetBackground(backgroundBrush
);
769 XSendEvent(display
, thisWindow
, False
, ExposureMask
, (XEvent
*)&dummyEvent
);
772 // Responds to colour changes: passes event on to children.
773 void wxWindow::OnSysColourChanged(wxSysColourChangedEvent
& event
)
775 wxNode
*node
= GetChildren()->First();
778 // Only propagate to non-top-level windows
779 wxWindow
*win
= (wxWindow
*)node
->Data();
780 if ( win
->GetParent() )
782 wxSysColourChangedEvent event2
;
783 event
.m_eventObject
= win
;
784 win
->GetEventHandler()->ProcessEvent(event2
);
791 // This can be called by the app (or wxWindows) to do default processing for the current
792 // event. Save message/event info in wxWindow so they can be used in this function.
793 long wxWindow::Default()
799 void wxWindow::InitDialog()
801 wxInitDialogEvent
event(GetId());
802 event
.SetEventObject( this );
803 GetEventHandler()->ProcessEvent(event
);
806 // Default init dialog behaviour is to transfer data to window
807 void wxWindow::OnInitDialog(wxInitDialogEvent
& event
)
809 TransferDataToWindow();
812 // Caret manipulation
813 void wxWindow::CreateCaret(int w
, int h
)
817 m_caretEnabled
= TRUE
;
820 void wxWindow::CreateCaret(const wxBitmap
*WXUNUSED(bitmap
))
825 void wxWindow::ShowCaret(bool show
)
830 void wxWindow::DestroyCaret()
833 m_caretEnabled
= FALSE
;
836 void wxWindow::SetCaretPos(int x
, int y
)
841 void wxWindow::GetCaretPos(int *x
, int *y
) const
846 wxWindow
*wxGetActiveWindow()
852 void wxWindow::SetSizeHints(int minW
, int minH
, int maxW
, int maxH
, int incW
, int incH
)
859 if (!this->IsKindOf(CLASSINFO(wxFrame
)))
862 wxFrame
*frame
= (wxFrame
*)this;
864 /* Uncomment when wxFrame implemented
866 XtVaSetValues((Widget) frame->m_frameShell, XmNminWidth, minW, NULL);
868 XtVaSetValues((Widget) frame->m_frameShell, XmNminHeight, minH, NULL);
870 XtVaSetValues((Widget) frame->m_frameShell, XmNmaxWidth, maxW, NULL);
872 XtVaSetValues((Widget) frame->m_frameShell, XmNmaxHeight, maxH, NULL);
874 XtVaSetValues((Widget) frame->m_frameShell, XmNwidthInc, incW, NULL);
876 XtVaSetValues((Widget) frame->m_frameShell, XmNheightInc, incH, NULL);
880 void wxWindow::Centre(int direction
)
882 int x
, y
, width
, height
, panel_width
, panel_height
, new_x
, new_y
;
884 wxWindow
*father
= (wxWindow
*)GetParent();
888 father
->GetClientSize(&panel_width
, &panel_height
);
889 GetSize(&width
, &height
);
895 if (direction
& wxHORIZONTAL
)
896 new_x
= (int)((panel_width
- width
)/2);
898 if (direction
& wxVERTICAL
)
899 new_y
= (int)((panel_height
- height
)/2);
901 SetSize(new_x
, new_y
, -1, -1);
905 // Coordinates relative to the window
906 void wxWindow::WarpPointer (int x
, int y
)
908 XWarpPointer (XtDisplay((Widget
) GetClientWidget()), None
, XtWindow((Widget
) GetClientWidget()), 0, 0, 0, 0, x
, y
);
911 void wxWindow::OnEraseBackground(wxEraseEvent
& event
)
917 int wxWindow::GetScrollPos(int orient
) const
923 // This now returns the whole range, not just the number
924 // of positions that we can scroll.
925 int wxWindow::GetScrollRange(int orient
) const
931 int wxWindow::GetScrollThumb(int orient
) const
937 void wxWindow::SetScrollPos(int orient
, int pos
, bool refresh
)
943 // New function that will replace some of the above.
944 void wxWindow::SetScrollbar(int orient
, int pos
, int thumbVisible
,
945 int range
, bool refresh
)
950 // Does a physical scroll
951 void wxWindow::ScrollWindow(int dx
, int dy
, const wxRectangle
*rect
)
957 void wxWindow::SetFont(const wxFont
& font
)
961 Widget w
= (Widget
) GetMainWidget();
962 if (w
&& m_windowFont
.Ok())
965 XmNfontList
, (XmFontList
) m_windowFont
.GetFontList(1.0, XtDisplay(w
)),
970 void wxWindow::OnChar(wxKeyEvent
& event
)
972 if ( event
.KeyCode() == WXK_TAB
) {
973 // propagate the TABs to the parent - it's up to it to decide what
976 if ( GetParent()->ProcessEvent(event
) )
982 void wxWindow::OnPaint(wxPaintEvent
& event
)
987 bool wxWindow::IsEnabled() const
993 // Dialog support: override these and call
994 // base class members to add functionality
995 // that can't be done using validators.
996 // NOTE: these functions assume that controls
997 // are direct children of this window, not grandchildren
998 // or other levels of descendant.
1000 // Transfer values to controls. If returns FALSE,
1001 // it's an application error (pops up a dialog)
1002 bool wxWindow::TransferDataToWindow()
1004 wxNode
*node
= GetChildren()->First();
1007 wxWindow
*child
= (wxWindow
*)node
->Data();
1008 if ( child
->GetValidator() &&
1009 !child
->GetValidator()->TransferToWindow() )
1011 wxMessageBox("Application Error", "Could not transfer data to window", wxOK
|wxICON_EXCLAMATION
);
1015 node
= node
->Next();
1020 // Transfer values from controls. If returns FALSE,
1021 // validation failed: don't quit
1022 bool wxWindow::TransferDataFromWindow()
1024 wxNode
*node
= GetChildren()->First();
1027 wxWindow
*child
= (wxWindow
*)node
->Data();
1028 if ( child
->GetValidator() && !child
->GetValidator()->TransferFromWindow() )
1033 node
= node
->Next();
1038 bool wxWindow::Validate()
1040 wxNode
*node
= GetChildren()->First();
1043 wxWindow
*child
= (wxWindow
*)node
->Data();
1044 if ( child
->GetValidator() && /* child->GetValidator()->Ok() && */ !child
->GetValidator()->Validate(this) )
1049 node
= node
->Next();
1054 // Get the window with the focus
1055 wxWindow
*wxWindow::FindFocus()
1061 void wxWindow::AddChild(wxWindow
*child
)
1063 GetChildren()->Append(child
);
1064 child
->m_windowParent
= this;
1067 void wxWindow::RemoveChild(wxWindow
*child
)
1070 GetChildren()->DeleteObject(child
);
1071 child
->m_windowParent
= NULL
;
1074 void wxWindow::DestroyChildren()
1076 if (GetChildren()) {
1078 while ((node
= GetChildren()->First()) != (wxNode
*)NULL
) {
1080 if ((child
= (wxWindow
*)node
->Data()) != (wxWindow
*)NULL
) {
1082 if ( GetChildren()->Member(child
) )
1089 void wxWindow::MakeModal(bool modal
)
1091 // Disable all other windows
1092 if (this->IsKindOf(CLASSINFO(wxDialog
)) || this->IsKindOf(CLASSINFO(wxFrame
)))
1094 wxNode
*node
= wxTopLevelWindows
.First();
1097 wxWindow
*win
= (wxWindow
*)node
->Data();
1099 win
->Enable(!modal
);
1101 node
= node
->Next();
1106 // If nothing defined for this, try the parent.
1107 // E.g. we may be a button loaded from a resource, with no callback function
1109 void wxWindow::OnCommand(wxWindow
& win
, wxCommandEvent
& event
)
1111 if (GetEventHandler()->ProcessEvent(event
) )
1114 m_windowParent
->GetEventHandler()->OnCommand(win
, event
);
1117 void wxWindow::SetConstraints(wxLayoutConstraints
*c
)
1121 UnsetConstraints(m_constraints
);
1122 delete m_constraints
;
1127 // Make sure other windows know they're part of a 'meaningful relationship'
1128 if (m_constraints
->left
.GetOtherWindow() && (m_constraints
->left
.GetOtherWindow() != this))
1129 m_constraints
->left
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
1130 if (m_constraints
->top
.GetOtherWindow() && (m_constraints
->top
.GetOtherWindow() != this))
1131 m_constraints
->top
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
1132 if (m_constraints
->right
.GetOtherWindow() && (m_constraints
->right
.GetOtherWindow() != this))
1133 m_constraints
->right
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
1134 if (m_constraints
->bottom
.GetOtherWindow() && (m_constraints
->bottom
.GetOtherWindow() != this))
1135 m_constraints
->bottom
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
1136 if (m_constraints
->width
.GetOtherWindow() && (m_constraints
->width
.GetOtherWindow() != this))
1137 m_constraints
->width
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
1138 if (m_constraints
->height
.GetOtherWindow() && (m_constraints
->height
.GetOtherWindow() != this))
1139 m_constraints
->height
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
1140 if (m_constraints
->centreX
.GetOtherWindow() && (m_constraints
->centreX
.GetOtherWindow() != this))
1141 m_constraints
->centreX
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
1142 if (m_constraints
->centreY
.GetOtherWindow() && (m_constraints
->centreY
.GetOtherWindow() != this))
1143 m_constraints
->centreY
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
1147 // This removes any dangling pointers to this window
1148 // in other windows' constraintsInvolvedIn lists.
1149 void wxWindow::UnsetConstraints(wxLayoutConstraints
*c
)
1153 if (c
->left
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this))
1154 c
->left
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
1155 if (c
->top
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this))
1156 c
->top
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
1157 if (c
->right
.GetOtherWindow() && (c
->right
.GetOtherWindow() != this))
1158 c
->right
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
1159 if (c
->bottom
.GetOtherWindow() && (c
->bottom
.GetOtherWindow() != this))
1160 c
->bottom
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
1161 if (c
->width
.GetOtherWindow() && (c
->width
.GetOtherWindow() != this))
1162 c
->width
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
1163 if (c
->height
.GetOtherWindow() && (c
->height
.GetOtherWindow() != this))
1164 c
->height
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
1165 if (c
->centreX
.GetOtherWindow() && (c
->centreX
.GetOtherWindow() != this))
1166 c
->centreX
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
1167 if (c
->centreY
.GetOtherWindow() && (c
->centreY
.GetOtherWindow() != this))
1168 c
->centreY
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
1172 // Back-pointer to other windows we're involved with, so if we delete
1173 // this window, we must delete any constraints we're involved with.
1174 void wxWindow::AddConstraintReference(wxWindow
*otherWin
)
1176 if (!m_constraintsInvolvedIn
)
1177 m_constraintsInvolvedIn
= new wxList
;
1178 if (!m_constraintsInvolvedIn
->Member(otherWin
))
1179 m_constraintsInvolvedIn
->Append(otherWin
);
1182 // REMOVE back-pointer to other windows we're involved with.
1183 void wxWindow::RemoveConstraintReference(wxWindow
*otherWin
)
1185 if (m_constraintsInvolvedIn
)
1186 m_constraintsInvolvedIn
->DeleteObject(otherWin
);
1189 // Reset any constraints that mention this window
1190 void wxWindow::DeleteRelatedConstraints()
1192 if (m_constraintsInvolvedIn
)
1194 wxNode
*node
= m_constraintsInvolvedIn
->First();
1197 wxWindow
*win
= (wxWindow
*)node
->Data();
1198 wxNode
*next
= node
->Next();
1199 wxLayoutConstraints
*constr
= win
->GetConstraints();
1201 // Reset any constraints involving this window
1204 constr
->left
.ResetIfWin((wxWindow
*)this);
1205 constr
->top
.ResetIfWin((wxWindow
*)this);
1206 constr
->right
.ResetIfWin((wxWindow
*)this);
1207 constr
->bottom
.ResetIfWin((wxWindow
*)this);
1208 constr
->width
.ResetIfWin((wxWindow
*)this);
1209 constr
->height
.ResetIfWin((wxWindow
*)this);
1210 constr
->centreX
.ResetIfWin((wxWindow
*)this);
1211 constr
->centreY
.ResetIfWin((wxWindow
*)this);
1216 delete m_constraintsInvolvedIn
;
1217 m_constraintsInvolvedIn
= NULL
;
1221 void wxWindow::SetSizer(wxSizer
*sizer
)
1223 m_windowSizer
= sizer
;
1225 sizer
->SetSizerParent((wxWindow
*)this);
1232 bool wxWindow::Layout()
1234 if (GetConstraints())
1237 GetClientSize(&w
, &h
);
1238 GetConstraints()->width
.SetValue(w
);
1239 GetConstraints()->height
.SetValue(h
);
1242 // If top level (one sizer), evaluate the sizer's constraints.
1246 GetSizer()->ResetConstraints(); // Mark all constraints as unevaluated
1247 GetSizer()->LayoutPhase1(&noChanges
);
1248 GetSizer()->LayoutPhase2(&noChanges
);
1249 GetSizer()->SetConstraintSizes(); // Recursively set the real window sizes
1254 // Otherwise, evaluate child constraints
1255 ResetConstraints(); // Mark all constraints as unevaluated
1256 DoPhase(1); // Just one phase need if no sizers involved
1258 SetConstraintSizes(); // Recursively set the real window sizes
1264 // Do a phase of evaluating constraints:
1265 // the default behaviour. wxSizers may do a similar
1266 // thing, but also impose their own 'constraints'
1267 // and order the evaluation differently.
1268 bool wxWindow::LayoutPhase1(int *noChanges
)
1270 wxLayoutConstraints
*constr
= GetConstraints();
1273 return constr
->SatisfyConstraints((wxWindow
*)this, noChanges
);
1279 bool wxWindow::LayoutPhase2(int *noChanges
)
1289 // Do a phase of evaluating child constraints
1290 bool wxWindow::DoPhase(int phase
)
1292 int noIterations
= 0;
1293 int maxIterations
= 500;
1297 while ((noChanges
> 0) && (noIterations
< maxIterations
))
1301 wxNode
*node
= GetChildren()->First();
1304 wxWindow
*child
= (wxWindow
*)node
->Data();
1305 if (!child
->IsKindOf(CLASSINFO(wxFrame
)) && !child
->IsKindOf(CLASSINFO(wxDialog
)))
1307 wxLayoutConstraints
*constr
= child
->GetConstraints();
1310 if (succeeded
.Member(child
))
1315 int tempNoChanges
= 0;
1316 bool success
= ( (phase
== 1) ? child
->LayoutPhase1(&tempNoChanges
) : child
->LayoutPhase2(&tempNoChanges
) ) ;
1317 noChanges
+= tempNoChanges
;
1320 succeeded
.Append(child
);
1325 node
= node
->Next();
1332 void wxWindow::ResetConstraints()
1334 wxLayoutConstraints
*constr
= GetConstraints();
1337 constr
->left
.SetDone(FALSE
);
1338 constr
->top
.SetDone(FALSE
);
1339 constr
->right
.SetDone(FALSE
);
1340 constr
->bottom
.SetDone(FALSE
);
1341 constr
->width
.SetDone(FALSE
);
1342 constr
->height
.SetDone(FALSE
);
1343 constr
->centreX
.SetDone(FALSE
);
1344 constr
->centreY
.SetDone(FALSE
);
1346 wxNode
*node
= GetChildren()->First();
1349 wxWindow
*win
= (wxWindow
*)node
->Data();
1350 if (!win
->IsKindOf(CLASSINFO(wxFrame
)) && !win
->IsKindOf(CLASSINFO(wxDialog
)))
1351 win
->ResetConstraints();
1352 node
= node
->Next();
1356 // Need to distinguish between setting the 'fake' size for
1357 // windows and sizers, and setting the real values.
1358 void wxWindow::SetConstraintSizes(bool recurse
)
1360 wxLayoutConstraints
*constr
= GetConstraints();
1361 if (constr
&& constr
->left
.GetDone() && constr
->right
.GetDone() &&
1362 constr
->width
.GetDone() && constr
->height
.GetDone())
1364 int x
= constr
->left
.GetValue();
1365 int y
= constr
->top
.GetValue();
1366 int w
= constr
->width
.GetValue();
1367 int h
= constr
->height
.GetValue();
1369 // If we don't want to resize this window, just move it...
1370 if ((constr
->width
.GetRelationship() != wxAsIs
) ||
1371 (constr
->height
.GetRelationship() != wxAsIs
))
1373 // Calls Layout() recursively. AAAGH. How can we stop that.
1374 // Simply take Layout() out of non-top level OnSizes.
1375 SizerSetSize(x
, y
, w
, h
);
1384 char *windowClass
= this->GetClassInfo()->GetClassName();
1387 if (GetName() == "")
1388 winName
= "unnamed";
1390 winName
= GetName();
1391 wxDebugMsg("Constraint(s) not satisfied for window of type %s, name %s:\n", (const char *)windowClass
, (const char *)winName
);
1392 if (!constr
->left
.GetDone())
1393 wxDebugMsg(" unsatisfied 'left' constraint.\n");
1394 if (!constr
->right
.GetDone())
1395 wxDebugMsg(" unsatisfied 'right' constraint.\n");
1396 if (!constr
->width
.GetDone())
1397 wxDebugMsg(" unsatisfied 'width' constraint.\n");
1398 if (!constr
->height
.GetDone())
1399 wxDebugMsg(" unsatisfied 'height' constraint.\n");
1400 wxDebugMsg("Please check constraints: try adding AsIs() constraints.\n");
1405 wxNode
*node
= GetChildren()->First();
1408 wxWindow
*win
= (wxWindow
*)node
->Data();
1409 if (!win
->IsKindOf(CLASSINFO(wxFrame
)) && !win
->IsKindOf(CLASSINFO(wxDialog
)))
1410 win
->SetConstraintSizes();
1411 node
= node
->Next();
1416 // This assumes that all sizers are 'on' the same
1417 // window, i.e. the parent of this window.
1418 void wxWindow::TransformSizerToActual(int *x
, int *y
) const
1420 if (!m_sizerParent
|| m_sizerParent
->IsKindOf(CLASSINFO(wxDialog
)) ||
1421 m_sizerParent
->IsKindOf(CLASSINFO(wxFrame
)) )
1425 m_sizerParent
->GetPosition(&xp
, &yp
);
1426 m_sizerParent
->TransformSizerToActual(&xp
, &yp
);
1431 void wxWindow::SizerSetSize(int x
, int y
, int w
, int h
)
1435 TransformSizerToActual(&xx
, &yy
);
1436 SetSize(xx
, yy
, w
, h
);
1439 void wxWindow::SizerMove(int x
, int y
)
1443 TransformSizerToActual(&xx
, &yy
);
1447 // Only set the size/position of the constraint (if any)
1448 void wxWindow::SetSizeConstraint(int x
, int y
, int w
, int h
)
1450 wxLayoutConstraints
*constr
= GetConstraints();
1455 constr
->left
.SetValue(x
);
1456 constr
->left
.SetDone(TRUE
);
1460 constr
->top
.SetValue(y
);
1461 constr
->top
.SetDone(TRUE
);
1465 constr
->width
.SetValue(w
);
1466 constr
->width
.SetDone(TRUE
);
1470 constr
->height
.SetValue(h
);
1471 constr
->height
.SetDone(TRUE
);
1476 void wxWindow::MoveConstraint(int x
, int y
)
1478 wxLayoutConstraints
*constr
= GetConstraints();
1483 constr
->left
.SetValue(x
);
1484 constr
->left
.SetDone(TRUE
);
1488 constr
->top
.SetValue(y
);
1489 constr
->top
.SetDone(TRUE
);
1494 void wxWindow::GetSizeConstraint(int *w
, int *h
) const
1496 wxLayoutConstraints
*constr
= GetConstraints();
1499 *w
= constr
->width
.GetValue();
1500 *h
= constr
->height
.GetValue();
1506 void wxWindow::GetClientSizeConstraint(int *w
, int *h
) const
1508 wxLayoutConstraints
*constr
= GetConstraints();
1511 *w
= constr
->width
.GetValue();
1512 *h
= constr
->height
.GetValue();
1515 GetClientSize(w
, h
);
1518 void wxWindow::GetPositionConstraint(int *x
, int *y
) const
1520 wxLayoutConstraints
*constr
= GetConstraints();
1523 *x
= constr
->left
.GetValue();
1524 *y
= constr
->top
.GetValue();
1530 bool wxWindow::Close(bool force
)
1532 wxCloseEvent
event(wxEVT_CLOSE_WINDOW
, m_windowId
);
1533 event
.SetEventObject(this);
1534 event
.SetForce(force
);
1536 return GetEventHandler()->ProcessEvent(event
);
1539 wxObject
* wxWindow::GetChild(int number
) const
1541 // Return a pointer to the Nth object in the window
1544 wxNode
*node
= GetChildren()->First();
1547 node
= node
->Next() ;
1550 wxObject
*obj
= (wxObject
*)node
->Data();
1557 void wxWindow::OnDefaultAction(wxControl
*initiatingItem
)
1559 // Obsolete function
1562 void wxWindow::Clear()
1564 wxClientDC
dc(this);
1565 wxBrush
brush(GetBackgroundColour(), wxSOLID
);
1566 dc
.SetBackground(brush
);
1570 // Fits the panel around the items
1571 void wxWindow::Fit()
1575 wxNode
*node
= GetChildren()->First();
1578 wxWindow
*win
= (wxWindow
*)node
->Data();
1580 win
->GetPosition(&wx
, &wy
);
1581 win
->GetSize(&ww
, &wh
);
1582 if ( wx
+ ww
> maxX
)
1584 if ( wy
+ wh
> maxY
)
1587 node
= node
->Next();
1589 SetClientSize(maxX
+ 5, maxY
+ 5);
1592 void wxWindow::SetValidator(const wxValidator
& validator
)
1594 if ( m_windowValidator
)
1595 delete m_windowValidator
;
1596 m_windowValidator
= validator
.Clone();
1598 if ( m_windowValidator
)
1599 m_windowValidator
->SetWindow(this) ;
1602 // Find a window by id or name
1603 wxWindow
*wxWindow::FindWindow(long id
)
1608 wxNode
*node
= GetChildren()->First();
1611 wxWindow
*child
= (wxWindow
*)node
->Data();
1612 wxWindow
*found
= child
->FindWindow(id
);
1615 node
= node
->Next();
1620 wxWindow
*wxWindow::FindWindow(const wxString
& name
)
1622 if ( GetName() == name
)
1625 wxNode
*node
= GetChildren()->First();
1628 wxWindow
*child
= (wxWindow
*)node
->Data();
1629 wxWindow
*found
= child
->FindWindow(name
);
1632 node
= node
->Next();
1637 void wxWindow::OnIdle(wxIdleEvent
& event
)
1639 /* TODO: you may need to do something like this
1640 * if your GUI doesn't generate enter/leave events
1642 // Check if we need to send a LEAVE event
1643 if (m_mouseInWindow)
1646 ::GetCursorPos(&pt);
1647 if (::WindowFromPoint(pt) != (HWND) GetHWND())
1649 // Generate a LEAVE event
1650 m_mouseInWindow = FALSE;
1651 MSWOnMouseLeave(pt.x, pt.y, 0);
1656 // This calls the UI-update mechanism (querying windows for
1657 // menu/toolbar/control state information)
1661 // Raise the window to the top of the Z order
1662 void wxWindow::Raise()
1664 Window window
= XtWindow((Widget
) GetTopWidget());
1665 XRaiseWindow(XtDisplay((Widget
) GetTopWidget()), window
);
1668 // Lower the window to the bottom of the Z order
1669 void wxWindow::Lower()
1671 Window window
= XtWindow((Widget
) GetTopWidget());
1672 XLowerWindow(XtDisplay((Widget
) GetTopWidget()), window
);
1675 bool wxWindow::AcceptsFocus() const
1677 return IsShown() && IsEnabled();
1680 // Update region access
1681 wxRegion
wxWindow::GetUpdateRegion() const
1683 return m_updateRegion
;
1686 bool wxWindow::IsExposed(int x
, int y
, int w
, int h
) const
1688 return (m_updateRegion
.Contains(x
, y
, w
, h
) != wxOutRegion
);
1691 bool wxWindow::IsExposed(const wxPoint
& pt
) const
1693 return (m_updateRegion
.Contains(pt
) != wxOutRegion
);
1696 bool wxWindow::IsExposed(const wxRect
& rect
) const
1698 return (m_updateRegion
.Contains(rect
) != wxOutRegion
);
1702 * Allocates control IDs
1705 int wxWindow::NewControlId()
1707 static int s_controlId
= 0;
1712 void wxWindow::SetAcceleratorTable(const wxAcceleratorTable
& accel
)
1714 m_acceleratorTable
= accel
;
1717 // All widgets should have this as their resize proc.
1718 // OnSize sent to wxWindow via client data.
1719 void wxWidgetResizeProc(Widget w
, XConfigureEvent
*event
, String args
[], int *num_args
)
1721 wxWindow
*win
= (wxWindow
*)wxWidgetHashTable
->Get((long)w
);
1725 if (win
->PreResize())
1728 win
->GetSize(&width
, &height
);
1729 wxSizeEvent
sizeEvent(wxSize(width
, height
), win
->GetId());
1730 sizeEvent
.SetEventObject(win
);
1731 win
->GetEventHandler()->ProcessEvent(sizeEvent
);
1735 bool wxAddWindowToTable(Widget w
, wxWindow
*win
)
1737 wxWindow
*oldItem
= NULL
;
1739 // printf("Adding widget %ld, name = %s\n", w, win->GetClassInfo()->GetClassName());
1741 if ((oldItem
= (wxWindow
*)wxWidgetHashTable
->Get ((long) w
)))
1744 sprintf(buf
, "Widget table clash: new widget is %ld, %s", (long)w
, win
->GetClassInfo()->GetClassName());
1747 sprintf(buf
, "Old widget was %s", oldItem
->GetClassInfo()->GetClassName());
1752 wxWidgetHashTable
->Put ((long) w
, win
);
1756 wxWindow
*wxGetWindowFromTable(Widget w
)
1758 return (wxWindow
*)wxWidgetHashTable
->Get ((long) w
);
1761 void wxDeleteWindowFromTable(Widget w
)
1763 wxWidgetHashTable
->Delete((long)w
);
1766 // Get the underlying X window and display
1767 WXWindow
wxWindow::GetXWindow() const
1769 return (WXWindow
) XtWindow((Widget
) GetMainWidget());
1772 WXDisplay
*wxWindow::GetXDisplay() const
1774 return (WXDisplay
*) XtDisplay((Widget
) GetMainWidget());
1777 WXWidget
wxWindow::GetMainWidget() const
1780 return m_drawingArea
;
1782 return m_mainWidget
;
1785 WXWidget
wxWindow::GetClientWidget() const
1787 if (m_drawingArea
!= (WXWidget
) 0)
1788 return m_drawingArea
;
1790 return GetMainWidget();
1793 WXWidget
wxWindow::GetTopWidget() const
1795 return GetMainWidget();
1798 void wxCanvasRepaintProc (Widget drawingArea
, XtPointer clientData
,
1799 XmDrawingAreaCallbackStruct
* cbs
)
1801 if (!wxWidgetHashTable
->Get ((long) (Widget
) drawingArea
))
1804 XEvent
* event
= cbs
->event
;
1805 wxWindow
* canvas
= (wxWindow
*) clientData
;
1806 Display
* display
= (Display
*) canvas
->GetXDisplay();
1807 // GC gc = (GC) canvas->GetDC()->gc;
1809 switch (event
->type
)
1814 wxCanvasDC* canvasDC = canvas->GetDC();
1817 if (canvasDC->onpaint_reg)
1818 XDestroyRegion(canvasDC->onpaint_reg);
1819 canvasDC->onpaint_reg = XCreateRegion();
1824 int n
= canvas
->m_updateRects
.Number();
1825 XRectangle
* xrects
= new XRectangle
[n
];
1827 for (i
= 0; i
< canvas
->m_updateRects
.Number(); i
++)
1829 wxRect
* rect
= (wxRect
*) canvas
->m_updateRects
.Nth(i
)->Data();
1830 xrects
[i
].x
= rect
->x
;
1831 xrects
[i
].y
= rect
->y
;
1832 xrects
[i
].width
= rect
->width
;
1833 xrects
[i
].height
= rect
->height
;
1834 /* TODO (?) Actually ignore it I think.
1836 XUnionRectWithRegion(&(xrects[i]), canvasDC->onpaint_reg,
1837 canvasDC->onpaint_reg);
1840 /* TODO must clip the area being repainted. So we need a gc.
1841 * Alternatively, wxPaintDC must do the clipping
1842 * when it's created.
1843 XSetClipRectangles(display, gc, 0, 0, xrects, n, Unsorted);
1846 canvas
->DoPaint() ; // xrects, n);
1849 canvas
->m_updateRects
.Clear();
1854 XDestroyRegion(canvasDC->onpaint_reg);
1855 canvasDC->onpaint_reg = NULL;
1859 gc_val.clip_mask = None;
1860 XChangeGC(display, gc, GCClipMask, &gc_val);
1867 cout
<< "\n\nNew Event ! is = " << event
-> type
<< "\n";
1873 // Unable to deal with Enter/Leave without a separate EventHandler (Motif 1.1.4)
1875 wxCanvasEnterLeave (Widget drawingArea
, XtPointer clientData
, XCrossingEvent
* event
)
1877 XmDrawingAreaCallbackStruct cbs
;
1880 //if (event->mode!=NotifyNormal)
1883 // ev = *((XEvent *) event); // Causes Purify error (copying too many bytes)
1884 ((XCrossingEvent
&) ev
) = *event
;
1886 cbs
.reason
= XmCR_INPUT
;
1889 wxCanvasInputEvent (drawingArea
, (XtPointer
) NULL
, &cbs
);
1892 // Fix to make it work under Motif 1.0 (!)
1893 void wxCanvasMotionEvent (Widget drawingArea
, XButtonEvent
* event
)
1897 XmDrawingAreaCallbackStruct cbs
;
1900 //ev.xbutton = *event;
1901 ev
= *((XEvent
*) event
);
1902 cbs
.reason
= XmCR_INPUT
;
1905 wxCanvasInputEvent (drawingArea
, (XtPointer
) NULL
, &cbs
);
1909 void wxCanvasInputEvent (Widget drawingArea
, XtPointer data
, XmDrawingAreaCallbackStruct
* cbs
)
1911 wxWindow
*canvas
= (wxWindow
*) wxWidgetHashTable
->Get ((long) (Widget
) drawingArea
);
1917 if (cbs
->reason
!= XmCR_INPUT
)
1920 local_event
= *(cbs
->event
); // We must keep a copy!
1922 switch (local_event
.xany
.type
)
1930 wxEventType eventType
= wxEVT_NULL
;
1932 if (local_event
.xany
.type
== EnterNotify
)
1934 //if (local_event.xcrossing.mode!=NotifyNormal)
1935 // return ; // Ignore grab events
1936 eventType
= wxEVT_ENTER_WINDOW
;
1937 // canvas->GetEventHandler()->OnSetFocus();
1939 else if (local_event
.xany
.type
== LeaveNotify
)
1941 //if (local_event.xcrossing.mode!=NotifyNormal)
1942 // return ; // Ignore grab events
1943 eventType
= wxEVT_LEAVE_WINDOW
;
1944 // canvas->GetEventHandler()->OnKillFocus();
1946 else if (local_event
.xany
.type
== MotionNotify
)
1948 eventType
= wxEVT_MOTION
;
1949 if (local_event
.xmotion
.is_hint
== NotifyHint
)
1952 Display
*dpy
= XtDisplay (drawingArea
);
1954 XQueryPointer (dpy
, XtWindow (drawingArea
),
1956 &local_event
.xmotion
.x_root
,
1957 &local_event
.xmotion
.y_root
,
1958 &local_event
.xmotion
.x
,
1959 &local_event
.xmotion
.y
,
1960 &local_event
.xmotion
.state
);
1967 else if (local_event
.xany
.type
== ButtonPress
)
1969 if (local_event
.xbutton
.button
== Button1
)
1971 eventType
= wxEVT_LEFT_DOWN
;
1972 canvas
->m_button1Pressed
= TRUE
;
1974 else if (local_event
.xbutton
.button
== Button2
)
1976 eventType
= wxEVT_MIDDLE_DOWN
;
1977 canvas
->m_button2Pressed
= TRUE
;
1979 else if (local_event
.xbutton
.button
== Button3
)
1981 eventType
= wxEVT_RIGHT_DOWN
;
1982 canvas
->m_button3Pressed
= TRUE
;
1985 else if (local_event
.xany
.type
== ButtonRelease
)
1987 if (local_event
.xbutton
.button
== Button1
)
1989 eventType
= wxEVT_LEFT_UP
;
1990 canvas
->m_button1Pressed
= FALSE
;
1992 else if (local_event
.xbutton
.button
== Button2
)
1994 eventType
= wxEVT_MIDDLE_UP
;
1995 canvas
->m_button2Pressed
= FALSE
;
1997 else if (local_event
.xbutton
.button
== Button3
)
1999 eventType
= wxEVT_RIGHT_UP
;
2000 canvas
->m_button3Pressed
= FALSE
;
2004 wxMouseEvent
wxevent (eventType
);
2005 wxevent
.m_eventHandle
= (char *) &local_event
;
2007 wxevent
.m_leftDown
= ((eventType
== wxEVT_LEFT_DOWN
)
2008 || (event_left_is_down (&local_event
)
2009 && (eventType
!= wxEVT_LEFT_UP
)));
2010 wxevent
.m_middleDown
= ((eventType
== wxEVT_MIDDLE_DOWN
)
2011 || (event_middle_is_down (&local_event
)
2012 && (eventType
!= wxEVT_MIDDLE_UP
)));
2013 wxevent
.m_rightDown
= ((eventType
== wxEVT_RIGHT_DOWN
)
2014 || (event_right_is_down (&local_event
)
2015 && (eventType
!= wxEVT_RIGHT_UP
)));
2017 wxevent
.m_shiftDown
= local_event
.xbutton
.state
& ShiftMask
;
2018 wxevent
.m_controlDown
= local_event
.xbutton
.state
& ControlMask
;
2019 wxevent
.m_altDown
= local_event
.xbutton
.state
& Mod3Mask
;
2020 wxevent
.m_metaDown
= local_event
.xbutton
.state
& Mod1Mask
;
2021 wxevent
.SetTimestamp(local_event
.xbutton
.time
);
2023 // Now check if we need to translate this event into a double click
2024 if (TRUE
) // canvas->doubleClickAllowed)
2026 if (wxevent
.ButtonDown())
2028 long dclickTime
= XtGetMultiClickTime((Display
*) wxGetDisplay()) ;
2030 // get button and time-stamp
2032 if (wxevent
.LeftDown()) button
= 1;
2033 else if (wxevent
.MiddleDown()) button
= 2;
2034 else if (wxevent
.RightDown()) button
= 3;
2035 long ts
= wxevent
.GetTimestamp();
2036 // check, if single or double click
2037 if (canvas
->m_lastButton
&& canvas
->m_lastButton
==button
&& (ts
- canvas
->m_lastTS
) < dclickTime
)
2040 canvas
->m_lastButton
= 0;
2041 switch ( eventType
)
2043 case wxEVT_LEFT_DOWN
:
2044 wxevent
.SetEventType(wxEVT_LEFT_DCLICK
);
2046 case wxEVT_MIDDLE_DOWN
:
2047 wxevent
.SetEventType(wxEVT_MIDDLE_DCLICK
);
2049 case wxEVT_RIGHT_DOWN
:
2050 wxevent
.SetEventType(wxEVT_RIGHT_DCLICK
);
2060 // not fast enough or different button
2061 canvas
->m_lastTS
= ts
;
2062 canvas
->m_lastButton
= button
;
2067 wxevent
.SetId(canvas
->GetId());
2068 wxevent
.SetEventObject(canvas
);
2069 canvas
->GetEventHandler()->ProcessEvent (wxevent
);
2071 if (eventType == wxEVT_ENTER_WINDOW ||
2072 eventType == wxEVT_LEAVE_WINDOW ||
2073 eventType == wxEVT_MOTION
2082 // XComposeStatus compose;
2083 // (void) XLookupString ((XKeyEvent *) & local_event, wxBuffer, 20, &keySym, &compose);
2084 (void) XLookupString ((XKeyEvent
*) & local_event
, wxBuffer
, 20, &keySym
, NULL
);
2085 int id
= wxCharCodeXToWX (keySym
);
2087 wxKeyEvent
event (wxEVT_CHAR
);
2089 if (local_event
.xkey
.state
& ShiftMask
)
2090 event
.m_shiftDown
= TRUE
;
2091 if (local_event
.xkey
.state
& ControlMask
)
2092 event
.m_controlDown
= TRUE
;
2093 if (local_event
.xkey
.state
& Mod3Mask
)
2094 event
.m_altDown
= TRUE
;
2095 if (local_event
.xkey
.state
& Mod1Mask
)
2096 event
.m_metaDown
= TRUE
;
2097 event
.SetEventObject(canvas
);
2098 event
.m_keyCode
= id
;
2099 event
.SetTimestamp(local_event
.xkey
.time
);
2103 // Implement wxFrame::OnCharHook by checking ancestor.
2104 wxWindow
*parent
= canvas
->GetParent();
2105 while (parent
&& !parent
->IsKindOf(CLASSINFO(wxFrame
)))
2106 parent
= parent
->GetParent();
2110 event
.SetEventType(wxEVT_CHAR_HOOK
);
2111 if (parent
->GetEventHandler()->ProcessEvent(event
))
2113 event
.SetEventType(wxEVT_CHAR
);
2116 canvas
->GetEventHandler()->ProcessEvent (event
);
2122 if (local_event
.xfocus
.detail
!= NotifyPointer
)
2124 wxFocusEvent
event(wxEVT_SET_FOCUS
, canvas
->GetId());
2125 event
.SetEventObject(canvas
);
2126 canvas
->GetEventHandler()->ProcessEvent(event
);
2132 if (local_event
.xfocus
.detail
!= NotifyPointer
)
2134 wxFocusEvent
event(wxEVT_KILL_FOCUS
, canvas
->GetId());
2135 event
.SetEventObject(canvas
);
2136 canvas
->GetEventHandler()->ProcessEvent(event
);
2145 void wxWindow::DoPaint()
2147 //TODO : make a temporary gc so we can do the XCopyArea below
2148 if (0) // m_backingPixmap)
2151 Widget drawingArea = (Widget) m_drawingArea;
2152 // int orig = GetDC()->GetLogicalFunction();
2153 // GetDC()->SetLogicalFunction (wxCOPY);
2155 // TODO: it may not be necessary to store m_pixmapOffsetX/Y; we
2156 // should be able to calculate them.
2157 XCopyArea (XtDisplay (drawingArea), m_backingPixmap, XtWindow (drawingArea), GetDC ()->gc,
2158 m_pixmapOffsetX, m_pixmapOffsetY,
2159 m_pixmapWidth, m_pixmapHeight,
2162 // GetDC()->SetLogicalFunction (orig);
2167 wxPaintEvent
event(GetId());
2168 event
.SetEventObject(this);
2169 GetEventHandler()->ProcessEvent(event
);
2173 // SetSize, but as per old wxCanvas (with drawing widget etc.)
2174 void wxWindow::CanvasSetSize (int x
, int y
, int w
, int h
, int sizeFlags
)
2176 Widget drawingArea
= (Widget
) m_drawingArea
;
2177 bool managed
= XtIsManaged(m_borderWidget
? (Widget
) m_borderWidget
: (Widget
) m_scrolledWindow
);
2180 XtUnmanageChild (m_borderWidget
? (Widget
) m_borderWidget
: (Widget
) m_scrolledWindow
);
2181 XtVaSetValues((Widget
) m_drawingArea
, XmNresizePolicy
, XmRESIZE_ANY
, NULL
);
2183 if (x
> -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
2185 XtVaSetValues (m_borderWidget
? (Widget
) m_borderWidget
: (Widget
) m_scrolledWindow
,
2189 if (y
> -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
2191 XtVaSetValues (m_borderWidget
? (Widget
) m_borderWidget
: (Widget
) m_scrolledWindow
,
2199 XtVaSetValues ((Widget
) m_borderWidget
, XmNwidth
, w
, NULL
);
2200 short thick
, margin
;
2201 XtVaGetValues ((Widget
) m_borderWidget
,
2202 XmNshadowThickness
, &thick
,
2203 XmNmarginWidth
, &margin
,
2205 w
-= 2 * (thick
+ margin
);
2208 XtVaSetValues ((Widget
) m_scrolledWindow
, XmNwidth
, w
, NULL
);
2212 XtVaGetValues ((Widget
) m_scrolledWindow
,
2213 XmNspacing
, &spacing
,
2214 XmNverticalScrollBar
, &sbar
,
2218 XtVaGetValues (sbar
, XmNwidth
, &wsbar
, NULL
);
2222 w
-= (spacing
+ wsbar
);
2224 XtVaSetValues ((Widget
) m_drawingArea
, XmNwidth
, w
, NULL
);
2230 XtVaSetValues ((Widget
) m_borderWidget
, XmNheight
, h
, NULL
);
2231 short thick
, margin
;
2232 XtVaGetValues ((Widget
) m_borderWidget
,
2233 XmNshadowThickness
, &thick
,
2234 XmNmarginHeight
, &margin
,
2236 h
-= 2 * (thick
+ margin
);
2239 XtVaSetValues ((Widget
) m_scrolledWindow
, XmNheight
, h
, NULL
);
2243 XtVaGetValues ((Widget
) m_scrolledWindow
,
2244 XmNspacing
, &spacing
,
2245 XmNhorizontalScrollBar
, &sbar
,
2249 XtVaGetValues (sbar
, XmNheight
, &wsbar
, NULL
);
2253 h
-= (spacing
+ wsbar
);
2255 XtVaSetValues ((Widget
) m_drawingArea
, XmNheight
, h
, NULL
);
2258 XtManageChild (m_borderWidget
? (Widget
) m_borderWidget
: (Widget
) m_scrolledWindow
);
2259 XtVaSetValues((Widget
) m_drawingArea
, XmNresizePolicy
, XmRESIZE_NONE
, NULL
);
2262 GetClientSize (&ww
, &hh
);
2263 wxSizeEvent
sizeEvent(wxSize(ww
, hh
), GetId());
2264 sizeEvent
.SetEventObject(this);
2266 GetEventHandler()->ProcessEvent(sizeEvent
);
2269 void wxWindow::CanvasSetClientSize (int w
, int h
)
2271 Widget drawingArea
= (Widget
) m_drawingArea
;
2273 XtVaSetValues((Widget
) m_drawingArea
, XmNresizePolicy
, XmRESIZE_ANY
, NULL
);
2276 XtVaSetValues ((Widget
) m_drawingArea
, XmNwidth
, w
, NULL
);
2278 XtVaSetValues ((Widget
) m_drawingArea
, XmNheight
, h
, NULL
);
2279 /* TODO: is this necessary?
2280 allowRepainting = FALSE;
2282 XSync (XtDisplay (drawingArea), FALSE);
2284 while (XtAppPending (wxTheApp->appContext))
2286 XFlush (XtDisplay (drawingArea));
2287 XtAppNextEvent (wxTheApp->appContext, &event);
2288 XtDispatchEvent (&event);
2292 XtVaSetValues((Widget
) m_drawingArea
, XmNresizePolicy
, XmRESIZE_NONE
, NULL
);
2295 allowRepainting = TRUE;
2299 wxSizeEvent
sizeEvent(wxSize(w
, h
), GetId());
2300 sizeEvent
.SetEventObject(this);
2302 GetEventHandler()->ProcessEvent(sizeEvent
);
2305 void wxWindow::CanvasGetClientSize (int *w
, int *h
) const
2307 // Must return the same thing that was set via SetClientSize
2309 XtVaGetValues ((Widget
) m_drawingArea
, XmNwidth
, &xx
, XmNheight
, &yy
, NULL
);
2314 void wxWindow::CanvasGetSize (int *w
, int *h
) const
2317 if ((Widget
) m_borderWidget
)
2318 XtVaGetValues ((Widget
) m_borderWidget
, XmNwidth
, &xx
, XmNheight
, &yy
, NULL
);
2319 else if ((Widget
) m_scrolledWindow
)
2320 XtVaGetValues ((Widget
) m_scrolledWindow
, XmNwidth
, &xx
, XmNheight
, &yy
, NULL
);
2322 XtVaGetValues ((Widget
) m_drawingArea
, XmNwidth
, &xx
, XmNheight
, &yy
, NULL
);
2328 void wxWindow::CanvasGetPosition (int *x
, int *y
) const
2331 XtVaGetValues (m_borderWidget
? (Widget
) m_borderWidget
: (Widget
) m_scrolledWindow
, XmNx
, &xx
, XmNy
, &yy
, NULL
);
2336 // Add to hash table, add event handler
2337 bool wxWindow::AttachWidget (wxWindow
* parent
, WXWidget mainWidget
,
2338 WXWidget formWidget
, int x
, int y
, int width
, int height
)
2340 wxAddWindowToTable((Widget
) mainWidget
, this);
2341 if (CanAddEventHandler())
2343 XtAddEventHandler((Widget
) mainWidget
,
2344 ButtonPressMask
| ButtonReleaseMask
| PointerMotionMask
, // | KeyPressMask,
2346 wxPanelItemEventHandler
,
2353 XtOverrideTranslations ((Widget
) mainWidget
,
2354 ptr
= XtParseTranslationTable ("<Configure>: resize()"));
2355 XtFree ((char *) ptr
);
2358 // Some widgets have a parent form widget, e.g. wxRadioBox
2361 if (!wxAddWindowToTable((Widget
) formWidget
, this))
2365 XtOverrideTranslations ((Widget
) formWidget
,
2366 ptr
= XtParseTranslationTable ("<Configure>: resize()"));
2367 XtFree ((char *) ptr
);
2374 SetSize (x
, y
, width
, height
);
2379 // Remove event handler, remove from hash table
2380 bool wxWindow::DetachWidget(WXWidget widget
)
2382 if (CanAddEventHandler())
2384 XtRemoveEventHandler((Widget
) widget
,
2385 ButtonPressMask
| ButtonReleaseMask
| PointerMotionMask
, // | KeyPressMask,
2387 wxPanelItemEventHandler
,
2391 wxDeleteWindowFromTable((Widget
) widget
);
2395 void wxPanelItemEventHandler (Widget wid
,
2396 XtPointer client_data
,
2398 Boolean
*continueToDispatch
)
2400 // Widget can be a label or the actual widget.
2402 wxWindow
*window
= (wxWindow
*)wxWidgetHashTable
->Get((long)wid
);
2405 wxMouseEvent
wxevent(0);
2406 if (wxTranslateMouseEvent(wxevent
, window
, wid
, event
))
2408 window
->GetEventHandler()->ProcessEvent(wxevent
);
2411 // TODO: probably the key to allowing default behaviour
2413 // Say we set a m_doDefault flag to FALSE at the start of this
2414 // function. Then in e.g. wxWindow::OnMouseEvent we can
2415 // call Default() which sets this flag to TRUE, indicating
2416 // that default processing can happen. Thus, behaviour can appear
2417 // to be overridden just by adding an event handler and not calling
2418 // wxWindow::OnWhatever.
2419 // ALSO, maybe we can use this instead of the current way of handling
2420 // drawing area events, to simplify things.
2421 *continueToDispatch
= True
;
2424 bool wxTranslateMouseEvent(wxMouseEvent
& wxevent
, wxWindow
*win
, Widget widget
, XEvent
*xevent
)
2426 switch (xevent
->xany
.type
)
2434 wxEventType eventType
= wxEVT_NULL
;
2436 if (xevent
->xany
.type
== LeaveNotify
)
2438 win
->m_button1Pressed
= FALSE
;
2439 win
->m_button2Pressed
= FALSE
;
2440 win
->m_button3Pressed
= FALSE
;
2443 else if (xevent
->xany
.type
== MotionNotify
)
2445 eventType
= wxEVT_MOTION
;
2447 else if (xevent
->xany
.type
== ButtonPress
)
2449 if (xevent
->xbutton
.button
== Button1
)
2451 eventType
= wxEVT_LEFT_DOWN
;
2452 win
->m_button1Pressed
= TRUE
;
2454 else if (xevent
->xbutton
.button
== Button2
)
2456 eventType
= wxEVT_MIDDLE_DOWN
;
2457 win
->m_button2Pressed
= TRUE
;
2459 else if (xevent
->xbutton
.button
== Button3
)
2461 eventType
= wxEVT_RIGHT_DOWN
;
2462 win
->m_button3Pressed
= TRUE
;
2465 else if (xevent
->xany
.type
== ButtonRelease
)
2467 if (xevent
->xbutton
.button
== Button1
)
2469 eventType
= wxEVT_LEFT_UP
;
2470 win
->m_button1Pressed
= FALSE
;
2472 else if (xevent
->xbutton
.button
== Button2
)
2474 eventType
= wxEVT_MIDDLE_UP
;
2475 win
->m_button2Pressed
= FALSE
;
2477 else if (xevent
->xbutton
.button
== Button3
)
2479 eventType
= wxEVT_RIGHT_UP
;
2480 win
->m_button3Pressed
= FALSE
;
2486 wxevent
.m_eventHandle
= (char *)xevent
;
2487 wxevent
.SetEventType(eventType
);
2490 XtVaGetValues(widget
, XmNx
, &x1
, XmNy
, &y1
, NULL
);
2493 win
->GetPosition(&x2
, &y2
);
2495 // The button x/y must be translated to wxWindows
2496 // window space - the widget might be a label or button,
2500 if (widget
!= (Widget
)win
->GetMainWidget())
2506 wxevent
.m_x
= xevent
->xbutton
.x
+ dx
;
2507 wxevent
.m_y
= xevent
->xbutton
.y
+ dy
;
2509 wxevent
.m_leftDown
= ((eventType
== wxEVT_LEFT_DOWN
)
2510 || (event_left_is_down (xevent
)
2511 && (eventType
!= wxEVT_LEFT_UP
)));
2512 wxevent
.m_middleDown
= ((eventType
== wxEVT_MIDDLE_DOWN
)
2513 || (event_middle_is_down (xevent
)
2514 && (eventType
!= wxEVT_MIDDLE_UP
)));
2515 wxevent
.m_rightDown
= ((eventType
== wxEVT_RIGHT_DOWN
)
2516 || (event_right_is_down (xevent
)
2517 && (eventType
!= wxEVT_RIGHT_UP
)));
2519 wxevent
.m_shiftDown
= xevent
->xbutton
.state
& ShiftMask
;
2520 wxevent
.m_controlDown
= xevent
->xbutton
.state
& ControlMask
;
2527 bool wxTranslateKeyEvent(wxKeyEvent
& wxevent
, wxWindow
*win
, Widget widget
, XEvent
*xevent
)
2529 switch (xevent
->xany
.type
)
2536 // XComposeStatus compose;
2537 // (void) XLookupString ((XKeyEvent *) xevent, buf, 20, &keySym, &compose);
2538 (void) XLookupString ((XKeyEvent
*) xevent
, buf
, 20, &keySym
, NULL
);
2539 int id
= wxCharCodeXToWX (keySym
);
2541 if (xevent
->xkey
.state
& ShiftMask
)
2542 wxevent
.m_shiftDown
= TRUE
;
2543 if (xevent
->xkey
.state
& ControlMask
)
2544 wxevent
.m_controlDown
= TRUE
;
2545 if (xevent
->xkey
.state
& Mod3Mask
)
2546 wxevent
.m_altDown
= TRUE
;
2547 if (xevent
->xkey
.state
& Mod1Mask
)
2548 wxevent
.m_metaDown
= TRUE
;
2549 wxevent
.SetEventObject(win
);
2550 wxevent
.m_keyCode
= id
;
2551 wxevent
.SetTimestamp(xevent
->xkey
.time
);
2553 wxevent
.m_x
= xevent
->xbutton
.x
;
2554 wxevent
.m_y
= xevent
->xbutton
.y
;
2568 // TODO From wxWin 1.68. What does it do exactly?
2569 #define YAllocColor XAllocColor
2571 XColor itemColors
[5];
2572 int wxComputeColors (Display
*display
, wxColour
* back
, wxColour
* fore
)
2575 static XmColorProc colorProc
;
2577 result
= wxNO_COLORS
;
2581 itemColors
[0].red
= (((long) back
->Red ()) << 8);
2582 itemColors
[0].green
= (((long) back
->Green ()) << 8);
2583 itemColors
[0].blue
= (((long) back
->Blue ()) << 8);
2584 itemColors
[0].flags
= DoRed
| DoGreen
| DoBlue
;
2585 if (colorProc
== (XmColorProc
) NULL
)
2587 // Get a ptr to the actual function
2588 colorProc
= XmSetColorCalculation ((XmColorProc
) NULL
);
2589 // And set it back to motif.
2590 XmSetColorCalculation (colorProc
);
2592 (*colorProc
) (&itemColors
[wxBACK_INDEX
],
2593 &itemColors
[wxFORE_INDEX
],
2594 &itemColors
[wxSELE_INDEX
],
2595 &itemColors
[wxTOPS_INDEX
],
2596 &itemColors
[wxBOTS_INDEX
]);
2597 result
= wxBACK_COLORS
;
2601 itemColors
[wxFORE_INDEX
].red
= (((long) fore
->Red ()) << 8);
2602 itemColors
[wxFORE_INDEX
].green
= (((long) fore
->Green ()) << 8);
2603 itemColors
[wxFORE_INDEX
].blue
= (((long) fore
->Blue ()) << 8);
2604 itemColors
[wxFORE_INDEX
].flags
= DoRed
| DoGreen
| DoBlue
;
2605 if (result
== wxNO_COLORS
)
2606 result
= wxFORE_COLORS
;
2609 Display
*dpy
= display
;
2610 Colormap cmap
= (Colormap
) wxTheApp
->GetMainColormap((WXDisplay
*) dpy
);
2614 /* 5 Colours to allocate */
2615 for (int i
= 0; i
< 5; i
++)
2616 if (!YAllocColor (dpy
, cmap
, &itemColors
[i
]))
2617 result
= wxNO_COLORS
;
2621 /* Only 1 colour to allocate */
2622 if (!YAllocColor (dpy
, cmap
, &itemColors
[wxFORE_INDEX
]))
2623 result
= wxNO_COLORS
;
2630 void wxWindow::ChangeColour(WXWidget widget
)
2636 // TODO: how to determine whether we can change this item's colours?
2637 // We used to have wxUSER_COLOURS. Now perhaps we assume we always
2639 // if (!(parent->GetWindowStyleFlag() & wxUSER_COLOURS))
2642 change
= wxComputeColors (XtDisplay((Widget
)widget
), panel
->GetBackgroundColour(),
2643 panel
->GetLabelColour());
2644 if (change
== wxBACK_COLORS
)
2645 XtVaSetValues ((Widget
) widget
,
2646 XmNbackground
, itemColors
[wxBACK_INDEX
].pixel
,
2647 XmNtopShadowColor
, itemColors
[wxTOPS_INDEX
].pixel
,
2648 XmNbottomShadowColor
, itemColors
[wxBOTS_INDEX
].pixel
,
2649 XmNforeground
, itemColors
[wxFORE_INDEX
].pixel
,
2651 else if (change
== wxFORE_COLORS
)
2652 XtVaSetValues (formWidget
,
2653 XmNforeground
, itemColors
[wxFORE_INDEX
].pixel
,
2656 change
= wxComputeColors (XtDisplay((Widget
)formWidget
), GetBackgroundColour(), GetLabelColour());
2657 if (change
== wxBACK_COLORS
)
2658 XtVaSetValues (labelWidget
,
2659 XmNbackground
, itemColors
[wxBACK_INDEX
].pixel
,
2660 XmNtopShadowColor
, itemColors
[wxTOPS_INDEX
].pixel
,
2661 XmNbottomShadowColor
, itemColors
[wxBOTS_INDEX
].pixel
,
2662 XmNarmColor
, itemColors
[wxSELE_INDEX
].pixel
,
2663 XmNforeground
, itemColors
[wxFORE_INDEX
].pixel
,
2665 else if (change
== wxFORE_COLORS
)
2666 XtVaSetValues (labelWidget
,
2667 XmNforeground
, itemColors
[wxFORE_INDEX
].pixel
,
2672 void wxWindow::ChangeFont(WXWidget widget
)
2675 if (widget && GetFont() && GetFont()->IsOk())
2676 XtVaSetValues ((Widget) widget,
2677 XmNfontList, GetFont()->GetInternalFont (),