1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
23 #include "wx/dcclient.h"
27 #include "wx/layout.h"
28 #include "wx/dialog.h"
29 #include "wx/listbox.h"
30 #include "wx/button.h"
31 #include "wx/settings.h"
32 #include "wx/msgdlg.h"
34 #include "wx/scrolwin.h"
35 #include "wx/scrolbar.h"
36 #include "wx/module.h"
37 #include "wx/menuitem.h"
39 #include "wx/fontutil.h"
40 #include "wx/univ/renderer.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 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()
97 m_mainWindow
= (WXWindow
) 0;
98 m_clientWindow
= (WXWindow
) 0;
99 m_insertIntoMain
= FALSE
;
100 m_updateNcArea
= FALSE
;
102 m_winCaptured
= FALSE
;
103 m_needsInputFocus
= 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
, wxT("can't create wxWindow without parent") );
118 CreateBase(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
);
120 parent
->AddChild(this);
122 Display
*xdisplay
= (Display
*) wxGlobalDisplay();
123 int xscreen
= DefaultScreen( xdisplay
);
124 Visual
*xvisual
= DefaultVisual( xdisplay
, xscreen
);
125 Colormap cm
= DefaultColormap( xdisplay
, xscreen
);
127 m_backgroundColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
128 m_backgroundColour
.CalcPixel( (WXColormap
) cm
);
130 m_foregroundColour
= *wxBLACK
;
131 m_foregroundColour
.CalcPixel( (WXColormap
) cm
);
133 Window xparent
= (Window
) parent
->GetClientAreaWindow();
135 // Add window's own scrollbars to main window, not to client window
136 if (parent
->GetInsertIntoMain())
138 // wxLogDebug( "Inserted into main: %s", GetName().c_str() );
139 xparent
= (Window
) parent
->GetMainWindow();
142 // Size (not including the border) must be nonzero (or a Value error results)!
143 // Note: The Xlib manual doesn't mention this restriction of XCreateWindow.
156 #if wxUSE_TWO_WINDOWS
157 bool need_two_windows
=
158 ((( wxSUNKEN_BORDER
| wxRAISED_BORDER
| wxSIMPLE_BORDER
| wxHSCROLL
| wxVSCROLL
) & m_windowStyle
) != 0);
160 bool need_two_windows
= FALSE
;
164 long xattributes
= 0;
166 XSetWindowAttributes xattributes
;
167 long xattributes_mask
= 0;
169 xattributes_mask
|= CWBackPixel
;
170 xattributes
.background_pixel
= m_backgroundColour
.GetPixel();
172 xattributes_mask
|= CWBorderPixel
;
173 xattributes
.border_pixel
= BlackPixel( xdisplay
, xscreen
);
175 xattributes_mask
|= CWEventMask
;
178 if (need_two_windows
)
181 long backColor
, foreColor
;
182 backColor
= GR_RGB(m_backgroundColour
.Red(), m_backgroundColour
.Green(), m_backgroundColour
.Blue());
183 foreColor
= GR_RGB(m_foregroundColour
.Red(), m_foregroundColour
.Green(), m_foregroundColour
.Blue());
185 Window xwindow
= XCreateWindowWithColor( xdisplay
, xparent
, pos2
.x
, pos2
.y
, size2
.x
, size2
.y
,
186 0, 0, InputOutput
, xvisual
, backColor
, foreColor
);
187 XSelectInput( xdisplay
, xwindow
,
188 GR_EVENT_MASK_CLOSE_REQ
| ExposureMask
| KeyPressMask
| KeyReleaseMask
| ButtonPressMask
| ButtonReleaseMask
|
189 ButtonMotionMask
| EnterWindowMask
| LeaveWindowMask
| PointerMotionMask
|
190 KeymapStateMask
| FocusChangeMask
| ColormapChangeMask
| StructureNotifyMask
|
191 PropertyChangeMask
);
195 xattributes
.event_mask
=
196 ExposureMask
| StructureNotifyMask
| ColormapChangeMask
;
198 Window xwindow
= XCreateWindow( xdisplay
, xparent
, pos2
.x
, pos2
.y
, size2
.x
, size2
.y
,
199 0, DefaultDepth(xdisplay
,xscreen
), InputOutput
, xvisual
, xattributes_mask
, &xattributes
);
203 XSetWindowBackgroundPixmap( xdisplay
, xwindow
, None
);
205 m_mainWindow
= (WXWindow
) xwindow
;
206 wxAddWindowToTable( xwindow
, (wxWindow
*) this );
208 XMapWindow( xdisplay
, xwindow
);
211 xattributes
.event_mask
=
212 ExposureMask
| KeyPressMask
| KeyReleaseMask
| ButtonPressMask
| ButtonReleaseMask
|
213 ButtonMotionMask
| EnterWindowMask
| LeaveWindowMask
| PointerMotionMask
|
214 KeymapStateMask
| FocusChangeMask
| ColormapChangeMask
| StructureNotifyMask
|
215 PropertyChangeMask
| VisibilityChangeMask
;
217 if (!HasFlag( wxFULL_REPAINT_ON_RESIZE
))
219 xattributes_mask
|= CWBitGravity
;
220 xattributes
.bit_gravity
= StaticGravity
;
224 if (HasFlag( wxSUNKEN_BORDER
) || HasFlag( wxRAISED_BORDER
))
231 else if (HasFlag( wxSIMPLE_BORDER
))
244 // Make again sure the size is nonzero.
251 backColor
= GR_RGB(m_backgroundColour
.Red(), m_backgroundColour
.Green(), m_backgroundColour
.Blue());
252 foreColor
= GR_RGB(m_foregroundColour
.Red(), m_foregroundColour
.Green(), m_foregroundColour
.Blue());
254 xwindow
= XCreateWindowWithColor( xdisplay
, xwindow
, pos2
.x
, pos2
.y
, size2
.x
, size2
.y
,
255 0, 0, InputOutput
, xvisual
, backColor
, foreColor
);
256 XSelectInput( xdisplay
, xwindow
,
257 GR_EVENT_MASK_CLOSE_REQ
| ExposureMask
| KeyPressMask
| KeyReleaseMask
| ButtonPressMask
| ButtonReleaseMask
|
258 ButtonMotionMask
| EnterWindowMask
| LeaveWindowMask
| PointerMotionMask
|
259 KeymapStateMask
| FocusChangeMask
| ColormapChangeMask
| StructureNotifyMask
|
260 PropertyChangeMask
);
263 xwindow
= XCreateWindow( xdisplay
, xwindow
, pos2
.x
, pos2
.y
, size2
.x
, size2
.y
,
264 0, DefaultDepth(xdisplay
,xscreen
), InputOutput
, xvisual
, xattributes_mask
, &xattributes
);
267 XSetWindowBackgroundPixmap( xdisplay
, xwindow
, None
);
269 m_clientWindow
= (WXWindow
) xwindow
;
270 wxAddClientWindowToTable( xwindow
, (wxWindow
*) this );
272 XMapWindow( xdisplay
, xwindow
);
276 // wxLogDebug( "No two windows needed %s", GetName().c_str() );
278 long backColor
, foreColor
;
279 backColor
= GR_RGB(m_backgroundColour
.Red(), m_backgroundColour
.Green(), m_backgroundColour
.Blue());
280 foreColor
= GR_RGB(m_foregroundColour
.Red(), m_foregroundColour
.Green(), m_foregroundColour
.Blue());
282 Window xwindow
= XCreateWindowWithColor( xdisplay
, xparent
, pos2
.x
, pos2
.y
, size2
.x
, size2
.y
,
283 0, 0, InputOutput
, xvisual
, backColor
, foreColor
);
284 XSelectInput( xdisplay
, xwindow
,
285 GR_EVENT_MASK_CLOSE_REQ
| ExposureMask
| KeyPressMask
| KeyReleaseMask
| ButtonPressMask
| ButtonReleaseMask
|
286 ButtonMotionMask
| EnterWindowMask
| LeaveWindowMask
| PointerMotionMask
|
287 KeymapStateMask
| FocusChangeMask
| ColormapChangeMask
| StructureNotifyMask
|
288 PropertyChangeMask
);
291 xattributes
.event_mask
=
292 ExposureMask
| KeyPressMask
| KeyReleaseMask
| ButtonPressMask
| ButtonReleaseMask
|
293 ButtonMotionMask
| EnterWindowMask
| LeaveWindowMask
| PointerMotionMask
|
294 KeymapStateMask
| FocusChangeMask
| ColormapChangeMask
| StructureNotifyMask
|
295 PropertyChangeMask
| VisibilityChangeMask
;
297 if (!HasFlag( wxFULL_REPAINT_ON_RESIZE
))
299 xattributes_mask
|= CWBitGravity
;
300 xattributes
.bit_gravity
= NorthWestGravity
;
303 Window xwindow
= XCreateWindow( xdisplay
, xparent
, pos2
.x
, pos2
.y
, size2
.x
, size2
.y
,
304 0, DefaultDepth(xdisplay
,xscreen
), InputOutput
, xvisual
, xattributes_mask
, &xattributes
);
307 XSetWindowBackgroundPixmap( xdisplay
, xwindow
, None
);
309 m_mainWindow
= (WXWindow
) xwindow
;
310 m_clientWindow
= m_mainWindow
;
311 wxAddWindowToTable( xwindow
, (wxWindow
*) this );
313 XMapWindow( xdisplay
, xwindow
);
316 // Is a subwindow, so map immediately
319 // Without this, the cursor may not be restored properly (e.g. in splitter
321 SetCursor(*wxSTANDARD_CURSOR
);
322 SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
324 // Don't call this, it can have nasty repercussions for composite controls,
326 // SetSize(pos.x, pos.y, size.x, size.y);
332 wxWindowX11::~wxWindowX11()
336 if (g_captureWindow
== this)
337 g_captureWindow
= NULL
;
339 m_isBeingDeleted
= TRUE
;
343 if (m_clientWindow
!= m_mainWindow
)
345 // Destroy the cleint window
346 Window xwindow
= (Window
) m_clientWindow
;
347 wxDeleteClientWindowFromTable( xwindow
);
348 XDestroyWindow( wxGlobalDisplay(), xwindow
);
349 m_clientWindow
= NULL
;
352 // Destroy the window
353 Window xwindow
= (Window
) m_mainWindow
;
354 wxDeleteWindowFromTable( xwindow
);
355 XDestroyWindow( wxGlobalDisplay(), xwindow
);
359 // ---------------------------------------------------------------------------
361 // ---------------------------------------------------------------------------
363 void wxWindowX11::SetFocus()
365 Window xwindow
= (Window
) m_clientWindow
;
367 wxCHECK_RET( xwindow
, wxT("invalid window") );
369 // Don't assert; we might be trying to set the focus for a panel
370 // with only static controls, so the panel returns false from AcceptsFocus.
371 // The app should be not be expected to deal with this.
376 if (GetName() == "scrollBar")
383 if (wxWindowIsVisible(xwindow
))
385 wxLogTrace( _T("focus"), _T("wxWindowX11::SetFocus: %s"), GetClassInfo()->GetClassName());
386 // XSetInputFocus( wxGlobalDisplay(), xwindow, RevertToParent, CurrentTime );
387 XSetInputFocus( wxGlobalDisplay(), xwindow
, RevertToNone
, CurrentTime
);
388 m_needsInputFocus
= FALSE
;
392 m_needsInputFocus
= TRUE
;
396 // Get the window with the focus
397 wxWindow
*wxWindowBase::DoFindFocus()
399 Window xfocus
= (Window
) 0;
402 XGetInputFocus( wxGlobalDisplay(), &xfocus
, &revert
);
405 wxWindow
*win
= wxGetWindowFromTable( xfocus
);
408 win
= wxGetClientWindowFromTable( xfocus
);
417 // Enabling/disabling handled by event loop, and not sending events
419 bool wxWindowX11::Enable(bool enable
)
421 if ( !wxWindowBase::Enable(enable
) )
427 bool wxWindowX11::Show(bool show
)
429 wxWindowBase::Show(show
);
431 Window xwindow
= (Window
) m_mainWindow
;
432 Display
*xdisp
= wxGlobalDisplay();
435 // wxLogDebug( "Mapping window of type %s", GetName().c_str() );
436 XMapWindow(xdisp
, xwindow
);
440 // wxLogDebug( "Unmapping window of type %s", GetName().c_str() );
441 XUnmapWindow(xdisp
, xwindow
);
447 // Raise the window to the top of the Z order
448 void wxWindowX11::Raise()
451 XRaiseWindow( wxGlobalDisplay(), (Window
) m_mainWindow
);
454 // Lower the window to the bottom of the Z order
455 void wxWindowX11::Lower()
458 XLowerWindow( wxGlobalDisplay(), (Window
) m_mainWindow
);
461 void wxWindowX11::DoCaptureMouse()
463 if ((g_captureWindow
!= NULL
) && (g_captureWindow
!= this))
465 wxASSERT_MSG(FALSE
, wxT("Trying to capture before mouse released."));
476 Window xwindow
= (Window
) m_clientWindow
;
478 wxCHECK_RET( xwindow
, wxT("invalid window") );
480 g_captureWindow
= (wxWindow
*) this;
484 int res
= XGrabPointer(wxGlobalDisplay(), xwindow
,
486 ButtonPressMask
| ButtonReleaseMask
| ButtonMotionMask
| EnterWindowMask
| LeaveWindowMask
| PointerMotionMask
,
490 None
, /* cursor */ // TODO: This may need to be set to the cursor of this window
493 if (res
!= GrabSuccess
)
496 msg
.Printf(wxT("Failed to grab pointer for window %s"), this->GetClassInfo()->GetClassName());
498 if (res
== GrabNotViewable
)
499 wxLogDebug( wxT("This is not a viewable window - perhaps not shown yet?") );
501 g_captureWindow
= NULL
;
505 m_winCaptured
= TRUE
;
509 void wxWindowX11::DoReleaseMouse()
511 g_captureWindow
= NULL
;
513 if ( !m_winCaptured
)
516 Window xwindow
= (Window
) m_clientWindow
;
520 XUngrabPointer( wxGlobalDisplay(), CurrentTime
);
523 // wxLogDebug( "Ungrabbed pointer in %s", GetName().c_str() );
525 m_winCaptured
= FALSE
;
528 bool wxWindowX11::SetFont(const wxFont
& font
)
530 if ( !wxWindowBase::SetFont(font
) )
539 bool wxWindowX11::SetCursor(const wxCursor
& cursor
)
541 if ( !wxWindowBase::SetCursor(cursor
) )
547 Window xwindow
= (Window
) m_clientWindow
;
549 wxCHECK_MSG( xwindow
, FALSE
, wxT("invalid window") );
551 wxCursor cursorToUse
;
553 cursorToUse
= m_cursor
;
555 cursorToUse
= *wxSTANDARD_CURSOR
;
557 Cursor xcursor
= (Cursor
) cursorToUse
.GetCursor();
559 XDefineCursor( wxGlobalDisplay(), xwindow
, xcursor
);
564 // Coordinates relative to the window
565 void wxWindowX11::WarpPointer (int x
, int y
)
567 Window xwindow
= (Window
) m_clientWindow
;
569 wxCHECK_RET( xwindow
, wxT("invalid window") );
571 XWarpPointer( wxGlobalDisplay(), None
, xwindow
, 0, 0, 0, 0, x
, y
);
574 // Does a physical scroll
575 void wxWindowX11::ScrollWindow(int dx
, int dy
, const wxRect
*rect
)
577 // No scrolling requested.
578 if ((dx
== 0) && (dy
== 0)) return;
580 if (!m_updateRegion
.IsEmpty())
582 m_updateRegion
.Offset( dx
, dy
);
586 GetSize( &cw
, &ch
); // GetClientSize() ??
587 m_updateRegion
.Intersect( 0, 0, cw
, ch
);
590 if (!m_clearRegion
.IsEmpty())
592 m_clearRegion
.Offset( dx
, dy
);
596 GetSize( &cw
, &ch
); // GetClientSize() ??
597 m_clearRegion
.Intersect( 0, 0, cw
, ch
);
600 Window xwindow
= (Window
) GetClientAreaWindow();
602 wxCHECK_RET( xwindow
, wxT("invalid window") );
604 Display
*xdisplay
= wxGlobalDisplay();
606 GC xgc
= XCreateGC( xdisplay
, xwindow
, 0, NULL
);
607 XSetGraphicsExposures( xdisplay
, xgc
, True
);
625 GetClientSize( &cw
, &ch
);
628 #if wxUSE_TWO_WINDOWS
629 wxPoint
offset( 0,0 );
631 wxPoint offset
= GetClientAreaOrigin();
636 int w
= cw
- abs(dx
);
637 int h
= ch
- abs(dy
);
639 if ((h
< 0) || (w
< 0))
646 if (dx
< 0) rect
.x
= cw
+dx
+ offset
.x
; else rect
.x
= s_x
;
647 if (dy
< 0) rect
.y
= ch
+dy
+ offset
.y
; else rect
.y
= s_y
;
648 if (dy
!= 0) rect
.width
= cw
; else rect
.width
= abs(dx
);
649 if (dx
!= 0) rect
.height
= ch
; else rect
.height
= abs(dy
);
654 if (dx
< 0) s_x
+= -dx
;
655 if (dy
< 0) s_y
+= -dy
;
656 if (dx
> 0) d_x
= dx
+ offset
.x
;
657 if (dy
> 0) d_y
= dy
+ offset
.y
;
659 XCopyArea( xdisplay
, xwindow
, xwindow
, xgc
, s_x
, s_y
, w
, h
, d_x
, d_y
);
661 // 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 );
663 // wxLogDebug( "Update: %d %d %d %d", rect.x, rect.y, rect.width, rect.height );
665 m_updateRegion
.Union( rect
);
666 m_clearRegion
.Union( rect
);
669 XFreeGC( xdisplay
, xgc
);
671 // Move Clients, but not the scrollbars
672 // FIXME: There may be a better method to move a lot of Windows within X11
673 wxScrollBar
*sbH
= ((wxWindow
*) this)->GetScrollbar( wxHORIZONTAL
);
674 wxScrollBar
*sbV
= ((wxWindow
*) this)->GetScrollbar( wxVERTICAL
);
675 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
678 // Only propagate to non-top-level windows
679 wxWindow
*win
= node
->GetData();
680 if ( win
->GetParent() && win
!= sbH
&& win
!= sbV
)
682 wxPoint pos
= win
->GetPosition();
683 // Add the delta to the old Position
686 win
->SetPosition(pos
);
688 node
= node
->GetNext();
692 // ---------------------------------------------------------------------------
694 // ---------------------------------------------------------------------------
696 #if wxUSE_DRAG_AND_DROP
698 void wxWindowX11::SetDropTarget(wxDropTarget
* WXUNUSED(pDropTarget
))
705 // Old style file-manager drag&drop
706 void wxWindowX11::DragAcceptFiles(bool WXUNUSED(accept
))
711 // ----------------------------------------------------------------------------
713 // ----------------------------------------------------------------------------
717 void wxWindowX11::DoSetToolTip(wxToolTip
* WXUNUSED(tooltip
))
722 #endif // wxUSE_TOOLTIPS
724 // ---------------------------------------------------------------------------
725 // moving and resizing
726 // ---------------------------------------------------------------------------
728 bool wxWindowX11::PreResize()
734 void wxWindowX11::DoGetSize(int *x
, int *y
) const
736 Window xwindow
= (Window
) m_mainWindow
;
738 wxCHECK_RET( xwindow
, wxT("invalid window") );
740 //XSync(wxGlobalDisplay(), False);
742 XWindowAttributes attr
;
743 Status status
= XGetWindowAttributes( wxGlobalDisplay(), xwindow
, &attr
);
748 *x
= attr
.width
/* + 2*m_borderSize */ ;
749 *y
= attr
.height
/* + 2*m_borderSize */ ;
753 void wxWindowX11::DoGetPosition(int *x
, int *y
) const
755 Window window
= (Window
) m_mainWindow
;
758 //XSync(wxGlobalDisplay(), False);
759 XWindowAttributes attr
;
760 Status status
= XGetWindowAttributes(wxGlobalDisplay(), window
, & attr
);
768 // We may be faking the client origin. So a window that's really at (0, 30)
769 // may appear (to wxWin apps) to be at (0, 0).
772 wxPoint
pt(GetParent()->GetClientAreaOrigin());
780 void wxWindowX11::DoScreenToClient(int *x
, int *y
) const
782 Display
*display
= wxGlobalDisplay();
783 Window rootWindow
= RootWindowOfScreen(DefaultScreenOfDisplay(display
));
784 Window thisWindow
= (Window
) m_clientWindow
;
789 XTranslateCoordinates(display
, rootWindow
, thisWindow
, xx
, yy
, x
, y
, &childWindow
);
792 void wxWindowX11::DoClientToScreen(int *x
, int *y
) const
794 Display
*display
= wxGlobalDisplay();
795 Window rootWindow
= RootWindowOfScreen(DefaultScreenOfDisplay(display
));
796 Window thisWindow
= (Window
) m_clientWindow
;
801 XTranslateCoordinates(display
, thisWindow
, rootWindow
, xx
, yy
, x
, y
, &childWindow
);
805 // Get size *available for subwindows* i.e. excluding menu bar etc.
806 void wxWindowX11::DoGetClientSize(int *x
, int *y
) const
808 Window window
= (Window
) m_mainWindow
;
812 XWindowAttributes attr
;
813 Status status
= XGetWindowAttributes( wxGlobalDisplay(), window
, &attr
);
824 void wxWindowX11::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
826 // wxLogDebug("DoSetSize: %s (%ld) %d, %d %dx%d", GetClassInfo()->GetClassName(), GetId(), x, y, width, height);
828 Window xwindow
= (Window
) m_mainWindow
;
830 wxCHECK_RET( xwindow
, wxT("invalid window") );
832 XWindowAttributes attr
;
833 Status status
= XGetWindowAttributes( wxGlobalDisplay(), xwindow
, &attr
);
834 wxCHECK_RET( status
, wxT("invalid window attributes") );
838 int new_w
= attr
.width
;
839 int new_h
= attr
.height
;
841 if (x
!= -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
844 AdjustForParentClientOrigin( x
, yy
, sizeFlags
);
847 if (y
!= -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
850 AdjustForParentClientOrigin( xx
, y
, sizeFlags
);
866 DoMoveWindow( new_x
, new_y
, new_w
, new_h
);
869 void wxWindowX11::DoSetClientSize(int width
, int height
)
871 // wxLogDebug("DoSetClientSize: %s (%ld) %dx%d", GetClassInfo()->GetClassName(), GetId(), width, height);
873 Window xwindow
= (Window
) m_mainWindow
;
875 wxCHECK_RET( xwindow
, wxT("invalid window") );
877 XResizeWindow( wxGlobalDisplay(), xwindow
, width
, height
);
879 if (m_mainWindow
!= m_clientWindow
)
881 xwindow
= (Window
) m_clientWindow
;
883 wxWindow
*window
= (wxWindow
*) this;
884 wxRenderer
*renderer
= window
->GetRenderer();
887 wxRect border
= renderer
->GetBorderDimensions( (wxBorder
)(m_windowStyle
& wxBORDER_MASK
) );
888 width
-= border
.x
+ border
.width
;
889 height
-= border
.y
+ border
.height
;
892 XResizeWindow( wxGlobalDisplay(), xwindow
, width
, height
);
896 void wxWindowX11::DoMoveWindow(int x
, int y
, int width
, int height
)
898 Window xwindow
= (Window
) m_mainWindow
;
900 wxCHECK_RET( xwindow
, wxT("invalid window") );
904 XMoveResizeWindow( wxGlobalDisplay(), xwindow
, x
, y
, width
, height
);
905 if (m_mainWindow
!= m_clientWindow
)
907 xwindow
= (Window
) m_clientWindow
;
909 wxWindow
*window
= (wxWindow
*) this;
910 wxRenderer
*renderer
= window
->GetRenderer();
913 wxRect border
= renderer
->GetBorderDimensions( (wxBorder
)(m_windowStyle
& wxBORDER_MASK
) );
916 width
-= border
.x
+ border
.width
;
917 height
-= border
.y
+ border
.height
;
925 wxScrollBar
*sb
= window
->GetScrollbar( wxHORIZONTAL
);
926 if (sb
&& sb
->IsShown())
928 wxSize size
= sb
->GetSize();
931 sb
= window
->GetScrollbar( wxVERTICAL
);
932 if (sb
&& sb
->IsShown())
934 wxSize size
= sb
->GetSize();
938 XMoveResizeWindow( wxGlobalDisplay(), xwindow
, x
, y
, wxMax(1, width
), wxMax(1, height
) );
943 XWindowChanges windowChanges
;
946 windowChanges
.width
= width
;
947 windowChanges
.height
= height
;
948 windowChanges
.stack_mode
= 0;
949 int valueMask
= CWX
| CWY
| CWWidth
| CWHeight
;
951 XConfigureWindow( wxGlobalDisplay(), xwindow
, valueMask
, &windowChanges
);
956 void wxWindowX11::DoSetSizeHints(int minW
, int minH
, int maxW
, int maxH
, int incW
, int incH
)
964 XSizeHints sizeHints
;
967 if (minW
> -1 && minH
> -1)
969 sizeHints
.flags
|= PMinSize
;
970 sizeHints
.min_width
= minW
;
971 sizeHints
.min_height
= minH
;
973 if (maxW
> -1 && maxH
> -1)
975 sizeHints
.flags
|= PMaxSize
;
976 sizeHints
.max_width
= maxW
;
977 sizeHints
.max_height
= maxH
;
979 if (incW
> -1 && incH
> -1)
981 sizeHints
.flags
|= PResizeInc
;
982 sizeHints
.width_inc
= incW
;
983 sizeHints
.height_inc
= incH
;
986 XSetWMNormalHints(wxGlobalDisplay(), (Window
) m_mainWindow
, &sizeHints
);
990 // ---------------------------------------------------------------------------
992 // ---------------------------------------------------------------------------
994 int wxWindowX11::GetCharHeight() const
996 wxFont
font(GetFont());
997 wxCHECK_MSG( font
.Ok(), 0, wxT("valid window font needed") );
1000 // There should be an easier way.
1001 PangoLayout
*layout
= pango_layout_new( wxTheApp
->GetPangoContext() );
1002 pango_layout_set_font_description( layout
, font
.GetNativeFontInfo()->description
);
1003 pango_layout_set_text(layout
, "H", 1 );
1005 pango_layout_get_pixel_size(layout
, &w
, &h
);
1006 g_object_unref( G_OBJECT( layout
) );
1010 WXFontStructPtr pFontStruct
= font
.GetFontStruct(1.0, wxGlobalDisplay());
1012 int direction
, ascent
, descent
;
1013 XCharStruct overall
;
1014 XTextExtents ((XFontStruct
*) pFontStruct
, "x", 1, &direction
, &ascent
,
1015 &descent
, &overall
);
1017 // return (overall.ascent + overall.descent);
1018 return (ascent
+ descent
);
1022 int wxWindowX11::GetCharWidth() const
1024 wxFont
font(GetFont());
1025 wxCHECK_MSG( font
.Ok(), 0, wxT("valid window font needed") );
1028 // There should be an easier way.
1029 PangoLayout
*layout
= pango_layout_new( wxTheApp
->GetPangoContext() );
1030 pango_layout_set_font_description( layout
, font
.GetNativeFontInfo()->description
);
1031 pango_layout_set_text(layout
, "H", 1 );
1033 pango_layout_get_pixel_size(layout
, &w
, &h
);
1034 g_object_unref( G_OBJECT( layout
) );
1038 WXFontStructPtr pFontStruct
= font
.GetFontStruct(1.0, wxGlobalDisplay());
1040 int direction
, ascent
, descent
;
1041 XCharStruct overall
;
1042 XTextExtents ((XFontStruct
*) pFontStruct
, "x", 1, &direction
, &ascent
,
1043 &descent
, &overall
);
1045 return overall
.width
;
1049 void wxWindowX11::GetTextExtent(const wxString
& string
,
1051 int *descent
, int *externalLeading
,
1052 const wxFont
*theFont
) const
1054 wxFont fontToUse
= GetFont();
1055 if (theFont
) fontToUse
= *theFont
;
1057 wxCHECK_RET( fontToUse
.Ok(), wxT("invalid font") );
1059 if (string
.IsEmpty())
1067 PangoLayout
*layout
= pango_layout_new( wxTheApp
->GetPangoContext() );
1069 PangoFontDescription
*desc
= fontToUse
.GetNativeFontInfo()->description
;
1070 pango_layout_set_font_description(layout
, desc
);
1072 const wxCharBuffer data
= wxConvUTF8
.cWC2MB( string
);
1073 pango_layout_set_text(layout
, (const char*) data
, strlen( (const char*) data
));
1075 PangoLayoutLine
*line
= (PangoLayoutLine
*)pango_layout_get_lines(layout
)->data
;
1078 PangoRectangle rect
;
1079 pango_layout_line_get_extents(line
, NULL
, &rect
);
1081 if (x
) (*x
) = (wxCoord
) (rect
.width
/ PANGO_SCALE
);
1082 if (y
) (*y
) = (wxCoord
) (rect
.height
/ PANGO_SCALE
);
1085 // Do something about metrics here
1088 if (externalLeading
) (*externalLeading
) = 0; // ??
1090 g_object_unref( G_OBJECT( layout
) );
1092 WXFontStructPtr pFontStruct
= fontToUse
.GetFontStruct(1.0, wxGlobalDisplay());
1094 int direction
, ascent
, descent2
;
1095 XCharStruct overall
;
1096 int slen
= string
.Len();
1098 XTextExtents((XFontStruct
*) pFontStruct
, (char*) string
.c_str(), slen
,
1099 &direction
, &ascent
, &descent2
, &overall
);
1102 *x
= (overall
.width
);
1104 *y
= (ascent
+ descent2
);
1106 *descent
= descent2
;
1107 if (externalLeading
)
1108 *externalLeading
= 0;
1112 // ----------------------------------------------------------------------------
1114 // ----------------------------------------------------------------------------
1116 void wxWindowX11::Refresh(bool eraseBack
, const wxRect
*rect
)
1122 // Schedule for later Updating in ::Update() or ::OnInternalIdle().
1123 m_clearRegion
.Union( rect
->x
, rect
->y
, rect
->width
, rect
->height
);
1128 GetSize( &width
, &height
);
1130 // Schedule for later Updating in ::Update() or ::OnInternalIdle().
1131 m_clearRegion
.Clear();
1132 m_clearRegion
.Union( 0, 0, width
, height
);
1138 // Schedule for later Updating in ::Update() or ::OnInternalIdle().
1139 m_updateRegion
.Union( rect
->x
, rect
->y
, rect
->width
, rect
->height
);
1144 GetSize( &width
, &height
);
1146 // Schedule for later Updating in ::Update() or ::OnInternalIdle().
1147 m_updateRegion
.Clear();
1148 m_updateRegion
.Union( 0, 0, width
, height
);
1152 void wxWindowX11::Update()
1156 // wxLogDebug("wxWindowX11::UpdateNC: %s", GetClassInfo()->GetClassName());
1157 // Send nc paint events.
1158 SendNcPaintEvents();
1161 if (!m_updateRegion
.IsEmpty())
1163 // wxLogDebug("wxWindowX11::Update: %s", GetClassInfo()->GetClassName());
1164 // Actually send erase events.
1167 // Actually send paint events.
1172 void wxWindowX11::SendEraseEvents()
1174 if (m_clearRegion
.IsEmpty()) return;
1176 wxClientDC
dc( (wxWindow
*)this );
1177 dc
.SetClippingRegion( m_clearRegion
);
1179 wxEraseEvent
erase_event( GetId(), &dc
);
1180 erase_event
.SetEventObject( this );
1182 if (!GetEventHandler()->ProcessEvent(erase_event
) )
1184 Display
*xdisplay
= wxGlobalDisplay();
1185 Window xwindow
= (Window
) GetClientAreaWindow();
1186 XSetForeground( xdisplay
, g_eraseGC
, m_backgroundColour
.GetPixel() );
1188 wxRegionIterator
upd( m_clearRegion
);
1191 XFillRectangle( xdisplay
, xwindow
, g_eraseGC
,
1192 upd
.GetX(), upd
.GetY(), upd
.GetWidth(), upd
.GetHeight() );
1197 m_clearRegion
.Clear();
1200 void wxWindowX11::SendPaintEvents()
1202 // wxLogDebug("SendPaintEvents: %s (%ld)", GetClassInfo()->GetClassName(), GetId());
1204 m_clipPaintRegion
= TRUE
;
1206 wxPaintEvent
paint_event( GetId() );
1207 paint_event
.SetEventObject( this );
1208 GetEventHandler()->ProcessEvent( paint_event
);
1210 m_updateRegion
.Clear();
1212 m_clipPaintRegion
= FALSE
;
1215 void wxWindowX11::SendNcPaintEvents()
1217 wxWindow
*window
= (wxWindow
*) this;
1219 // All this for drawing the small square between the scrollbars.
1224 wxScrollBar
*sb
= window
->GetScrollbar( wxHORIZONTAL
);
1225 if (sb
&& sb
->IsShown())
1227 height
= sb
->GetSize().y
;
1228 y
= sb
->GetPosition().y
;
1230 sb
= window
->GetScrollbar( wxVERTICAL
);
1231 if (sb
&& sb
->IsShown())
1233 width
= sb
->GetSize().x
;
1234 x
= sb
->GetPosition().x
;
1236 Display
*xdisplay
= wxGlobalDisplay();
1237 Window xwindow
= (Window
) GetMainWindow();
1238 Colormap cm
= (Colormap
) wxTheApp
->GetMainColormap( wxGetDisplay() );
1239 wxColour colour
= wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
);
1240 colour
.CalcPixel( (WXColormap
) cm
);
1242 XSetForeground( xdisplay
, g_eraseGC
, colour
.GetPixel() );
1244 XFillRectangle( xdisplay
, xwindow
, g_eraseGC
, x
, y
, width
, height
);
1248 wxNcPaintEvent
nc_paint_event( GetId() );
1249 nc_paint_event
.SetEventObject( this );
1250 GetEventHandler()->ProcessEvent( nc_paint_event
);
1252 m_updateNcArea
= FALSE
;
1255 // ----------------------------------------------------------------------------
1257 // ----------------------------------------------------------------------------
1259 // Responds to colour changes: passes event on to children.
1260 void wxWindowX11::OnSysColourChanged(wxSysColourChangedEvent
& event
)
1262 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
1265 // Only propagate to non-top-level windows
1266 wxWindow
*win
= node
->GetData();
1267 if ( win
->GetParent() )
1269 wxSysColourChangedEvent event2
;
1270 event
.SetEventObject(win
);
1271 win
->GetEventHandler()->ProcessEvent(event2
);
1274 node
= node
->GetNext();
1278 // See handler for InFocus case in app.cpp for details.
1279 wxWindow
* g_GettingFocus
= NULL
;
1281 void wxWindowX11::OnInternalIdle()
1283 // Update invalidated regions.
1286 // This calls the UI-update mechanism (querying windows for
1287 // menu/toolbar/control state information)
1288 if (wxUpdateUIEvent::CanUpdate((wxWindow
*) this))
1289 UpdateWindowUI(wxUPDATE_UI_FROMIDLE
);
1291 // Set the input focus if couldn't do it before
1292 if (m_needsInputFocus
)
1296 msg
.Printf("Setting focus for %s from OnInternalIdle\n", GetClassInfo()->GetClassName());
1297 printf(msg
.c_str());
1301 // If it couldn't set the focus now, there's
1302 // no point in trying again.
1303 m_needsInputFocus
= FALSE
;
1305 g_GettingFocus
= NULL
;
1308 // ----------------------------------------------------------------------------
1309 // function which maintain the global hash table mapping Widgets to wxWidgets
1310 // ----------------------------------------------------------------------------
1312 static bool DoAddWindowToTable(wxWindowHash
*hash
, Window w
, wxWindow
*win
)
1314 if ( !hash
->insert(wxWindowHash::value_type(w
, win
)).second
)
1316 wxLogDebug( wxT("Widget table clash: new widget is 0x%08x, %s"),
1317 (unsigned int)w
, win
->GetClassInfo()->GetClassName());
1321 wxLogTrace( wxT("widget"), wxT("XWindow 0x%08x <-> window %p (%s)"),
1322 (unsigned int) w
, win
, win
->GetClassInfo()->GetClassName());
1327 static inline wxWindow
*DoGetWindowFromTable(wxWindowHash
*hash
, Window w
)
1329 wxWindowHash::iterator i
= hash
->find(w
);
1330 return i
== hash
->end() ? NULL
: i
->second
;
1333 static inline void DoDeleteWindowFromTable(wxWindowHash
*hash
, Window w
)
1335 wxLogTrace( wxT("widget"), wxT("XWindow 0x%08x deleted"), (unsigned int) w
);
1340 // ----------------------------------------------------------------------------
1342 // ----------------------------------------------------------------------------
1344 bool wxAddWindowToTable(Window w
, wxWindow
*win
)
1346 return DoAddWindowToTable(wxWidgetHashTable
, w
, win
);
1349 wxWindow
*wxGetWindowFromTable(Window w
)
1351 return DoGetWindowFromTable(wxWidgetHashTable
, w
);
1354 void wxDeleteWindowFromTable(Window w
)
1356 DoDeleteWindowFromTable(wxWidgetHashTable
, w
);
1359 bool wxAddClientWindowToTable(Window w
, wxWindow
*win
)
1361 return DoAddWindowToTable(wxClientWidgetHashTable
, w
, win
);
1364 wxWindow
*wxGetClientWindowFromTable(Window w
)
1366 return DoGetWindowFromTable(wxClientWidgetHashTable
, w
);
1369 void wxDeleteClientWindowFromTable(Window w
)
1371 DoDeleteWindowFromTable(wxClientWidgetHashTable
, w
);
1374 // ----------------------------------------------------------------------------
1375 // X11-specific accessors
1376 // ----------------------------------------------------------------------------
1378 WXWindow
wxWindowX11::GetMainWindow() const
1380 return m_mainWindow
;
1383 WXWindow
wxWindowX11::GetClientAreaWindow() const
1385 return m_clientWindow
;
1388 // ----------------------------------------------------------------------------
1389 // TranslateXXXEvent() functions
1390 // ----------------------------------------------------------------------------
1392 bool wxTranslateMouseEvent(wxMouseEvent
& wxevent
, wxWindow
*win
, Window window
, XEvent
*xevent
)
1394 switch (XEventGetType(xevent
))
1402 wxEventType eventType
= wxEVT_NULL
;
1404 if (XEventGetType(xevent
) == EnterNotify
)
1406 //if (local_event.xcrossing.mode!=NotifyNormal)
1407 // return ; // Ignore grab events
1408 eventType
= wxEVT_ENTER_WINDOW
;
1409 // canvas->GetEventHandler()->OnSetFocus();
1411 else if (XEventGetType(xevent
) == LeaveNotify
)
1413 //if (local_event.xcrossingr.mode!=NotifyNormal)
1414 // return ; // Ignore grab events
1415 eventType
= wxEVT_LEAVE_WINDOW
;
1416 // canvas->GetEventHandler()->OnKillFocus();
1418 else if (XEventGetType(xevent
) == MotionNotify
)
1420 eventType
= wxEVT_MOTION
;
1422 else if (XEventGetType(xevent
) == ButtonPress
)
1424 wxevent
.SetTimestamp(XButtonEventGetTime(xevent
));
1426 if (XButtonEventLChanged(xevent
))
1428 eventType
= wxEVT_LEFT_DOWN
;
1431 else if (XButtonEventMChanged(xevent
))
1433 eventType
= wxEVT_MIDDLE_DOWN
;
1436 else if (XButtonEventRChanged(xevent
))
1438 eventType
= wxEVT_RIGHT_DOWN
;
1442 // check for a double click
1443 // TODO: where can we get this value from?
1444 //long dclickTime = XtGetMultiClickTime(wxGlobalDisplay());
1445 long dclickTime
= 200;
1446 long ts
= wxevent
.GetTimestamp();
1448 int buttonLast
= win
->GetLastClickedButton();
1449 long lastTS
= win
->GetLastClickTime();
1450 if ( buttonLast
&& buttonLast
== button
&& (ts
- lastTS
) < dclickTime
)
1453 win
->SetLastClick(0, ts
);
1454 if ( eventType
== wxEVT_LEFT_DOWN
)
1455 eventType
= wxEVT_LEFT_DCLICK
;
1456 else if ( eventType
== wxEVT_MIDDLE_DOWN
)
1457 eventType
= wxEVT_MIDDLE_DCLICK
;
1458 else if ( eventType
== wxEVT_RIGHT_DOWN
)
1459 eventType
= wxEVT_RIGHT_DCLICK
;
1463 // not fast enough or different button
1464 win
->SetLastClick(button
, ts
);
1467 else if (XEventGetType(xevent
) == ButtonRelease
)
1469 if (XButtonEventLChanged(xevent
))
1471 eventType
= wxEVT_LEFT_UP
;
1473 else if (XButtonEventMChanged(xevent
))
1475 eventType
= wxEVT_MIDDLE_UP
;
1477 else if (XButtonEventRChanged(xevent
))
1479 eventType
= wxEVT_RIGHT_UP
;
1488 wxevent
.SetEventType(eventType
);
1490 wxevent
.m_x
= XButtonEventGetX(xevent
);
1491 wxevent
.m_y
= XButtonEventGetY(xevent
);
1493 wxevent
.m_leftDown
= ((eventType
== wxEVT_LEFT_DOWN
)
1494 || (XButtonEventLIsDown(xevent
)
1495 && (eventType
!= wxEVT_LEFT_UP
)));
1496 wxevent
.m_middleDown
= ((eventType
== wxEVT_MIDDLE_DOWN
)
1497 || (XButtonEventMIsDown(xevent
)
1498 && (eventType
!= wxEVT_MIDDLE_UP
)));
1499 wxevent
.m_rightDown
= ((eventType
== wxEVT_RIGHT_DOWN
)
1500 || (XButtonEventRIsDown (xevent
)
1501 && (eventType
!= wxEVT_RIGHT_UP
)));
1503 wxevent
.m_shiftDown
= XButtonEventShiftIsDown(xevent
);
1504 wxevent
.m_controlDown
= XButtonEventCtrlIsDown(xevent
);
1505 wxevent
.m_altDown
= XButtonEventAltIsDown(xevent
);
1506 wxevent
.m_metaDown
= XButtonEventMetaIsDown(xevent
);
1508 wxevent
.SetId(win
->GetId());
1509 wxevent
.SetEventObject(win
);
1517 bool wxTranslateKeyEvent(wxKeyEvent
& wxevent
, wxWindow
*win
, Window
WXUNUSED(win
), XEvent
*xevent
, bool isAscii
)
1519 switch (XEventGetType(xevent
))
1527 (void) XLookupString ((XKeyEvent
*) xevent
, buf
, 20, &keySym
, NULL
);
1528 int id
= wxCharCodeXToWX (keySym
);
1529 // id may be WXK_xxx code - these are outside ASCII range, so we
1530 // can't just use toupper() on id.
1531 // Only change this if we want the raw key that was pressed,
1532 // and don't change it if we want an ASCII value.
1533 if (!isAscii
&& (id
>= 'a' && id
<= 'z'))
1535 id
= id
+ 'A' - 'a';
1538 wxevent
.m_shiftDown
= XKeyEventShiftIsDown(xevent
);
1539 wxevent
.m_controlDown
= XKeyEventCtrlIsDown(xevent
);
1540 wxevent
.m_altDown
= XKeyEventAltIsDown(xevent
);
1541 wxevent
.m_metaDown
= XKeyEventMetaIsDown(xevent
);
1542 wxevent
.SetEventObject(win
);
1543 wxevent
.m_keyCode
= id
;
1544 wxevent
.SetTimestamp(XKeyEventGetTime(xevent
));
1546 wxevent
.m_x
= XKeyEventGetX(xevent
);
1547 wxevent
.m_y
= XKeyEventGetY(xevent
);
1557 // ----------------------------------------------------------------------------
1559 // ----------------------------------------------------------------------------
1561 bool wxWindowX11::SetBackgroundColour(const wxColour
& col
)
1563 wxWindowBase::SetBackgroundColour(col
);
1565 Display
*xdisplay
= (Display
*) wxGlobalDisplay();
1566 int xscreen
= DefaultScreen( xdisplay
);
1567 Colormap cm
= DefaultColormap( xdisplay
, xscreen
);
1569 m_backgroundColour
.CalcPixel( (WXColormap
) cm
);
1571 // We don't set the background colour as we paint
1572 // the background ourselves.
1573 // XSetWindowBackground( xdisplay, (Window) m_clientWindow, m_backgroundColour.GetPixel() );
1578 bool wxWindowX11::SetForegroundColour(const wxColour
& col
)
1580 if ( !wxWindowBase::SetForegroundColour(col
) )
1586 // ----------------------------------------------------------------------------
1588 // ----------------------------------------------------------------------------
1590 wxWindow
*wxGetActiveWindow()
1593 wxFAIL_MSG(wxT("Not implemented"));
1598 wxWindow
*wxWindowBase::GetCapture()
1600 return (wxWindow
*)g_captureWindow
;
1604 // Find the wxWindow at the current mouse position, returning the mouse
1606 wxWindow
* wxFindWindowAtPointer(wxPoint
& pt
)
1608 return wxFindWindowAtPoint(wxGetMousePosition());
1611 // Get the current mouse position.
1612 wxPoint
wxGetMousePosition()
1616 return wxPoint(0, 0);
1618 Display
*display
= wxGlobalDisplay();
1619 Window rootWindow
= RootWindowOfScreen (DefaultScreenOfDisplay(display
));
1620 Window rootReturn
, childReturn
;
1621 int rootX
, rootY
, winX
, winY
;
1622 unsigned int maskReturn
;
1624 XQueryPointer (display
,
1628 &rootX
, &rootY
, &winX
, &winY
, &maskReturn
);
1629 return wxPoint(rootX
, rootY
);
1634 // ----------------------------------------------------------------------------
1635 // wxNoOptimize: switch off size optimization
1636 // ----------------------------------------------------------------------------
1638 int wxNoOptimize::ms_count
= 0;
1641 // ----------------------------------------------------------------------------
1643 // ----------------------------------------------------------------------------
1645 class wxWinModule
: public wxModule
1652 DECLARE_DYNAMIC_CLASS(wxWinModule
)
1655 IMPLEMENT_DYNAMIC_CLASS(wxWinModule
, wxModule
)
1657 bool wxWinModule::OnInit()
1659 Display
*xdisplay
= wxGlobalDisplay();
1660 int xscreen
= DefaultScreen( xdisplay
);
1661 Window xroot
= RootWindow( xdisplay
, xscreen
);
1662 g_eraseGC
= XCreateGC( xdisplay
, xroot
, 0, NULL
);
1663 XSetFillStyle( xdisplay
, g_eraseGC
, FillSolid
);
1668 void wxWinModule::OnExit()
1670 Display
*xdisplay
= wxGlobalDisplay();
1671 XFreeGC( xdisplay
, g_eraseGC
);