1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "window.h"
27 #include "wx/dcclient.h"
31 #include "wx/layout.h"
32 #include "wx/dialog.h"
33 #include "wx/listbox.h"
34 #include "wx/button.h"
35 #include "wx/settings.h"
36 #include "wx/msgdlg.h"
38 #include "wx/scrolwin.h"
39 #include "wx/module.h"
40 #include "wx/menuitem.h"
43 #if wxUSE_DRAG_AND_DROP
47 #include "wx/x11/private.h"
48 #include "X11/Xutil.h"
51 // For wxGetLocalTime, used by XButtonEventGetTime
57 // ----------------------------------------------------------------------------
58 // global variables for this module
59 // ----------------------------------------------------------------------------
61 extern wxHashTable
*wxWidgetHashTable
;
62 static wxWindow
* g_captureWindow
= NULL
;
64 // ----------------------------------------------------------------------------
66 // ----------------------------------------------------------------------------
68 #define event_left_is_down(x) ((x)->xbutton.state & Button1Mask)
69 #define event_middle_is_down(x) ((x)->xbutton.state & Button2Mask)
70 #define event_right_is_down(x) ((x)->xbutton.state & Button3Mask)
72 // ----------------------------------------------------------------------------
74 // ----------------------------------------------------------------------------
76 IMPLEMENT_ABSTRACT_CLASS(wxWindowX11
, wxWindowBase
)
78 BEGIN_EVENT_TABLE(wxWindowX11
, wxWindowBase
)
79 EVT_SYS_COLOUR_CHANGED(wxWindowX11::OnSysColourChanged
)
82 // ============================================================================
84 // ============================================================================
86 // ----------------------------------------------------------------------------
88 // ----------------------------------------------------------------------------
90 // ----------------------------------------------------------------------------
92 // ----------------------------------------------------------------------------
94 void wxWindowX11::Init()
96 // generic initializations first
100 m_mainWidget
= (WXWindow
) 0;
101 m_winCaptured
= FALSE
;
102 m_needsInputFocus
= FALSE
;
104 m_isBeingDeleted
= FALSE
;
109 // real construction (Init() must have been called before!)
110 bool wxWindowX11::Create(wxWindow
*parent
, wxWindowID id
,
114 const wxString
& name
)
116 wxCHECK_MSG( parent
, FALSE
, "can't create wxWindow without parent" );
118 CreateBase(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
);
120 parent
->AddChild(this);
122 int w
= size
.GetWidth();
123 int h
= size
.GetHeight();
131 Display
*xdisplay
= (Display
*) wxGlobalDisplay();
132 int xscreen
= DefaultScreen( xdisplay
);
133 Visual
*xvisual
= DefaultVisual( xdisplay
, xscreen
);
134 Colormap cm
= DefaultColormap( xdisplay
, xscreen
);
136 m_backgroundColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
137 m_backgroundColour
.CalcPixel( (WXColormap
) cm
);
139 m_foregroundColour
= *wxBLACK
;
140 m_foregroundColour
.CalcPixel( (WXColormap
) cm
);
142 Window xparent
= (Window
) parent
->GetMainWindow();
145 XSetWindowAttributes xattributes
;
147 long xattributes_mask
=
149 CWBorderPixel
| CWBackPixel
;
151 xattributes
.background_pixel
= m_backgroundColour
.GetPixel();
152 xattributes
.border_pixel
= BlackPixel( xdisplay
, xscreen
);
154 xattributes
.event_mask
=
155 ExposureMask
| KeyPressMask
| KeyReleaseMask
| ButtonPressMask
| ButtonReleaseMask
|
156 ButtonMotionMask
| EnterWindowMask
| LeaveWindowMask
| PointerMotionMask
|
157 KeymapStateMask
| FocusChangeMask
| ColormapChangeMask
| StructureNotifyMask
|
174 int extraFlags
= GR_EVENT_MASK_CLOSE_REQ
;
176 long backColor
, foreColor
;
177 backColor
= GR_RGB(m_backgroundColour
.Red(), m_backgroundColour
.Green(), m_backgroundColour
.Blue());
178 foreColor
= GR_RGB(m_foregroundColour
.Red(), m_foregroundColour
.Green(), m_foregroundColour
.Blue());
180 Window xwindow
= XCreateWindowWithColor( xdisplay
, xparent
, pos2
.x
, pos2
.y
, size2
.x
, size2
.y
,
181 0, 0, InputOutput
, xvisual
, backColor
, foreColor
);
182 XSelectInput( xdisplay
, xwindow
,
183 extraFlags
| ExposureMask
| KeyPressMask
| KeyReleaseMask
| ButtonPressMask
| ButtonReleaseMask
|
184 ButtonMotionMask
| EnterWindowMask
| LeaveWindowMask
| PointerMotionMask
|
185 KeymapStateMask
| FocusChangeMask
| ColormapChangeMask
| StructureNotifyMask
|
186 PropertyChangeMask
);
190 Window xwindow
= XCreateWindow( xdisplay
, xparent
, pos2
.x
, pos2
.y
, size2
.x
, size2
.y
,
191 0, DefaultDepth(xdisplay
,xscreen
), InputOutput
, xvisual
, xattributes_mask
, &xattributes
);
195 m_mainWidget
= (WXWindow
) xwindow
;
197 wxAddWindowToTable( xwindow
, (wxWindow
*) this );
199 // Is a subwindow, so map immediately
201 XMapWindow( xdisplay
, xwindow
);
203 // Without this, the cursor may not be restored properly (e.g. in splitter
205 SetCursor(*wxSTANDARD_CURSOR
);
206 SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
208 // Set background to None which will prevent X11 from clearing the
209 // background comletely.
210 XSetWindowBackgroundPixmap( xdisplay
, xwindow
, None
);
212 // Don't call this, it can have nasty repercussions for composite controls,
214 // SetSize(pos.x, pos.y, size.x, size.y);
220 wxWindowX11::~wxWindowX11()
222 if (g_captureWindow
== this)
223 g_captureWindow
= NULL
;
225 m_isBeingDeleted
= TRUE
;
227 // X11-specific actions first
228 Window xwindow
= (Window
) m_mainWidget
;
231 m_parent
->RemoveChild( this );
235 // Destroy the window
238 XSelectInput( wxGlobalDisplay(), xwindow
, NoEventMask
);
239 wxDeleteWindowFromTable( xwindow
);
240 XDestroyWindow( wxGlobalDisplay(), xwindow
);
245 // ---------------------------------------------------------------------------
247 // ---------------------------------------------------------------------------
249 void wxWindowX11::SetFocus()
251 Window xwindow
= (Window
) GetMainWindow();
253 wxCHECK_RET( xwindow
, wxT("invalid window") );
255 wxCHECK_RET( AcceptsFocus(), wxT("set focus on window that doesn't accept the focus") );
258 if (GetName() == "scrollBar")
265 if (wxWindowIsVisible(xwindow
))
267 XSetInputFocus( wxGlobalDisplay(), xwindow
, RevertToParent
, CurrentTime
);
268 m_needsInputFocus
= FALSE
;
272 m_needsInputFocus
= TRUE
;
276 // Get the window with the focus
277 wxWindow
*wxWindowBase::FindFocus()
279 Window xfocus
= (Window
) 0;
282 XGetInputFocus( wxGlobalDisplay(), &xfocus
, &revert
);
285 wxWindow
*win
= wxGetWindowFromTable( xfocus
);
293 wxWindow
*wxWindowX11::GetFocusWidget()
295 wxWindow
*win
= (wxWindow
*) this;
296 while (!win
->IsTopLevel())
298 win
= win
->GetParent();
300 return (wxWindow
*) NULL
;
306 // Enabling/disabling handled by event loop, and not sending events
308 bool wxWindowX11::Enable(bool enable
)
310 if ( !wxWindowBase::Enable(enable
) )
316 bool wxWindowX11::Show(bool show
)
318 wxWindowBase::Show(show
);
320 Window xwin
= (Window
) GetXWindow();
321 Display
*xdisp
= (Display
*) GetXDisplay();
324 // wxLogDebug( "Mapping window of type %s", GetName().c_str() );
325 XMapWindow(xdisp
, xwin
);
330 // wxLogDebug( "Unmapping window of type %s", GetName().c_str() );
331 XUnmapWindow(xdisp
, xwin
);
337 // Raise the window to the top of the Z order
338 void wxWindowX11::Raise()
341 XRaiseWindow( wxGlobalDisplay(), (Window
) m_mainWidget
);
344 // Lower the window to the bottom of the Z order
345 void wxWindowX11::Lower()
348 XLowerWindow( wxGlobalDisplay(), (Window
) m_mainWidget
);
351 void wxWindowX11::DoCaptureMouse()
353 if ((g_captureWindow
!= NULL
) && (g_captureWindow
!= this))
355 wxASSERT_MSG(FALSE
, "Trying to capture before mouse released.");
366 Window xwindow
= (Window
) GetMainWindow();
368 wxCHECK_RET( xwindow
, wxT("invalid window") );
370 g_captureWindow
= (wxWindow
*) this;
374 int res
= XGrabPointer(wxGlobalDisplay(), xwindow
,
376 ButtonPressMask
| ButtonReleaseMask
| ButtonMotionMask
| EnterWindowMask
| LeaveWindowMask
| PointerMotionMask
,
380 None
, /* cursor */ // TODO: This may need to be set to the cursor of this window
383 if (res
!= GrabSuccess
)
386 msg
.Printf("Failed to grab pointer for window %s", this->GetClassInfo()->GetClassName());
388 if (res
== GrabNotViewable
)
390 wxLogDebug("This is not a viewable window - perhaps not shown yet?");
392 g_captureWindow
= NULL
;
396 // wxLogDebug("Grabbed pointer in %s", GetName().c_str() );
399 res
= XGrabButton(wxGlobalDisplay(), AnyButton
, AnyModifier
,
400 (Window
) GetMainWindow(),
402 ButtonPressMask
| ButtonReleaseMask
| ButtonMotionMask
,
408 if (res
!= GrabSuccess
)
410 wxLogDebug("Failed to grab mouse buttons.");
411 XUngrabPointer(wxGlobalDisplay(), CurrentTime
);
417 res
= XGrabKeyboard(wxGlobalDisplay(), (Window
) GetMainWindow(),
418 ShiftMask
| LockMask
| ControlMask
| Mod1Mask
| Mod2Mask
| Mod3Mask
| Mod4Mask
| Mod5Mask
,
424 if (res
!= GrabSuccess
)
426 wxLogDebug("Failed to grab keyboard.");
427 XUngrabPointer(wxGlobalDisplay(), CurrentTime
);
428 XUngrabButton(wxGlobalDisplay(), AnyButton
, AnyModifier
,
429 (Window
) GetMainWindow());
434 m_winCaptured
= TRUE
;
438 void wxWindowX11::DoReleaseMouse()
440 g_captureWindow
= NULL
;
442 if ( !m_winCaptured
)
445 Window xwindow
= (Window
) GetMainWindow();
449 XUngrabPointer( wxGlobalDisplay(), CurrentTime
);
451 XUngrabButton( wxGlobalDisplay(), AnyButton
, AnyModifier
, xwindow
);
452 XUngrabKeyboard( wxGlobalDisplay(), CurrentTime
);
456 // wxLogDebug( "Ungrabbed pointer in %s", GetName().c_str() );
458 m_winCaptured
= FALSE
;
461 bool wxWindowX11::SetFont(const wxFont
& font
)
463 if ( !wxWindowBase::SetFont(font
) )
472 bool wxWindowX11::SetCursor(const wxCursor
& cursor
)
474 if ( !wxWindowBase::SetCursor(cursor
) )
480 Window xwindow
= (Window
) GetMainWindow();
482 wxCHECK_MSG( xwindow
, FALSE
, wxT("invalid window") );
484 wxCursor cursorToUse
;
486 cursorToUse
= m_cursor
;
488 cursorToUse
= *wxSTANDARD_CURSOR
;
490 Cursor xcursor
= (Cursor
) cursorToUse
.GetCursor();
492 XDefineCursor( wxGlobalDisplay(), xwindow
, xcursor
);
497 // Coordinates relative to the window
498 void wxWindowX11::WarpPointer (int x
, int y
)
500 Window xwindow
= (Window
) GetMainWindow();
502 wxCHECK_RET( xwindow
, wxT("invalid window") );
504 XWarpPointer( wxGlobalDisplay(), None
, xwindow
, 0, 0, 0, 0, x
, y
);
507 // Does a physical scroll
508 void wxWindowX11::ScrollWindow(int dx
, int dy
, const wxRect
*rect
)
510 // No scrolling requested.
511 if ((dx
== 0) && (dy
== 0)) return;
513 if (!m_updateRegion
.IsEmpty())
515 m_updateRegion
.Offset( dx
, dy
);
519 GetSize( &cw
, &ch
); // GetClientSize() ??
520 m_updateRegion
.Intersect( 0, 0, cw
, ch
);
523 if (!m_clearRegion
.IsEmpty())
525 m_clearRegion
.Offset( dx
, dy
);
529 GetSize( &cw
, &ch
); // GetClientSize() ??
530 m_clearRegion
.Intersect( 0, 0, cw
, ch
);
533 Window xwindow
= (Window
) GetMainWindow();
535 wxCHECK_RET( xwindow
, wxT("invalid window") );
537 Display
*xdisplay
= wxGlobalDisplay();
539 GC xgc
= XCreateGC( xdisplay
, xwindow
, 0, NULL
);
540 XSetGraphicsExposures( xdisplay
, xgc
, True
);
558 GetClientSize( &cw
, &ch
);
561 wxPoint offset
= GetClientAreaOrigin();
565 int w
= cw
- abs(dx
);
566 int h
= ch
- abs(dy
);
568 if ((h
< 0) || (w
< 0))
575 if (dx
< 0) rect
.x
= cw
+dx
+ offset
.x
; else rect
.x
= s_x
;
576 if (dy
< 0) rect
.y
= ch
+dy
+ offset
.y
; else rect
.y
= s_y
;
577 if (dy
!= 0) rect
.width
= cw
; else rect
.width
= abs(dx
);
578 if (dx
!= 0) rect
.height
= ch
; else rect
.height
= abs(dy
);
583 if (dx
< 0) s_x
+= -dx
;
584 if (dy
< 0) s_y
+= -dy
;
585 if (dx
> 0) d_x
= dx
+ offset
.x
;
586 if (dy
> 0) d_y
= dy
+ offset
.y
;
588 XCopyArea( xdisplay
, xwindow
, xwindow
, xgc
, s_x
, s_y
, w
, h
, d_x
, d_y
);
590 // wxLogDebug( "Copy: s_x %d s_y %d w %d h %d d_x %d d_y %d", s_x, s_y, w, h, d_x, d_y );
592 // wxLogDebug( "Update: %d %d %d %d", rect.x, rect.y, rect.width, rect.height );
594 m_updateRegion
.Union( rect
);
595 m_clearRegion
.Union( rect
);
598 XFreeGC( xdisplay
, xgc
);
601 // ---------------------------------------------------------------------------
603 // ---------------------------------------------------------------------------
605 #if wxUSE_DRAG_AND_DROP
607 void wxWindowX11::SetDropTarget(wxDropTarget
* WXUNUSED(pDropTarget
))
614 // Old style file-manager drag&drop
615 void wxWindowX11::DragAcceptFiles(bool WXUNUSED(accept
))
620 // ----------------------------------------------------------------------------
622 // ----------------------------------------------------------------------------
626 void wxWindowX11::DoSetToolTip(wxToolTip
* WXUNUSED(tooltip
))
631 #endif // wxUSE_TOOLTIPS
633 // ---------------------------------------------------------------------------
634 // moving and resizing
635 // ---------------------------------------------------------------------------
637 bool wxWindowX11::PreResize()
643 void wxWindowX11::DoGetSize(int *x
, int *y
) const
645 Window xwindow
= (Window
) GetMainWindow();
647 wxCHECK_RET( xwindow
, wxT("invalid window") );
649 //XSync(wxGlobalDisplay(), False);
651 XWindowAttributes attr
;
652 Status status
= XGetWindowAttributes( wxGlobalDisplay(), xwindow
, &attr
);
657 *x
= attr
.width
/* + 2*m_borderSize */ ;
658 *y
= attr
.height
/* + 2*m_borderSize */ ;
662 void wxWindowX11::DoGetPosition(int *x
, int *y
) const
664 Window window
= (Window
) m_mainWidget
;
667 //XSync(wxGlobalDisplay(), False);
668 XWindowAttributes attr
;
669 Status status
= XGetWindowAttributes(wxGlobalDisplay(), window
, & attr
);
677 // We may be faking the client origin. So a window that's really at (0, 30)
678 // may appear (to wxWin apps) to be at (0, 0).
681 wxPoint
pt(GetParent()->GetClientAreaOrigin());
689 void wxWindowX11::DoScreenToClient(int *x
, int *y
) const
691 Display
*display
= wxGlobalDisplay();
692 Window rootWindow
= RootWindowOfScreen(DefaultScreenOfDisplay(display
));
693 Window thisWindow
= (Window
) m_mainWidget
;
698 XTranslateCoordinates(display
, rootWindow
, thisWindow
, xx
, yy
, x
, y
, &childWindow
);
701 void wxWindowX11::DoClientToScreen(int *x
, int *y
) const
703 Display
*display
= wxGlobalDisplay();
704 Window rootWindow
= RootWindowOfScreen(DefaultScreenOfDisplay(display
));
705 Window thisWindow
= (Window
) m_mainWidget
;
710 XTranslateCoordinates(display
, thisWindow
, rootWindow
, xx
, yy
, x
, y
, &childWindow
);
714 // Get size *available for subwindows* i.e. excluding menu bar etc.
715 void wxWindowX11::DoGetClientSize(int *x
, int *y
) const
717 Window window
= (Window
) m_mainWidget
;
721 //XSync(wxGlobalDisplay(), False); // Is this really a good idea?
722 XWindowAttributes attr
;
723 Status status
= XGetWindowAttributes( wxGlobalDisplay(), window
, &attr
);
734 void wxWindowX11::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
736 Window xwindow
= (Window
) GetMainWindow();
738 wxCHECK_RET( xwindow
, wxT("invalid window") );
740 XWindowAttributes attr
;
741 Status status
= XGetWindowAttributes( wxGlobalDisplay(), xwindow
, &attr
);
742 wxCHECK_RET( status
, wxT("invalid window attributes") );
746 int new_w
= attr
.width
;
747 int new_h
= attr
.height
;
750 if (x
!= -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
753 AdjustForParentClientOrigin( x
, yy
, sizeFlags
);
756 if (y
!= -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
759 AdjustForParentClientOrigin( xx
, y
, sizeFlags
);
775 DoMoveWindow( new_x
, new_y
, new_w
, new_h
);
778 void wxWindowX11::DoSetClientSize(int width
, int height
)
780 Window xwindow
= (Window
) GetMainWindow();
782 wxCHECK_RET( xwindow
, wxT("invalid window") );
784 XWindowAttributes attr
;
785 Status status
= XGetWindowAttributes( wxGlobalDisplay(), xwindow
, &attr
);
786 wxCHECK_RET( status
, wxT("invalid window attributes") );
790 int new_w
= attr
.width
;
791 int new_h
= attr
.height
;
799 DoMoveWindow( new_x
, new_y
, new_w
, new_h
);
802 // For implementation purposes - sometimes decorations make the client area
804 wxPoint
wxWindowX11::GetClientAreaOrigin() const
806 return wxPoint(0, 0);
809 void wxWindowX11::SetSizeHints(int minW
, int minH
, int maxW
, int maxH
, int incW
, int incH
)
817 XSizeHints sizeHints
;
820 if (minW
> -1 && minH
> -1)
822 sizeHints
.flags
|= PMinSize
;
823 sizeHints
.min_width
= minW
;
824 sizeHints
.min_height
= minH
;
826 if (maxW
> -1 && maxH
> -1)
828 sizeHints
.flags
|= PMaxSize
;
829 sizeHints
.max_width
= maxW
;
830 sizeHints
.max_height
= maxH
;
832 if (incW
> -1 && incH
> -1)
834 sizeHints
.flags
|= PResizeInc
;
835 sizeHints
.width_inc
= incW
;
836 sizeHints
.height_inc
= incH
;
839 XSetWMNormalHints(wxGlobalDisplay(), (Window
) GetMainWindow(), & sizeHints
);
843 void wxWindowX11::DoMoveWindow(int x
, int y
, int width
, int height
)
845 Window xwindow
= (Window
) GetMainWindow();
847 wxCHECK_RET( xwindow
, wxT("invalid window") );
849 XWindowChanges windowChanges
;
852 windowChanges
.width
= width
;
853 windowChanges
.height
= height
;
854 windowChanges
.stack_mode
= 0;
855 int valueMask
= CWX
| CWY
| CWWidth
| CWHeight
;
857 XConfigureWindow( wxGlobalDisplay(), xwindow
, valueMask
, &windowChanges
);
860 // ---------------------------------------------------------------------------
862 // ---------------------------------------------------------------------------
864 int wxWindowX11::GetCharHeight() const
866 wxCHECK_MSG( m_font
.Ok(), 0, "valid window font needed" );
868 WXFontStructPtr pFontStruct
= m_font
.GetFontStruct(1.0, GetXDisplay());
870 int direction
, ascent
, descent
;
872 XTextExtents ((XFontStruct
*) pFontStruct
, "x", 1, &direction
, &ascent
,
875 // return (overall.ascent + overall.descent);
876 return (ascent
+ descent
);
879 int wxWindowX11::GetCharWidth() const
881 wxCHECK_MSG( m_font
.Ok(), 0, "valid window font needed" );
883 WXFontStructPtr pFontStruct
= m_font
.GetFontStruct(1.0, GetXDisplay());
885 int direction
, ascent
, descent
;
887 XTextExtents ((XFontStruct
*) pFontStruct
, "x", 1, &direction
, &ascent
,
890 return overall
.width
;
893 void wxWindowX11::GetTextExtent(const wxString
& string
,
895 int *descent
, int *externalLeading
,
896 const wxFont
*theFont
) const
898 wxFont fontToUse
= m_font
;
899 if (theFont
) fontToUse
= *theFont
;
901 wxCHECK_RET( fontToUse
.Ok(), wxT("invalid font") );
903 WXFontStructPtr pFontStruct
= fontToUse
.GetFontStruct(1.0, GetXDisplay());
905 int direction
, ascent
, descent2
;
907 int slen
= string
.Len();
911 XTextExtents16((XFontStruct
*) pFontStruct
, (XChar2b
*) (char*) (const char*) string
, slen
, &direction
,
912 &ascent
, &descent2
, &overall
);
915 XTextExtents((XFontStruct
*) pFontStruct
, (char*) string
.c_str(), slen
,
916 &direction
, &ascent
, &descent2
, &overall
);
919 *x
= (overall
.width
);
921 *y
= (ascent
+ descent2
);
925 *externalLeading
= 0;
929 // ----------------------------------------------------------------------------
931 // ----------------------------------------------------------------------------
933 void wxWindowX11::Refresh(bool eraseBack
, const wxRect
*rect
)
939 // Schedule for later Updating in ::Update() or ::OnInternalIdle().
940 m_clearRegion
.Union( rect
->x
, rect
->y
, rect
->width
, rect
->height
);
945 GetSize( &width
, &height
);
947 // Schedule for later Updating in ::Update() or ::OnInternalIdle().
948 m_clearRegion
.Clear();
949 m_clearRegion
.Union( 0, 0, width
, height
);
955 // Schedule for later Updating in ::Update() or ::OnInternalIdle().
956 m_updateRegion
.Union( rect
->x
, rect
->y
, rect
->width
, rect
->height
);
961 GetSize( &width
, &height
);
963 // Schedule for later Updating in ::Update() or ::OnInternalIdle().
964 m_updateRegion
.Clear();
965 m_updateRegion
.Union( 0, 0, width
, height
);
969 void wxWindowX11::Update()
971 if (!m_updateRegion
.IsEmpty())
973 // wxLogDebug("wxWindowX11::Update: %s", GetClassInfo()->GetClassName());
974 // Actually send erase events.
977 // Actually send paint events.
982 void wxWindowX11::Clear()
984 wxClientDC
dc((wxWindow
*) this);
985 wxBrush
brush(GetBackgroundColour(), wxSOLID
);
986 dc
.SetBackground(brush
);
990 void wxWindowX11::SendEraseEvents()
992 if (!m_clearRegion
.IsEmpty())
994 m_clipPaintRegion
= TRUE
;
996 wxWindowDC
dc( (wxWindow
*)this );
997 dc
.SetClippingRegion( m_clearRegion
);
999 wxEraseEvent
erase_event( GetId(), &dc
);
1000 erase_event
.SetEventObject( this );
1002 if (!GetEventHandler()->ProcessEvent(erase_event
))
1004 Window xwindow
= (Window
) GetMainWindow();
1005 Display
*xdisplay
= wxGlobalDisplay();
1006 GC xgc
= XCreateGC( xdisplay
, xwindow
, 0, NULL
);
1007 XSetFillStyle( xdisplay
, xgc
, FillSolid
);
1008 XSetForeground( xdisplay
, xgc
, m_backgroundColour
.GetPixel() );
1009 wxRegionIterator
upd( m_clearRegion
);
1012 XFillRectangle( xdisplay
, xwindow
, xgc
,
1013 upd
.GetX(), upd
.GetY(), upd
.GetWidth(), upd
.GetHeight() );
1016 XFreeGC( xdisplay
, xgc
);
1018 m_clearRegion
.Clear();
1020 m_clipPaintRegion
= FALSE
;
1025 void wxWindowX11::SendPaintEvents()
1027 m_clipPaintRegion
= TRUE
;
1029 wxNcPaintEvent
nc_paint_event( GetId() );
1030 nc_paint_event
.SetEventObject( this );
1031 GetEventHandler()->ProcessEvent( nc_paint_event
);
1033 wxPaintEvent
paint_event( GetId() );
1034 paint_event
.SetEventObject( this );
1035 GetEventHandler()->ProcessEvent( paint_event
);
1037 m_updateRegion
.Clear();
1038 m_clipPaintRegion
= FALSE
;
1041 // ----------------------------------------------------------------------------
1043 // ----------------------------------------------------------------------------
1045 // Responds to colour changes: passes event on to children.
1046 void wxWindowX11::OnSysColourChanged(wxSysColourChangedEvent
& event
)
1048 wxWindowList::Node
*node
= GetChildren().GetFirst();
1051 // Only propagate to non-top-level windows
1052 wxWindow
*win
= node
->GetData();
1053 if ( win
->GetParent() )
1055 wxSysColourChangedEvent event2
;
1056 event
.m_eventObject
= win
;
1057 win
->GetEventHandler()->ProcessEvent(event2
);
1060 node
= node
->GetNext();
1064 void wxWindowX11::OnInternalIdle()
1066 // Update invalidated regions.
1069 // This calls the UI-update mechanism (querying windows for
1070 // menu/toolbar/control state information)
1073 // Set the input focus if couldn't do it before
1074 if (m_needsInputFocus
)
1080 // ----------------------------------------------------------------------------
1081 // function which maintain the global hash table mapping Widgets to wxWindows
1082 // ----------------------------------------------------------------------------
1084 bool wxAddWindowToTable(Window w
, wxWindow
*win
)
1086 wxWindow
*oldItem
= NULL
;
1087 if ((oldItem
= (wxWindow
*)wxWidgetHashTable
->Get ((long) w
)))
1089 wxLogDebug("Widget table clash: new widget is %ld, %s",
1090 (long)w
, win
->GetClassInfo()->GetClassName());
1094 wxWidgetHashTable
->Put((long) w
, win
);
1096 wxLogTrace("widget", "XWindow 0x%08x <-> window %p (%s)",
1097 w
, win
, win
->GetClassInfo()->GetClassName());
1102 wxWindow
*wxGetWindowFromTable(Window w
)
1104 return (wxWindow
*)wxWidgetHashTable
->Get((long) w
);
1107 void wxDeleteWindowFromTable(Window w
)
1109 wxWidgetHashTable
->Delete((long)w
);
1112 // ----------------------------------------------------------------------------
1113 // add/remove window from the table
1114 // ----------------------------------------------------------------------------
1116 // ----------------------------------------------------------------------------
1117 // X11-specific accessors
1118 // ----------------------------------------------------------------------------
1120 // Get the underlying X window
1121 WXWindow
wxWindowX11::GetXWindow() const
1123 return GetMainWindow();
1126 // Get the underlying X display
1127 WXDisplay
*wxWindowX11::GetXDisplay() const
1129 return wxGetDisplay();
1132 WXWindow
wxWindowX11::GetMainWindow() const
1134 return m_mainWidget
;
1137 // ----------------------------------------------------------------------------
1138 // TranslateXXXEvent() functions
1139 // ----------------------------------------------------------------------------
1141 bool wxTranslateMouseEvent(wxMouseEvent
& wxevent
, wxWindow
*win
, Window window
, XEvent
*xevent
)
1143 switch (XEventGetType(xevent
))
1151 wxEventType eventType
= wxEVT_NULL
;
1153 if (XEventGetType(xevent
) == EnterNotify
)
1155 //if (local_event.xcrossing.mode!=NotifyNormal)
1156 // return ; // Ignore grab events
1157 eventType
= wxEVT_ENTER_WINDOW
;
1158 // canvas->GetEventHandler()->OnSetFocus();
1160 else if (XEventGetType(xevent
) == LeaveNotify
)
1162 //if (local_event.xcrossingr.mode!=NotifyNormal)
1163 // return ; // Ignore grab events
1164 eventType
= wxEVT_LEAVE_WINDOW
;
1165 // canvas->GetEventHandler()->OnKillFocus();
1167 else if (XEventGetType(xevent
) == MotionNotify
)
1169 eventType
= wxEVT_MOTION
;
1171 else if (XEventGetType(xevent
) == ButtonPress
)
1173 wxevent
.SetTimestamp(XButtonEventGetTime(xevent
));
1175 if (XButtonEventLChanged(xevent
))
1177 eventType
= wxEVT_LEFT_DOWN
;
1180 else if (XButtonEventMChanged(xevent
))
1182 eventType
= wxEVT_MIDDLE_DOWN
;
1185 else if (XButtonEventRChanged(xevent
))
1187 eventType
= wxEVT_RIGHT_DOWN
;
1191 // check for a double click
1192 // TODO: where can we get this value from?
1193 //long dclickTime = XtGetMultiClickTime(wxGlobalDisplay());
1194 long dclickTime
= 200;
1195 long ts
= wxevent
.GetTimestamp();
1197 int buttonLast
= win
->GetLastClickedButton();
1198 long lastTS
= win
->GetLastClickTime();
1199 if ( buttonLast
&& buttonLast
== button
&& (ts
- lastTS
) < dclickTime
)
1202 win
->SetLastClick(0, ts
);
1203 if ( eventType
== wxEVT_LEFT_DOWN
)
1204 eventType
= wxEVT_LEFT_DCLICK
;
1205 else if ( eventType
== wxEVT_MIDDLE_DOWN
)
1206 eventType
= wxEVT_MIDDLE_DCLICK
;
1207 else if ( eventType
== wxEVT_RIGHT_DOWN
)
1208 eventType
= wxEVT_RIGHT_DCLICK
;
1212 // not fast enough or different button
1213 win
->SetLastClick(button
, ts
);
1216 else if (XEventGetType(xevent
) == ButtonRelease
)
1218 if (XButtonEventLChanged(xevent
))
1220 eventType
= wxEVT_LEFT_UP
;
1222 else if (XButtonEventMChanged(xevent
))
1224 eventType
= wxEVT_MIDDLE_UP
;
1226 else if (XButtonEventRChanged(xevent
))
1228 eventType
= wxEVT_RIGHT_UP
;
1237 wxevent
.SetEventType(eventType
);
1239 wxevent
.m_x
= XButtonEventGetX(xevent
);
1240 wxevent
.m_y
= XButtonEventGetY(xevent
);
1242 wxevent
.m_leftDown
= ((eventType
== wxEVT_LEFT_DOWN
)
1243 || (XButtonEventLIsDown(xevent
)
1244 && (eventType
!= wxEVT_LEFT_UP
)));
1245 wxevent
.m_middleDown
= ((eventType
== wxEVT_MIDDLE_DOWN
)
1246 || (XButtonEventMIsDown(xevent
)
1247 && (eventType
!= wxEVT_MIDDLE_UP
)));
1248 wxevent
.m_rightDown
= ((eventType
== wxEVT_RIGHT_DOWN
)
1249 || (XButtonEventRIsDown (xevent
)
1250 && (eventType
!= wxEVT_RIGHT_UP
)));
1252 wxevent
.m_shiftDown
= XButtonEventShiftIsDown(xevent
);
1253 wxevent
.m_controlDown
= XButtonEventCtrlIsDown(xevent
);
1254 wxevent
.m_altDown
= XButtonEventAltIsDown(xevent
);
1255 wxevent
.m_metaDown
= XButtonEventMetaIsDown(xevent
);
1257 wxevent
.SetId(win
->GetId());
1258 wxevent
.SetEventObject(win
);
1266 bool wxTranslateKeyEvent(wxKeyEvent
& wxevent
, wxWindow
*win
, Window
WXUNUSED(win
), XEvent
*xevent
)
1268 switch (XEventGetType(xevent
))
1276 (void) XLookupString ((XKeyEvent
*) xevent
, buf
, 20, &keySym
, NULL
);
1277 int id
= wxCharCodeXToWX (keySym
);
1279 wxevent
.m_shiftDown
= XKeyEventShiftIsDown(xevent
);
1280 wxevent
.m_controlDown
= XKeyEventCtrlIsDown(xevent
);
1281 wxevent
.m_altDown
= XKeyEventAltIsDown(xevent
);
1282 wxevent
.m_metaDown
= XKeyEventMetaIsDown(xevent
);
1283 wxevent
.SetEventObject(win
);
1284 wxevent
.m_keyCode
= id
;
1285 wxevent
.SetTimestamp(XKeyEventGetTime(xevent
));
1287 wxevent
.m_x
= XKeyEventGetX(xevent
);
1288 wxevent
.m_y
= XKeyEventGetY(xevent
);
1302 // ----------------------------------------------------------------------------
1304 // ----------------------------------------------------------------------------
1306 bool wxWindowX11::SetBackgroundColour(const wxColour
& col
)
1308 wxWindowBase::SetBackgroundColour(col
);
1310 Display
*xdisplay
= (Display
*) wxGlobalDisplay();
1311 int xscreen
= DefaultScreen( xdisplay
);
1312 Colormap cm
= DefaultColormap( xdisplay
, xscreen
);
1314 m_backgroundColour
.CalcPixel( (WXColormap
) cm
);
1316 if (!GetMainWindow())
1320 XSetWindowAttributes attrib;
1321 attrib.background_pixel = colour.GetPixel();
1323 XChangeWindowAttributes(wxGlobalDisplay(),
1324 (Window) GetMainWindow(),
1332 bool wxWindowX11::SetForegroundColour(const wxColour
& col
)
1334 if ( !wxWindowBase::SetForegroundColour(col
) )
1340 // ----------------------------------------------------------------------------
1342 // ----------------------------------------------------------------------------
1344 wxWindow
*wxGetActiveWindow()
1347 wxFAIL_MSG("Not implemented");
1352 wxWindow
*wxWindowBase::GetCapture()
1354 return (wxWindow
*)g_captureWindow
;
1358 // Find the wxWindow at the current mouse position, returning the mouse
1360 wxWindow
* wxFindWindowAtPointer(wxPoint
& pt
)
1362 return wxFindWindowAtPoint(wxGetMousePosition());
1365 // Get the current mouse position.
1366 wxPoint
wxGetMousePosition()
1370 return wxPoint(0, 0);
1372 Display
*display
= wxGlobalDisplay();
1373 Window rootWindow
= RootWindowOfScreen (DefaultScreenOfDisplay(display
));
1374 Window rootReturn
, childReturn
;
1375 int rootX
, rootY
, winX
, winY
;
1376 unsigned int maskReturn
;
1378 XQueryPointer (display
,
1382 &rootX
, &rootY
, &winX
, &winY
, &maskReturn
);
1383 return wxPoint(rootX
, rootY
);
1388 // ----------------------------------------------------------------------------
1389 // wxNoOptimize: switch off size optimization
1390 // ----------------------------------------------------------------------------
1392 int wxNoOptimize::ms_count
= 0;