1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
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/scrolbar.h"
40 #include "wx/module.h"
41 #include "wx/menuitem.h"
43 #include "wx/fontutil.h"
44 #include "wx/univ/renderer.h"
47 #if wxUSE_DRAG_AND_DROP
51 #include "wx/x11/private.h"
52 #include "X11/Xutil.h"
55 // For wxGetLocalTime, used by XButtonEventGetTime
61 // ----------------------------------------------------------------------------
62 // global variables for this module
63 // ----------------------------------------------------------------------------
65 extern wxHashTable
*wxWidgetHashTable
;
66 extern wxHashTable
*wxClientWidgetHashTable
;
67 static wxWindow
* g_captureWindow
= NULL
;
70 // ----------------------------------------------------------------------------
72 // ----------------------------------------------------------------------------
74 #define event_left_is_down(x) ((x)->xbutton.state & Button1Mask)
75 #define event_middle_is_down(x) ((x)->xbutton.state & Button2Mask)
76 #define event_right_is_down(x) ((x)->xbutton.state & Button3Mask)
78 // ----------------------------------------------------------------------------
80 // ----------------------------------------------------------------------------
82 IMPLEMENT_ABSTRACT_CLASS(wxWindowX11
, wxWindowBase
)
84 BEGIN_EVENT_TABLE(wxWindowX11
, wxWindowBase
)
85 EVT_SYS_COLOUR_CHANGED(wxWindowX11::OnSysColourChanged
)
88 // ============================================================================
90 // ============================================================================
92 // ----------------------------------------------------------------------------
94 // ----------------------------------------------------------------------------
96 // ----------------------------------------------------------------------------
98 // ----------------------------------------------------------------------------
100 void wxWindowX11::Init()
102 // generic initializations first
106 m_mainWindow
= (WXWindow
) 0;
107 m_clientWindow
= (WXWindow
) 0;
108 m_insertIntoMain
= FALSE
;
109 m_updateNcArea
= FALSE
;
111 m_winCaptured
= FALSE
;
112 m_needsInputFocus
= FALSE
;
114 m_isBeingDeleted
= FALSE
;
119 // real construction (Init() must have been called before!)
120 bool wxWindowX11::Create(wxWindow
*parent
, wxWindowID id
,
124 const wxString
& name
)
126 wxCHECK_MSG( parent
, FALSE
, wxT("can't create wxWindow without parent") );
128 CreateBase(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
);
130 parent
->AddChild(this);
132 Display
*xdisplay
= (Display
*) wxGlobalDisplay();
133 int xscreen
= DefaultScreen( xdisplay
);
134 Visual
*xvisual
= DefaultVisual( xdisplay
, xscreen
);
135 Colormap cm
= DefaultColormap( xdisplay
, xscreen
);
137 m_backgroundColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
138 m_backgroundColour
.CalcPixel( (WXColormap
) cm
);
140 m_foregroundColour
= *wxBLACK
;
141 m_foregroundColour
.CalcPixel( (WXColormap
) cm
);
143 Window xparent
= (Window
) parent
->GetClientAreaWindow();
145 // Add window's own scrollbars to main window, not to client window
146 if (parent
->GetInsertIntoMain())
148 // wxLogDebug( "Inserted into main: %s", GetName().c_str() );
149 xparent
= (Window
) parent
->GetMainWindow();
152 // Size (not including the border) must be nonzero (or a Value error results)!
153 // Note: The Xlib manual doesn't mention this restriction of XCreateWindow.
166 #if wxUSE_TWO_WINDOWS
167 bool need_two_windows
=
168 ((( wxSUNKEN_BORDER
| wxRAISED_BORDER
| wxSIMPLE_BORDER
| wxHSCROLL
| wxVSCROLL
) & m_windowStyle
) != 0);
170 bool need_two_windows
= FALSE
;
174 long xattributes
= 0;
176 XSetWindowAttributes xattributes
;
177 long xattributes_mask
= 0;
179 xattributes_mask
|= CWBackPixel
;
180 xattributes
.background_pixel
= m_backgroundColour
.GetPixel();
182 xattributes_mask
|= CWBorderPixel
;
183 xattributes
.border_pixel
= BlackPixel( xdisplay
, xscreen
);
185 xattributes_mask
|= CWEventMask
;
188 if (need_two_windows
)
191 long backColor
, foreColor
;
192 backColor
= GR_RGB(m_backgroundColour
.Red(), m_backgroundColour
.Green(), m_backgroundColour
.Blue());
193 foreColor
= GR_RGB(m_foregroundColour
.Red(), m_foregroundColour
.Green(), m_foregroundColour
.Blue());
195 Window xwindow
= XCreateWindowWithColor( xdisplay
, xparent
, pos2
.x
, pos2
.y
, size2
.x
, size2
.y
,
196 0, 0, InputOutput
, xvisual
, backColor
, foreColor
);
197 XSelectInput( xdisplay
, xwindow
,
198 GR_EVENT_MASK_CLOSE_REQ
| ExposureMask
| KeyPressMask
| KeyReleaseMask
| ButtonPressMask
| ButtonReleaseMask
|
199 ButtonMotionMask
| EnterWindowMask
| LeaveWindowMask
| PointerMotionMask
|
200 KeymapStateMask
| FocusChangeMask
| ColormapChangeMask
| StructureNotifyMask
|
201 PropertyChangeMask
);
205 xattributes
.event_mask
=
206 ExposureMask
| StructureNotifyMask
| ColormapChangeMask
;
208 Window xwindow
= XCreateWindow( xdisplay
, xparent
, pos2
.x
, pos2
.y
, size2
.x
, size2
.y
,
209 0, DefaultDepth(xdisplay
,xscreen
), InputOutput
, xvisual
, xattributes_mask
, &xattributes
);
213 XSetWindowBackgroundPixmap( xdisplay
, xwindow
, None
);
215 m_mainWindow
= (WXWindow
) xwindow
;
216 wxAddWindowToTable( xwindow
, (wxWindow
*) this );
218 XMapWindow( xdisplay
, xwindow
);
221 xattributes
.event_mask
=
222 ExposureMask
| KeyPressMask
| KeyReleaseMask
| ButtonPressMask
| ButtonReleaseMask
|
223 ButtonMotionMask
| EnterWindowMask
| LeaveWindowMask
| PointerMotionMask
|
224 KeymapStateMask
| FocusChangeMask
| ColormapChangeMask
| StructureNotifyMask
|
225 PropertyChangeMask
| VisibilityChangeMask
;
227 if (HasFlag( wxNO_FULL_REPAINT_ON_RESIZE
))
229 xattributes_mask
|= CWBitGravity
;
230 xattributes
.bit_gravity
= StaticGravity
;
234 if (HasFlag( wxSUNKEN_BORDER
) || HasFlag( wxRAISED_BORDER
))
241 else if (HasFlag( wxSIMPLE_BORDER
))
254 // Make again sure the size is nonzero.
261 backColor
= GR_RGB(m_backgroundColour
.Red(), m_backgroundColour
.Green(), m_backgroundColour
.Blue());
262 foreColor
= GR_RGB(m_foregroundColour
.Red(), m_foregroundColour
.Green(), m_foregroundColour
.Blue());
264 xwindow
= XCreateWindowWithColor( xdisplay
, xwindow
, pos2
.x
, pos2
.y
, size2
.x
, size2
.y
,
265 0, 0, InputOutput
, xvisual
, backColor
, foreColor
);
266 XSelectInput( xdisplay
, xwindow
,
267 GR_EVENT_MASK_CLOSE_REQ
| ExposureMask
| KeyPressMask
| KeyReleaseMask
| ButtonPressMask
| ButtonReleaseMask
|
268 ButtonMotionMask
| EnterWindowMask
| LeaveWindowMask
| PointerMotionMask
|
269 KeymapStateMask
| FocusChangeMask
| ColormapChangeMask
| StructureNotifyMask
|
270 PropertyChangeMask
);
273 xwindow
= XCreateWindow( xdisplay
, xwindow
, pos2
.x
, pos2
.y
, size2
.x
, size2
.y
,
274 0, DefaultDepth(xdisplay
,xscreen
), InputOutput
, xvisual
, xattributes_mask
, &xattributes
);
277 XSetWindowBackgroundPixmap( xdisplay
, xwindow
, None
);
279 m_clientWindow
= (WXWindow
) xwindow
;
280 wxAddClientWindowToTable( xwindow
, (wxWindow
*) this );
282 XMapWindow( xdisplay
, xwindow
);
286 // wxLogDebug( "No two windows needed %s", GetName().c_str() );
288 long backColor
, foreColor
;
289 backColor
= GR_RGB(m_backgroundColour
.Red(), m_backgroundColour
.Green(), m_backgroundColour
.Blue());
290 foreColor
= GR_RGB(m_foregroundColour
.Red(), m_foregroundColour
.Green(), m_foregroundColour
.Blue());
292 Window xwindow
= XCreateWindowWithColor( xdisplay
, xparent
, pos2
.x
, pos2
.y
, size2
.x
, size2
.y
,
293 0, 0, InputOutput
, xvisual
, backColor
, foreColor
);
294 XSelectInput( xdisplay
, xwindow
,
295 GR_EVENT_MASK_CLOSE_REQ
| ExposureMask
| KeyPressMask
| KeyReleaseMask
| ButtonPressMask
| ButtonReleaseMask
|
296 ButtonMotionMask
| EnterWindowMask
| LeaveWindowMask
| PointerMotionMask
|
297 KeymapStateMask
| FocusChangeMask
| ColormapChangeMask
| StructureNotifyMask
|
298 PropertyChangeMask
);
301 xattributes
.event_mask
=
302 ExposureMask
| KeyPressMask
| KeyReleaseMask
| ButtonPressMask
| ButtonReleaseMask
|
303 ButtonMotionMask
| EnterWindowMask
| LeaveWindowMask
| PointerMotionMask
|
304 KeymapStateMask
| FocusChangeMask
| ColormapChangeMask
| StructureNotifyMask
|
305 PropertyChangeMask
| VisibilityChangeMask
;
307 if (HasFlag( wxNO_FULL_REPAINT_ON_RESIZE
))
309 xattributes_mask
|= CWBitGravity
;
310 xattributes
.bit_gravity
= NorthWestGravity
;
313 Window xwindow
= XCreateWindow( xdisplay
, xparent
, pos2
.x
, pos2
.y
, size2
.x
, size2
.y
,
314 0, DefaultDepth(xdisplay
,xscreen
), InputOutput
, xvisual
, xattributes_mask
, &xattributes
);
317 XSetWindowBackgroundPixmap( xdisplay
, xwindow
, None
);
319 m_mainWindow
= (WXWindow
) xwindow
;
320 m_clientWindow
= m_mainWindow
;
321 wxAddWindowToTable( xwindow
, (wxWindow
*) this );
323 XMapWindow( xdisplay
, xwindow
);
326 // Is a subwindow, so map immediately
329 // Without this, the cursor may not be restored properly (e.g. in splitter
331 SetCursor(*wxSTANDARD_CURSOR
);
332 SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
334 // Don't call this, it can have nasty repercussions for composite controls,
336 // SetSize(pos.x, pos.y, size.x, size.y);
342 wxWindowX11::~wxWindowX11()
346 if (g_captureWindow
== this)
347 g_captureWindow
= NULL
;
349 m_isBeingDeleted
= TRUE
;
353 if (m_clientWindow
!= m_mainWindow
)
355 // Destroy the cleint window
356 Window xwindow
= (Window
) m_clientWindow
;
357 wxDeleteClientWindowFromTable( xwindow
);
358 XDestroyWindow( wxGlobalDisplay(), xwindow
);
359 m_clientWindow
= NULL
;
362 // Destroy the window
363 Window xwindow
= (Window
) m_mainWindow
;
364 wxDeleteWindowFromTable( xwindow
);
365 XDestroyWindow( wxGlobalDisplay(), xwindow
);
369 // ---------------------------------------------------------------------------
371 // ---------------------------------------------------------------------------
373 void wxWindowX11::SetFocus()
375 Window xwindow
= (Window
) m_clientWindow
;
377 wxCHECK_RET( xwindow
, wxT("invalid window") );
379 wxCHECK_RET( AcceptsFocus(), wxT("set focus on window that doesn't accept the focus") );
382 if (GetName() == "scrollBar")
389 if (wxWindowIsVisible(xwindow
))
391 wxLogTrace( _T("focus"), _T("wxWindowX11::SetFocus: %s"), GetClassInfo()->GetClassName());
392 // XSetInputFocus( wxGlobalDisplay(), xwindow, RevertToParent, CurrentTime );
393 XSetInputFocus( wxGlobalDisplay(), xwindow
, RevertToNone
, CurrentTime
);
394 m_needsInputFocus
= FALSE
;
398 m_needsInputFocus
= TRUE
;
402 // Get the window with the focus
403 wxWindow
*wxWindowBase::FindFocus()
405 Window xfocus
= (Window
) 0;
408 XGetInputFocus( wxGlobalDisplay(), &xfocus
, &revert
);
411 wxWindow
*win
= wxGetWindowFromTable( xfocus
);
414 win
= wxGetClientWindowFromTable( xfocus
);
423 // Enabling/disabling handled by event loop, and not sending events
425 bool wxWindowX11::Enable(bool enable
)
427 if ( !wxWindowBase::Enable(enable
) )
433 bool wxWindowX11::Show(bool show
)
435 wxWindowBase::Show(show
);
437 Window xwindow
= (Window
) m_mainWindow
;
438 Display
*xdisp
= wxGlobalDisplay();
441 // wxLogDebug( "Mapping window of type %s", GetName().c_str() );
442 XMapWindow(xdisp
, xwindow
);
446 // wxLogDebug( "Unmapping window of type %s", GetName().c_str() );
447 XUnmapWindow(xdisp
, xwindow
);
453 // Raise the window to the top of the Z order
454 void wxWindowX11::Raise()
457 XRaiseWindow( wxGlobalDisplay(), (Window
) m_mainWindow
);
460 // Lower the window to the bottom of the Z order
461 void wxWindowX11::Lower()
464 XLowerWindow( wxGlobalDisplay(), (Window
) m_mainWindow
);
467 void wxWindowX11::DoCaptureMouse()
469 if ((g_captureWindow
!= NULL
) && (g_captureWindow
!= this))
471 wxASSERT_MSG(FALSE
, wxT("Trying to capture before mouse released."));
482 Window xwindow
= (Window
) m_clientWindow
;
484 wxCHECK_RET( xwindow
, wxT("invalid window") );
486 g_captureWindow
= (wxWindow
*) this;
490 int res
= XGrabPointer(wxGlobalDisplay(), xwindow
,
492 ButtonPressMask
| ButtonReleaseMask
| ButtonMotionMask
| EnterWindowMask
| LeaveWindowMask
| PointerMotionMask
,
496 None
, /* cursor */ // TODO: This may need to be set to the cursor of this window
499 if (res
!= GrabSuccess
)
502 msg
.Printf(wxT("Failed to grab pointer for window %s"), this->GetClassInfo()->GetClassName());
504 if (res
== GrabNotViewable
)
505 wxLogDebug( wxT("This is not a viewable window - perhaps not shown yet?") );
507 g_captureWindow
= NULL
;
511 m_winCaptured
= TRUE
;
515 void wxWindowX11::DoReleaseMouse()
517 g_captureWindow
= NULL
;
519 if ( !m_winCaptured
)
522 Window xwindow
= (Window
) m_clientWindow
;
526 XUngrabPointer( wxGlobalDisplay(), CurrentTime
);
529 // wxLogDebug( "Ungrabbed pointer in %s", GetName().c_str() );
531 m_winCaptured
= FALSE
;
534 bool wxWindowX11::SetFont(const wxFont
& font
)
536 if ( !wxWindowBase::SetFont(font
) )
545 bool wxWindowX11::SetCursor(const wxCursor
& cursor
)
547 if ( !wxWindowBase::SetCursor(cursor
) )
553 Window xwindow
= (Window
) m_clientWindow
;
555 wxCHECK_MSG( xwindow
, FALSE
, wxT("invalid window") );
557 wxCursor cursorToUse
;
559 cursorToUse
= m_cursor
;
561 cursorToUse
= *wxSTANDARD_CURSOR
;
563 Cursor xcursor
= (Cursor
) cursorToUse
.GetCursor();
565 XDefineCursor( wxGlobalDisplay(), xwindow
, xcursor
);
570 // Coordinates relative to the window
571 void wxWindowX11::WarpPointer (int x
, int y
)
573 Window xwindow
= (Window
) m_clientWindow
;
575 wxCHECK_RET( xwindow
, wxT("invalid window") );
577 XWarpPointer( wxGlobalDisplay(), None
, xwindow
, 0, 0, 0, 0, x
, y
);
580 // Does a physical scroll
581 void wxWindowX11::ScrollWindow(int dx
, int dy
, const wxRect
*rect
)
583 // No scrolling requested.
584 if ((dx
== 0) && (dy
== 0)) return;
586 if (!m_updateRegion
.IsEmpty())
588 m_updateRegion
.Offset( dx
, dy
);
592 GetSize( &cw
, &ch
); // GetClientSize() ??
593 m_updateRegion
.Intersect( 0, 0, cw
, ch
);
596 if (!m_clearRegion
.IsEmpty())
598 m_clearRegion
.Offset( dx
, dy
);
602 GetSize( &cw
, &ch
); // GetClientSize() ??
603 m_clearRegion
.Intersect( 0, 0, cw
, ch
);
606 Window xwindow
= (Window
) GetClientAreaWindow();
608 wxCHECK_RET( xwindow
, wxT("invalid window") );
610 Display
*xdisplay
= wxGlobalDisplay();
612 GC xgc
= XCreateGC( xdisplay
, xwindow
, 0, NULL
);
613 XSetGraphicsExposures( xdisplay
, xgc
, True
);
631 GetClientSize( &cw
, &ch
);
634 #if wxUSE_TWO_WINDOWS
635 wxPoint
offset( 0,0 );
637 wxPoint offset
= GetClientAreaOrigin();
642 int w
= cw
- abs(dx
);
643 int h
= ch
- abs(dy
);
645 if ((h
< 0) || (w
< 0))
652 if (dx
< 0) rect
.x
= cw
+dx
+ offset
.x
; else rect
.x
= s_x
;
653 if (dy
< 0) rect
.y
= ch
+dy
+ offset
.y
; else rect
.y
= s_y
;
654 if (dy
!= 0) rect
.width
= cw
; else rect
.width
= abs(dx
);
655 if (dx
!= 0) rect
.height
= ch
; else rect
.height
= abs(dy
);
660 if (dx
< 0) s_x
+= -dx
;
661 if (dy
< 0) s_y
+= -dy
;
662 if (dx
> 0) d_x
= dx
+ offset
.x
;
663 if (dy
> 0) d_y
= dy
+ offset
.y
;
665 XCopyArea( xdisplay
, xwindow
, xwindow
, xgc
, s_x
, s_y
, w
, h
, d_x
, d_y
);
667 // 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 );
669 // wxLogDebug( "Update: %d %d %d %d", rect.x, rect.y, rect.width, rect.height );
671 m_updateRegion
.Union( rect
);
672 m_clearRegion
.Union( rect
);
675 XFreeGC( xdisplay
, xgc
);
678 // ---------------------------------------------------------------------------
680 // ---------------------------------------------------------------------------
682 #if wxUSE_DRAG_AND_DROP
684 void wxWindowX11::SetDropTarget(wxDropTarget
* WXUNUSED(pDropTarget
))
691 // Old style file-manager drag&drop
692 void wxWindowX11::DragAcceptFiles(bool WXUNUSED(accept
))
697 // ----------------------------------------------------------------------------
699 // ----------------------------------------------------------------------------
703 void wxWindowX11::DoSetToolTip(wxToolTip
* WXUNUSED(tooltip
))
708 #endif // wxUSE_TOOLTIPS
710 // ---------------------------------------------------------------------------
711 // moving and resizing
712 // ---------------------------------------------------------------------------
714 bool wxWindowX11::PreResize()
720 void wxWindowX11::DoGetSize(int *x
, int *y
) const
722 Window xwindow
= (Window
) m_mainWindow
;
724 wxCHECK_RET( xwindow
, wxT("invalid window") );
726 //XSync(wxGlobalDisplay(), False);
728 XWindowAttributes attr
;
729 Status status
= XGetWindowAttributes( wxGlobalDisplay(), xwindow
, &attr
);
734 *x
= attr
.width
/* + 2*m_borderSize */ ;
735 *y
= attr
.height
/* + 2*m_borderSize */ ;
739 void wxWindowX11::DoGetPosition(int *x
, int *y
) const
741 Window window
= (Window
) m_mainWindow
;
744 //XSync(wxGlobalDisplay(), False);
745 XWindowAttributes attr
;
746 Status status
= XGetWindowAttributes(wxGlobalDisplay(), window
, & attr
);
754 // We may be faking the client origin. So a window that's really at (0, 30)
755 // may appear (to wxWin apps) to be at (0, 0).
758 wxPoint
pt(GetParent()->GetClientAreaOrigin());
766 void wxWindowX11::DoScreenToClient(int *x
, int *y
) const
768 Display
*display
= wxGlobalDisplay();
769 Window rootWindow
= RootWindowOfScreen(DefaultScreenOfDisplay(display
));
770 Window thisWindow
= (Window
) m_clientWindow
;
775 XTranslateCoordinates(display
, rootWindow
, thisWindow
, xx
, yy
, x
, y
, &childWindow
);
778 void wxWindowX11::DoClientToScreen(int *x
, int *y
) const
780 Display
*display
= wxGlobalDisplay();
781 Window rootWindow
= RootWindowOfScreen(DefaultScreenOfDisplay(display
));
782 Window thisWindow
= (Window
) m_clientWindow
;
787 XTranslateCoordinates(display
, thisWindow
, rootWindow
, xx
, yy
, x
, y
, &childWindow
);
791 // Get size *available for subwindows* i.e. excluding menu bar etc.
792 void wxWindowX11::DoGetClientSize(int *x
, int *y
) const
794 Window window
= (Window
) m_mainWindow
;
798 XWindowAttributes attr
;
799 Status status
= XGetWindowAttributes( wxGlobalDisplay(), window
, &attr
);
810 void wxWindowX11::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
812 // wxLogDebug("DoSetSize: %s (%ld) %d, %d %dx%d", GetClassInfo()->GetClassName(), GetId(), x, y, width, height);
814 Window xwindow
= (Window
) m_mainWindow
;
816 wxCHECK_RET( xwindow
, wxT("invalid window") );
818 XWindowAttributes attr
;
819 Status status
= XGetWindowAttributes( wxGlobalDisplay(), xwindow
, &attr
);
820 wxCHECK_RET( status
, wxT("invalid window attributes") );
824 int new_w
= attr
.width
;
825 int new_h
= attr
.height
;
827 if (x
!= -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
830 AdjustForParentClientOrigin( x
, yy
, sizeFlags
);
833 if (y
!= -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
836 AdjustForParentClientOrigin( xx
, y
, sizeFlags
);
852 DoMoveWindow( new_x
, new_y
, new_w
, new_h
);
855 void wxWindowX11::DoSetClientSize(int width
, int height
)
857 // wxLogDebug("DoSetClientSize: %s (%ld) %dx%d", GetClassInfo()->GetClassName(), GetId(), width, height);
859 Window xwindow
= (Window
) m_mainWindow
;
861 wxCHECK_RET( xwindow
, wxT("invalid window") );
863 XResizeWindow( wxGlobalDisplay(), xwindow
, width
, height
);
865 if (m_mainWindow
!= m_clientWindow
)
867 xwindow
= (Window
) m_clientWindow
;
869 wxWindow
*window
= (wxWindow
*) this;
870 wxRenderer
*renderer
= window
->GetRenderer();
873 wxRect border
= renderer
->GetBorderDimensions( (wxBorder
)(m_windowStyle
& wxBORDER_MASK
) );
874 width
-= border
.x
+ border
.width
;
875 height
-= border
.y
+ border
.height
;
878 XResizeWindow( wxGlobalDisplay(), xwindow
, width
, height
);
882 // For implementation purposes - sometimes decorations make the client area
884 wxPoint
wxWindowX11::GetClientAreaOrigin() const
886 return wxPoint(0, 0);
889 void wxWindowX11::DoMoveWindow(int x
, int y
, int width
, int height
)
891 Window xwindow
= (Window
) m_mainWindow
;
893 wxCHECK_RET( xwindow
, wxT("invalid window") );
897 XMoveResizeWindow( wxGlobalDisplay(), xwindow
, x
, y
, width
, height
);
898 if (m_mainWindow
!= m_clientWindow
)
900 xwindow
= (Window
) m_clientWindow
;
902 wxWindow
*window
= (wxWindow
*) this;
903 wxRenderer
*renderer
= window
->GetRenderer();
906 wxRect border
= renderer
->GetBorderDimensions( (wxBorder
)(m_windowStyle
& wxBORDER_MASK
) );
909 width
-= border
.x
+ border
.width
;
910 height
-= border
.y
+ border
.height
;
918 wxScrollBar
*sb
= window
->GetScrollbar( wxHORIZONTAL
);
919 if (sb
&& sb
->IsShown())
921 wxSize size
= sb
->GetSize();
924 sb
= window
->GetScrollbar( wxVERTICAL
);
925 if (sb
&& sb
->IsShown())
927 wxSize size
= sb
->GetSize();
931 XMoveResizeWindow( wxGlobalDisplay(), xwindow
, x
, y
, wxMax(1, width
), wxMax(1, height
) );
936 XWindowChanges windowChanges
;
939 windowChanges
.width
= width
;
940 windowChanges
.height
= height
;
941 windowChanges
.stack_mode
= 0;
942 int valueMask
= CWX
| CWY
| CWWidth
| CWHeight
;
944 XConfigureWindow( wxGlobalDisplay(), xwindow
, valueMask
, &windowChanges
);
949 void wxWindowX11::SetSizeHints(int minW
, int minH
, int maxW
, int maxH
, int incW
, int incH
)
957 XSizeHints sizeHints
;
960 if (minW
> -1 && minH
> -1)
962 sizeHints
.flags
|= PMinSize
;
963 sizeHints
.min_width
= minW
;
964 sizeHints
.min_height
= minH
;
966 if (maxW
> -1 && maxH
> -1)
968 sizeHints
.flags
|= PMaxSize
;
969 sizeHints
.max_width
= maxW
;
970 sizeHints
.max_height
= maxH
;
972 if (incW
> -1 && incH
> -1)
974 sizeHints
.flags
|= PResizeInc
;
975 sizeHints
.width_inc
= incW
;
976 sizeHints
.height_inc
= incH
;
979 XSetWMNormalHints(wxGlobalDisplay(), (Window
) m_mainWindow
, &sizeHints
);
983 // ---------------------------------------------------------------------------
985 // ---------------------------------------------------------------------------
987 int wxWindowX11::GetCharHeight() const
989 wxCHECK_MSG( m_font
.Ok(), 0, wxT("valid window font needed") );
992 // There should be an easier way.
993 PangoLayout
*layout
= pango_layout_new( wxTheApp
->GetPangoContext() );
994 pango_layout_set_font_description( layout
, GetFont().GetNativeFontInfo()->description
);
995 pango_layout_set_text(layout
, "H", 1 );
997 pango_layout_get_pixel_size(layout
, &w
, &h
);
998 g_object_unref( G_OBJECT( layout
) );
1002 WXFontStructPtr pFontStruct
= m_font
.GetFontStruct(1.0, wxGlobalDisplay());
1004 int direction
, ascent
, descent
;
1005 XCharStruct overall
;
1006 XTextExtents ((XFontStruct
*) pFontStruct
, "x", 1, &direction
, &ascent
,
1007 &descent
, &overall
);
1009 // return (overall.ascent + overall.descent);
1010 return (ascent
+ descent
);
1014 int wxWindowX11::GetCharWidth() const
1016 wxCHECK_MSG( m_font
.Ok(), 0, wxT("valid window font needed") );
1019 // There should be an easier way.
1020 PangoLayout
*layout
= pango_layout_new( wxTheApp
->GetPangoContext() );
1021 pango_layout_set_font_description( layout
, GetFont().GetNativeFontInfo()->description
);
1022 pango_layout_set_text(layout
, "H", 1 );
1024 pango_layout_get_pixel_size(layout
, &w
, &h
);
1025 g_object_unref( G_OBJECT( layout
) );
1029 WXFontStructPtr pFontStruct
= m_font
.GetFontStruct(1.0, wxGlobalDisplay());
1031 int direction
, ascent
, descent
;
1032 XCharStruct overall
;
1033 XTextExtents ((XFontStruct
*) pFontStruct
, "x", 1, &direction
, &ascent
,
1034 &descent
, &overall
);
1036 return overall
.width
;
1040 void wxWindowX11::GetTextExtent(const wxString
& string
,
1042 int *descent
, int *externalLeading
,
1043 const wxFont
*theFont
) const
1045 wxFont fontToUse
= m_font
;
1046 if (theFont
) fontToUse
= *theFont
;
1048 wxCHECK_RET( fontToUse
.Ok(), wxT("invalid font") );
1050 if (string
.IsEmpty())
1058 PangoLayout
*layout
= pango_layout_new( wxTheApp
->GetPangoContext() );
1060 PangoFontDescription
*desc
= fontToUse
.GetNativeFontInfo()->description
;
1061 pango_layout_set_font_description(layout
, desc
);
1063 const wxCharBuffer data
= wxConvUTF8
.cWC2MB( string
);
1064 pango_layout_set_text(layout
, (const char*) data
, strlen( (const char*) data
));
1066 PangoLayoutLine
*line
= (PangoLayoutLine
*)pango_layout_get_lines(layout
)->data
;
1069 PangoRectangle rect
;
1070 pango_layout_line_get_extents(line
, NULL
, &rect
);
1072 if (x
) (*x
) = (wxCoord
) (rect
.width
/ PANGO_SCALE
);
1073 if (y
) (*y
) = (wxCoord
) (rect
.height
/ PANGO_SCALE
);
1076 // Do something about metrics here
1079 if (externalLeading
) (*externalLeading
) = 0; // ??
1081 g_object_unref( G_OBJECT( layout
) );
1083 WXFontStructPtr pFontStruct
= fontToUse
.GetFontStruct(1.0, wxGlobalDisplay());
1085 int direction
, ascent
, descent2
;
1086 XCharStruct overall
;
1087 int slen
= string
.Len();
1089 XTextExtents((XFontStruct
*) pFontStruct
, (char*) string
.c_str(), slen
,
1090 &direction
, &ascent
, &descent2
, &overall
);
1093 *x
= (overall
.width
);
1095 *y
= (ascent
+ descent2
);
1097 *descent
= descent2
;
1098 if (externalLeading
)
1099 *externalLeading
= 0;
1103 // ----------------------------------------------------------------------------
1105 // ----------------------------------------------------------------------------
1107 void wxWindowX11::Refresh(bool eraseBack
, const wxRect
*rect
)
1113 // Schedule for later Updating in ::Update() or ::OnInternalIdle().
1114 m_clearRegion
.Union( rect
->x
, rect
->y
, rect
->width
, rect
->height
);
1119 GetSize( &width
, &height
);
1121 // Schedule for later Updating in ::Update() or ::OnInternalIdle().
1122 m_clearRegion
.Clear();
1123 m_clearRegion
.Union( 0, 0, width
, height
);
1129 // Schedule for later Updating in ::Update() or ::OnInternalIdle().
1130 m_updateRegion
.Union( rect
->x
, rect
->y
, rect
->width
, rect
->height
);
1135 GetSize( &width
, &height
);
1137 // Schedule for later Updating in ::Update() or ::OnInternalIdle().
1138 m_updateRegion
.Clear();
1139 m_updateRegion
.Union( 0, 0, width
, height
);
1143 void wxWindowX11::Update()
1147 // wxLogDebug("wxWindowX11::UpdateNC: %s", GetClassInfo()->GetClassName());
1148 // Send nc paint events.
1149 SendNcPaintEvents();
1152 if (!m_updateRegion
.IsEmpty())
1154 // wxLogDebug("wxWindowX11::Update: %s", GetClassInfo()->GetClassName());
1155 // Actually send erase events.
1158 // Actually send paint events.
1163 void wxWindowX11::SendEraseEvents()
1165 if (m_clearRegion
.IsEmpty()) return;
1167 wxClientDC
dc( (wxWindow
*)this );
1168 dc
.SetClippingRegion( m_clearRegion
);
1170 wxEraseEvent
erase_event( GetId(), &dc
);
1171 erase_event
.SetEventObject( this );
1173 if (!GetEventHandler()->ProcessEvent(erase_event
) )
1175 Display
*xdisplay
= wxGlobalDisplay();
1176 Window xwindow
= (Window
) GetClientAreaWindow();
1177 XSetForeground( xdisplay
, g_eraseGC
, m_backgroundColour
.GetPixel() );
1179 wxRegionIterator
upd( m_clearRegion
);
1182 XFillRectangle( xdisplay
, xwindow
, g_eraseGC
,
1183 upd
.GetX(), upd
.GetY(), upd
.GetWidth(), upd
.GetHeight() );
1188 m_clearRegion
.Clear();
1191 void wxWindowX11::SendPaintEvents()
1193 // wxLogDebug("SendPaintEvents: %s (%ld)", GetClassInfo()->GetClassName(), GetId());
1195 m_clipPaintRegion
= TRUE
;
1197 wxPaintEvent
paint_event( GetId() );
1198 paint_event
.SetEventObject( this );
1199 GetEventHandler()->ProcessEvent( paint_event
);
1201 m_updateRegion
.Clear();
1203 m_clipPaintRegion
= FALSE
;
1206 void wxWindowX11::SendNcPaintEvents()
1208 wxWindow
*window
= (wxWindow
*) this;
1210 // All this for drawing the small square between the scrollbars.
1215 wxScrollBar
*sb
= window
->GetScrollbar( wxHORIZONTAL
);
1216 if (sb
&& sb
->IsShown())
1218 height
= sb
->GetSize().y
;
1219 y
= sb
->GetPosition().y
;
1221 sb
= window
->GetScrollbar( wxVERTICAL
);
1222 if (sb
&& sb
->IsShown())
1224 width
= sb
->GetSize().x
;
1225 x
= sb
->GetPosition().x
;
1227 Display
*xdisplay
= wxGlobalDisplay();
1228 Window xwindow
= (Window
) GetMainWindow();
1229 Colormap cm
= (Colormap
) wxTheApp
->GetMainColormap( wxGetDisplay() );
1230 wxColour colour
= wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
);
1231 colour
.CalcPixel( (WXColormap
) cm
);
1233 XSetForeground( xdisplay
, g_eraseGC
, colour
.GetPixel() );
1235 XFillRectangle( xdisplay
, xwindow
, g_eraseGC
, x
, y
, width
, height
);
1239 wxNcPaintEvent
nc_paint_event( GetId() );
1240 nc_paint_event
.SetEventObject( this );
1241 GetEventHandler()->ProcessEvent( nc_paint_event
);
1243 m_updateNcArea
= FALSE
;
1246 // ----------------------------------------------------------------------------
1248 // ----------------------------------------------------------------------------
1250 // Responds to colour changes: passes event on to children.
1251 void wxWindowX11::OnSysColourChanged(wxSysColourChangedEvent
& event
)
1253 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
1256 // Only propagate to non-top-level windows
1257 wxWindow
*win
= node
->GetData();
1258 if ( win
->GetParent() )
1260 wxSysColourChangedEvent event2
;
1261 event
.m_eventObject
= win
;
1262 win
->GetEventHandler()->ProcessEvent(event2
);
1265 node
= node
->GetNext();
1269 // See handler for InFocus case in app.cpp for details.
1270 wxWindow
* g_GettingFocus
= NULL
;
1272 void wxWindowX11::OnInternalIdle()
1274 // Update invalidated regions.
1277 // This calls the UI-update mechanism (querying windows for
1278 // menu/toolbar/control state information)
1279 if (wxUpdateUIEvent::CanUpdate((wxWindow
*) this))
1280 UpdateWindowUI(wxUPDATE_UI_FROMIDLE
);
1282 // Set the input focus if couldn't do it before
1283 if (m_needsInputFocus
)
1287 msg
.Printf("Setting focus for %s from OnInternalIdle\n", GetClassInfo()->GetClassName());
1288 printf(msg
.c_str());
1292 // If it couldn't set the focus now, there's
1293 // no point in trying again.
1294 m_needsInputFocus
= FALSE
;
1296 g_GettingFocus
= NULL
;
1299 // ----------------------------------------------------------------------------
1300 // function which maintain the global hash table mapping Widgets to wxWindows
1301 // ----------------------------------------------------------------------------
1303 bool wxAddWindowToTable(Window w
, wxWindow
*win
)
1305 wxWindow
*oldItem
= NULL
;
1306 if ((oldItem
= (wxWindow
*)wxWidgetHashTable
->Get ((long) w
)))
1308 wxLogDebug( wxT("Widget table clash: new widget is %ld, %s"),
1309 (long)w
, win
->GetClassInfo()->GetClassName());
1313 wxWidgetHashTable
->Put((long) w
, win
);
1315 wxLogTrace( wxT("widget"), wxT("XWindow 0x%08x <-> window %p (%s)"),
1316 (unsigned int) w
, win
, win
->GetClassInfo()->GetClassName());
1321 wxWindow
*wxGetWindowFromTable(Window w
)
1323 return (wxWindow
*)wxWidgetHashTable
->Get((long) w
);
1326 void wxDeleteWindowFromTable(Window w
)
1328 wxWidgetHashTable
->Delete((long)w
);
1331 // ----------------------------------------------------------------------------
1332 // function which maintain the global hash table mapping client widgets
1333 // ----------------------------------------------------------------------------
1335 bool wxAddClientWindowToTable(Window w
, wxWindow
*win
)
1337 wxWindow
*oldItem
= NULL
;
1338 if ((oldItem
= (wxWindow
*)wxClientWidgetHashTable
->Get ((long) w
)))
1340 wxLogDebug( wxT("Client window table clash: new window is %ld, %s"),
1341 (long)w
, win
->GetClassInfo()->GetClassName());
1345 wxClientWidgetHashTable
->Put((long) w
, win
);
1347 wxLogTrace( wxT("widget"), wxT("XWindow 0x%08x <-> window %p (%s)"),
1348 (unsigned int) w
, win
, win
->GetClassInfo()->GetClassName());
1353 wxWindow
*wxGetClientWindowFromTable(Window w
)
1355 return (wxWindow
*)wxClientWidgetHashTable
->Get((long) w
);
1358 void wxDeleteClientWindowFromTable(Window w
)
1360 wxClientWidgetHashTable
->Delete((long)w
);
1363 // ----------------------------------------------------------------------------
1364 // add/remove window from the table
1365 // ----------------------------------------------------------------------------
1367 // ----------------------------------------------------------------------------
1368 // X11-specific accessors
1369 // ----------------------------------------------------------------------------
1371 WXWindow
wxWindowX11::GetMainWindow() const
1373 return m_mainWindow
;
1376 WXWindow
wxWindowX11::GetClientAreaWindow() const
1378 return m_clientWindow
;
1381 // ----------------------------------------------------------------------------
1382 // TranslateXXXEvent() functions
1383 // ----------------------------------------------------------------------------
1385 bool wxTranslateMouseEvent(wxMouseEvent
& wxevent
, wxWindow
*win
, Window window
, XEvent
*xevent
)
1387 switch (XEventGetType(xevent
))
1395 wxEventType eventType
= wxEVT_NULL
;
1397 if (XEventGetType(xevent
) == EnterNotify
)
1399 //if (local_event.xcrossing.mode!=NotifyNormal)
1400 // return ; // Ignore grab events
1401 eventType
= wxEVT_ENTER_WINDOW
;
1402 // canvas->GetEventHandler()->OnSetFocus();
1404 else if (XEventGetType(xevent
) == LeaveNotify
)
1406 //if (local_event.xcrossingr.mode!=NotifyNormal)
1407 // return ; // Ignore grab events
1408 eventType
= wxEVT_LEAVE_WINDOW
;
1409 // canvas->GetEventHandler()->OnKillFocus();
1411 else if (XEventGetType(xevent
) == MotionNotify
)
1413 eventType
= wxEVT_MOTION
;
1415 else if (XEventGetType(xevent
) == ButtonPress
)
1417 wxevent
.SetTimestamp(XButtonEventGetTime(xevent
));
1419 if (XButtonEventLChanged(xevent
))
1421 eventType
= wxEVT_LEFT_DOWN
;
1424 else if (XButtonEventMChanged(xevent
))
1426 eventType
= wxEVT_MIDDLE_DOWN
;
1429 else if (XButtonEventRChanged(xevent
))
1431 eventType
= wxEVT_RIGHT_DOWN
;
1435 // check for a double click
1436 // TODO: where can we get this value from?
1437 //long dclickTime = XtGetMultiClickTime(wxGlobalDisplay());
1438 long dclickTime
= 200;
1439 long ts
= wxevent
.GetTimestamp();
1441 int buttonLast
= win
->GetLastClickedButton();
1442 long lastTS
= win
->GetLastClickTime();
1443 if ( buttonLast
&& buttonLast
== button
&& (ts
- lastTS
) < dclickTime
)
1446 win
->SetLastClick(0, ts
);
1447 if ( eventType
== wxEVT_LEFT_DOWN
)
1448 eventType
= wxEVT_LEFT_DCLICK
;
1449 else if ( eventType
== wxEVT_MIDDLE_DOWN
)
1450 eventType
= wxEVT_MIDDLE_DCLICK
;
1451 else if ( eventType
== wxEVT_RIGHT_DOWN
)
1452 eventType
= wxEVT_RIGHT_DCLICK
;
1456 // not fast enough or different button
1457 win
->SetLastClick(button
, ts
);
1460 else if (XEventGetType(xevent
) == ButtonRelease
)
1462 if (XButtonEventLChanged(xevent
))
1464 eventType
= wxEVT_LEFT_UP
;
1466 else if (XButtonEventMChanged(xevent
))
1468 eventType
= wxEVT_MIDDLE_UP
;
1470 else if (XButtonEventRChanged(xevent
))
1472 eventType
= wxEVT_RIGHT_UP
;
1481 wxevent
.SetEventType(eventType
);
1483 wxevent
.m_x
= XButtonEventGetX(xevent
);
1484 wxevent
.m_y
= XButtonEventGetY(xevent
);
1486 wxevent
.m_leftDown
= ((eventType
== wxEVT_LEFT_DOWN
)
1487 || (XButtonEventLIsDown(xevent
)
1488 && (eventType
!= wxEVT_LEFT_UP
)));
1489 wxevent
.m_middleDown
= ((eventType
== wxEVT_MIDDLE_DOWN
)
1490 || (XButtonEventMIsDown(xevent
)
1491 && (eventType
!= wxEVT_MIDDLE_UP
)));
1492 wxevent
.m_rightDown
= ((eventType
== wxEVT_RIGHT_DOWN
)
1493 || (XButtonEventRIsDown (xevent
)
1494 && (eventType
!= wxEVT_RIGHT_UP
)));
1496 wxevent
.m_shiftDown
= XButtonEventShiftIsDown(xevent
);
1497 wxevent
.m_controlDown
= XButtonEventCtrlIsDown(xevent
);
1498 wxevent
.m_altDown
= XButtonEventAltIsDown(xevent
);
1499 wxevent
.m_metaDown
= XButtonEventMetaIsDown(xevent
);
1501 wxevent
.SetId(win
->GetId());
1502 wxevent
.SetEventObject(win
);
1510 bool wxTranslateKeyEvent(wxKeyEvent
& wxevent
, wxWindow
*win
, Window
WXUNUSED(win
), XEvent
*xevent
, bool isAscii
)
1512 switch (XEventGetType(xevent
))
1520 (void) XLookupString ((XKeyEvent
*) xevent
, buf
, 20, &keySym
, NULL
);
1521 int id
= wxCharCodeXToWX (keySym
);
1522 // id may be WXK_xxx code - these are outside ASCII range, so we
1523 // can't just use toupper() on id.
1524 // Only change this if we want the raw key that was pressed,
1525 // and don't change it if we want an ASCII value.
1526 if (!isAscii
&& (id
>= 'a' && id
<= 'z'))
1528 id
= id
+ 'A' - 'a';
1531 wxevent
.m_shiftDown
= XKeyEventShiftIsDown(xevent
);
1532 wxevent
.m_controlDown
= XKeyEventCtrlIsDown(xevent
);
1533 wxevent
.m_altDown
= XKeyEventAltIsDown(xevent
);
1534 wxevent
.m_metaDown
= XKeyEventMetaIsDown(xevent
);
1535 wxevent
.SetEventObject(win
);
1536 wxevent
.m_keyCode
= id
;
1537 wxevent
.SetTimestamp(XKeyEventGetTime(xevent
));
1539 wxevent
.m_x
= XKeyEventGetX(xevent
);
1540 wxevent
.m_y
= XKeyEventGetY(xevent
);
1550 // ----------------------------------------------------------------------------
1552 // ----------------------------------------------------------------------------
1554 bool wxWindowX11::SetBackgroundColour(const wxColour
& col
)
1556 wxWindowBase::SetBackgroundColour(col
);
1558 Display
*xdisplay
= (Display
*) wxGlobalDisplay();
1559 int xscreen
= DefaultScreen( xdisplay
);
1560 Colormap cm
= DefaultColormap( xdisplay
, xscreen
);
1562 m_backgroundColour
.CalcPixel( (WXColormap
) cm
);
1564 // We don't set the background colour as we paint
1565 // the background ourselves.
1566 // XSetWindowBackground( xdisplay, (Window) m_clientWindow, m_backgroundColour.GetPixel() );
1571 bool wxWindowX11::SetForegroundColour(const wxColour
& col
)
1573 if ( !wxWindowBase::SetForegroundColour(col
) )
1579 // ----------------------------------------------------------------------------
1581 // ----------------------------------------------------------------------------
1583 wxWindow
*wxGetActiveWindow()
1586 wxFAIL_MSG(wxT("Not implemented"));
1591 wxWindow
*wxWindowBase::GetCapture()
1593 return (wxWindow
*)g_captureWindow
;
1597 // Find the wxWindow at the current mouse position, returning the mouse
1599 wxWindow
* wxFindWindowAtPointer(wxPoint
& pt
)
1601 return wxFindWindowAtPoint(wxGetMousePosition());
1604 // Get the current mouse position.
1605 wxPoint
wxGetMousePosition()
1609 return wxPoint(0, 0);
1611 Display
*display
= wxGlobalDisplay();
1612 Window rootWindow
= RootWindowOfScreen (DefaultScreenOfDisplay(display
));
1613 Window rootReturn
, childReturn
;
1614 int rootX
, rootY
, winX
, winY
;
1615 unsigned int maskReturn
;
1617 XQueryPointer (display
,
1621 &rootX
, &rootY
, &winX
, &winY
, &maskReturn
);
1622 return wxPoint(rootX
, rootY
);
1627 // ----------------------------------------------------------------------------
1628 // wxNoOptimize: switch off size optimization
1629 // ----------------------------------------------------------------------------
1631 int wxNoOptimize::ms_count
= 0;
1634 // ----------------------------------------------------------------------------
1636 // ----------------------------------------------------------------------------
1638 class wxWinModule
: public wxModule
1645 DECLARE_DYNAMIC_CLASS(wxWinModule
)
1648 IMPLEMENT_DYNAMIC_CLASS(wxWinModule
, wxModule
)
1650 bool wxWinModule::OnInit()
1652 Display
*xdisplay
= wxGlobalDisplay();
1653 int xscreen
= DefaultScreen( xdisplay
);
1654 Window xroot
= RootWindow( xdisplay
, xscreen
);
1655 g_eraseGC
= XCreateGC( xdisplay
, xroot
, 0, NULL
);
1656 XSetFillStyle( xdisplay
, g_eraseGC
, FillSolid
);
1661 void wxWinModule::OnExit()
1663 Display
*xdisplay
= wxGlobalDisplay();
1664 XFreeGC( xdisplay
, g_eraseGC
);