]>
Commit | Line | Data |
---|---|---|
83df96d6 | 1 | ///////////////////////////////////////////////////////////////////////////// |
9eddec69 | 2 | // Name: src/x11/window.cpp |
83df96d6 JS |
3 | // Purpose: wxWindow |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
65571936 | 9 | // Licence: wxWindows licence |
83df96d6 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
521bf4ff WS |
12 | // for compilers that support precompilation, includes "wx.h". |
13 | #include "wx/wxprec.h" | |
14 | ||
15 | #if defined(__BORLANDC__) | |
32d4c30a WS |
16 | #pragma hdrstop |
17 | #endif | |
18 | ||
83df96d6 JS |
19 | // ============================================================================ |
20 | // declarations | |
21 | // ============================================================================ | |
22 | ||
23 | // ---------------------------------------------------------------------------- | |
24 | // headers | |
25 | // ---------------------------------------------------------------------------- | |
26 | ||
e4db172a WS |
27 | #include "wx/window.h" |
28 | ||
29 | #ifndef WX_PRECOMP | |
30 | #include "wx/hash.h" | |
31 | #include "wx/log.h" | |
670f9935 | 32 | #include "wx/app.h" |
de6185e2 | 33 | #include "wx/utils.h" |
8e609c82 | 34 | #include "wx/panel.h" |
76b49cf4 | 35 | #include "wx/frame.h" |
da80ae71 | 36 | #include "wx/dc.h" |
ed4b0fdc | 37 | #include "wx/dcclient.h" |
f1e01716 | 38 | #include "wx/button.h" |
3b3dc801 | 39 | #include "wx/menu.h" |
fdf565fe | 40 | #include "wx/dialog.h" |
c0badb70 | 41 | #include "wx/timer.h" |
9eddec69 | 42 | #include "wx/settings.h" |
246c5004 | 43 | #include "wx/msgdlg.h" |
851dee09 | 44 | #include "wx/scrolbar.h" |
2a673eb1 | 45 | #include "wx/listbox.h" |
1ab440bc | 46 | #include "wx/scrolwin.h" |
ed2fbeb8 | 47 | #include "wx/layout.h" |
25466131 | 48 | #include "wx/menuitem.h" |
02761f6c | 49 | #include "wx/module.h" |
e4db172a WS |
50 | #endif |
51 | ||
2b5f62a0 | 52 | #include "wx/fontutil.h" |
a17a79ba | 53 | #include "wx/univ/renderer.h" |
83df96d6 JS |
54 | |
55 | #if wxUSE_DRAG_AND_DROP | |
56 | #include "wx/dnd.h" | |
57 | #endif | |
58 | ||
bc797f4c | 59 | #include "wx/x11/private.h" |
7266b672 | 60 | #include "X11/Xutil.h" |
83df96d6 JS |
61 | |
62 | #include <string.h> | |
63 | ||
83df96d6 JS |
64 | // ---------------------------------------------------------------------------- |
65 | // global variables for this module | |
66 | // ---------------------------------------------------------------------------- | |
67 | ||
83df96d6 | 68 | static wxWindow* g_captureWindow = NULL; |
c2c0dabf | 69 | static GC g_eraseGC; |
83df96d6 | 70 | |
83df96d6 JS |
71 | // ---------------------------------------------------------------------------- |
72 | // macros | |
73 | // ---------------------------------------------------------------------------- | |
74 | ||
75 | #define event_left_is_down(x) ((x)->xbutton.state & Button1Mask) | |
76 | #define event_middle_is_down(x) ((x)->xbutton.state & Button2Mask) | |
77 | #define event_right_is_down(x) ((x)->xbutton.state & Button3Mask) | |
78 | ||
79 | // ---------------------------------------------------------------------------- | |
80 | // event tables | |
81 | // ---------------------------------------------------------------------------- | |
82 | ||
8354aa92 | 83 | IMPLEMENT_ABSTRACT_CLASS(wxWindowX11, wxWindowBase) |
83df96d6 | 84 | |
bc797f4c JS |
85 | BEGIN_EVENT_TABLE(wxWindowX11, wxWindowBase) |
86 | EVT_SYS_COLOUR_CHANGED(wxWindowX11::OnSysColourChanged) | |
bc797f4c | 87 | END_EVENT_TABLE() |
83df96d6 JS |
88 | |
89 | // ============================================================================ | |
90 | // implementation | |
91 | // ============================================================================ | |
92 | ||
93 | // ---------------------------------------------------------------------------- | |
94 | // helper functions | |
95 | // ---------------------------------------------------------------------------- | |
96 | ||
83df96d6 JS |
97 | // ---------------------------------------------------------------------------- |
98 | // constructors | |
99 | // ---------------------------------------------------------------------------- | |
100 | ||
bc797f4c | 101 | void wxWindowX11::Init() |
83df96d6 | 102 | { |
7266b672 | 103 | // X11-specific |
ab6b6b15 RR |
104 | m_mainWindow = (WXWindow) 0; |
105 | m_clientWindow = (WXWindow) 0; | |
ffd84c94 WS |
106 | m_insertIntoMain = false; |
107 | m_updateNcArea = false; | |
7de59551 | 108 | |
ffd84c94 WS |
109 | m_winCaptured = false; |
110 | m_needsInputFocus = false; | |
111 | m_isShown = true; | |
83df96d6 JS |
112 | m_lastTS = 0; |
113 | m_lastButton = 0; | |
83df96d6 JS |
114 | } |
115 | ||
116 | // real construction (Init() must have been called before!) | |
bc797f4c | 117 | bool wxWindowX11::Create(wxWindow *parent, wxWindowID id, |
ffd84c94 WS |
118 | const wxPoint& pos, |
119 | const wxSize& size, | |
120 | long style, | |
121 | const wxString& name) | |
83df96d6 | 122 | { |
ffd84c94 | 123 | wxCHECK_MSG( parent, false, wxT("can't create wxWindow without parent") ); |
83df96d6 JS |
124 | |
125 | CreateBase(parent, id, pos, size, style, wxDefaultValidator, name); | |
126 | ||
3cd0b8c5 | 127 | parent->AddChild(this); |
83df96d6 | 128 | |
3cd0b8c5 RR |
129 | Display *xdisplay = (Display*) wxGlobalDisplay(); |
130 | int xscreen = DefaultScreen( xdisplay ); | |
7e4501ee | 131 | Visual *xvisual = DefaultVisual( xdisplay, xscreen ); |
3cd0b8c5 | 132 | Colormap cm = DefaultColormap( xdisplay, xscreen ); |
b513212d | 133 | |
3cd0b8c5 | 134 | m_backgroundColour = wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE); |
7de59551 RD |
135 | m_backgroundColour.CalcPixel( (WXColormap) cm ); |
136 | ||
3cd0b8c5 | 137 | m_foregroundColour = *wxBLACK; |
7de59551 | 138 | m_foregroundColour.CalcPixel( (WXColormap) cm ); |
3cd0b8c5 | 139 | |
f41bc3e3 | 140 | Window xparent = (Window) parent->GetClientAreaWindow(); |
7de59551 | 141 | |
ab6b6b15 RR |
142 | // Add window's own scrollbars to main window, not to client window |
143 | if (parent->GetInsertIntoMain()) | |
144 | { | |
145 | // wxLogDebug( "Inserted into main: %s", GetName().c_str() ); | |
146 | xparent = (Window) parent->GetMainWindow(); | |
147 | } | |
7de59551 | 148 | |
1cfb7d2c RR |
149 | // Size (not including the border) must be nonzero (or a Value error results)! |
150 | // Note: The Xlib manual doesn't mention this restriction of XCreateWindow. | |
2f12683e | 151 | wxSize size2(size); |
1cfb7d2c | 152 | if (size2.x <= 0) |
2b5f62a0 | 153 | size2.x = 20; |
1cfb7d2c | 154 | if (size2.y <= 0) |
2b5f62a0 | 155 | size2.y = 20; |
b513212d | 156 | |
2f12683e | 157 | wxPoint pos2(pos); |
ffd84c94 | 158 | if (pos2.x == wxDefaultCoord) |
2b5f62a0 | 159 | pos2.x = 0; |
ffd84c94 | 160 | if (pos2.y == wxDefaultCoord) |
2b5f62a0 | 161 | pos2.y = 0; |
7de59551 | 162 | |
ab6b6b15 | 163 | #if wxUSE_TWO_WINDOWS |
2b5f62a0 | 164 | bool need_two_windows = |
ab6b6b15 RR |
165 | ((( wxSUNKEN_BORDER | wxRAISED_BORDER | wxSIMPLE_BORDER | wxHSCROLL | wxVSCROLL ) & m_windowStyle) != 0); |
166 | #else | |
ffd84c94 | 167 | bool need_two_windows = false; |
ab6b6b15 RR |
168 | #endif |
169 | ||
8601b2e1 JS |
170 | #if wxUSE_NANOX |
171 | long xattributes = 0; | |
172 | #else | |
7e4501ee | 173 | XSetWindowAttributes xattributes; |
ab6b6b15 | 174 | long xattributes_mask = 0; |
7de59551 | 175 | |
ab6b6b15 | 176 | xattributes_mask |= CWBackPixel; |
7e4501ee | 177 | xattributes.background_pixel = m_backgroundColour.GetPixel(); |
7de59551 | 178 | |
ab6b6b15 | 179 | xattributes_mask |= CWBorderPixel; |
7e4501ee | 180 | xattributes.border_pixel = BlackPixel( xdisplay, xscreen ); |
7de59551 | 181 | |
2f12683e | 182 | xattributes_mask |= CWEventMask; |
8601b2e1 | 183 | #endif |
7de59551 | 184 | |
ab6b6b15 | 185 | if (need_two_windows) |
2f12683e | 186 | { |
8601b2e1 JS |
187 | #if wxUSE_NANOX |
188 | long backColor, foreColor; | |
189 | backColor = GR_RGB(m_backgroundColour.Red(), m_backgroundColour.Green(), m_backgroundColour.Blue()); | |
190 | foreColor = GR_RGB(m_foregroundColour.Red(), m_foregroundColour.Green(), m_foregroundColour.Blue()); | |
7de59551 RD |
191 | |
192 | Window xwindow = XCreateWindowWithColor( xdisplay, xparent, pos2.x, pos2.y, size2.x, size2.y, | |
8601b2e1 JS |
193 | 0, 0, InputOutput, xvisual, backColor, foreColor); |
194 | XSelectInput( xdisplay, xwindow, | |
195 | GR_EVENT_MASK_CLOSE_REQ | ExposureMask | KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask | | |
196 | ButtonMotionMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask | | |
197 | KeymapStateMask | FocusChangeMask | ColormapChangeMask | StructureNotifyMask | | |
198 | PropertyChangeMask ); | |
7de59551 | 199 | |
8601b2e1 JS |
200 | #else |
201 | // Normal X11 | |
7de59551 | 202 | xattributes.event_mask = |
ab6b6b15 RR |
203 | ExposureMask | StructureNotifyMask | ColormapChangeMask; |
204 | ||
7de59551 | 205 | Window xwindow = XCreateWindow( xdisplay, xparent, pos2.x, pos2.y, size2.x, size2.y, |
ab6b6b15 | 206 | 0, DefaultDepth(xdisplay,xscreen), InputOutput, xvisual, xattributes_mask, &xattributes ); |
8601b2e1 JS |
207 | |
208 | #endif | |
7de59551 | 209 | |
ab6b6b15 | 210 | XSetWindowBackgroundPixmap( xdisplay, xwindow, None ); |
7de59551 | 211 | |
ab6b6b15 RR |
212 | m_mainWindow = (WXWindow) xwindow; |
213 | wxAddWindowToTable( xwindow, (wxWindow*) this ); | |
7de59551 | 214 | |
ab6b6b15 | 215 | XMapWindow( xdisplay, xwindow ); |
8601b2e1 | 216 | |
7de59551 RD |
217 | #if !wxUSE_NANOX |
218 | xattributes.event_mask = | |
ab6b6b15 RR |
219 | ExposureMask | KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask | |
220 | ButtonMotionMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask | | |
221 | KeymapStateMask | FocusChangeMask | ColormapChangeMask | StructureNotifyMask | | |
222 | PropertyChangeMask | VisibilityChangeMask ; | |
223 | ||
e441e1f4 | 224 | if (!HasFlag( wxFULL_REPAINT_ON_RESIZE )) |
ab6b6b15 RR |
225 | { |
226 | xattributes_mask |= CWBitGravity; | |
227 | xattributes.bit_gravity = StaticGravity; | |
228 | } | |
8601b2e1 | 229 | #endif |
7de59551 | 230 | |
065722d7 RR |
231 | if (HasFlag( wxSUNKEN_BORDER) || HasFlag( wxRAISED_BORDER)) |
232 | { | |
233 | pos2.x = 2; | |
234 | pos2.y = 2; | |
235 | size2.x -= 4; | |
236 | size2.y -= 4; | |
7de59551 | 237 | } |
1cfb7d2c | 238 | else if (HasFlag( wxSIMPLE_BORDER )) |
065722d7 RR |
239 | { |
240 | pos2.x = 1; | |
241 | pos2.y = 1; | |
242 | size2.x -= 2; | |
243 | size2.y -= 2; | |
7de59551 | 244 | } |
1cfb7d2c | 245 | else |
065722d7 RR |
246 | { |
247 | pos2.x = 0; | |
248 | pos2.y = 0; | |
249 | } | |
1cfb7d2c RR |
250 | |
251 | // Make again sure the size is nonzero. | |
252 | if (size2.x <= 0) | |
253 | size2.x = 1; | |
254 | if (size2.y <= 0) | |
255 | size2.y = 1; | |
256 | ||
7de59551 | 257 | #if wxUSE_NANOX |
8601b2e1 JS |
258 | backColor = GR_RGB(m_backgroundColour.Red(), m_backgroundColour.Green(), m_backgroundColour.Blue()); |
259 | foreColor = GR_RGB(m_foregroundColour.Red(), m_foregroundColour.Green(), m_foregroundColour.Blue()); | |
7de59551 RD |
260 | |
261 | xwindow = XCreateWindowWithColor( xdisplay, xwindow, pos2.x, pos2.y, size2.x, size2.y, | |
8601b2e1 JS |
262 | 0, 0, InputOutput, xvisual, backColor, foreColor); |
263 | XSelectInput( xdisplay, xwindow, | |
264 | GR_EVENT_MASK_CLOSE_REQ | ExposureMask | KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask | | |
265 | ButtonMotionMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask | | |
266 | KeymapStateMask | FocusChangeMask | ColormapChangeMask | StructureNotifyMask | | |
267 | PropertyChangeMask ); | |
7de59551 | 268 | |
8601b2e1 | 269 | #else |
7de59551 | 270 | xwindow = XCreateWindow( xdisplay, xwindow, pos2.x, pos2.y, size2.x, size2.y, |
ab6b6b15 | 271 | 0, DefaultDepth(xdisplay,xscreen), InputOutput, xvisual, xattributes_mask, &xattributes ); |
8601b2e1 | 272 | #endif |
7de59551 | 273 | |
ab6b6b15 | 274 | XSetWindowBackgroundPixmap( xdisplay, xwindow, None ); |
7de59551 | 275 | |
ab6b6b15 RR |
276 | m_clientWindow = (WXWindow) xwindow; |
277 | wxAddClientWindowToTable( xwindow, (wxWindow*) this ); | |
7de59551 | 278 | |
ab6b6b15 | 279 | XMapWindow( xdisplay, xwindow ); |
2f12683e | 280 | } |
ab6b6b15 RR |
281 | else |
282 | { | |
283 | // wxLogDebug( "No two windows needed %s", GetName().c_str() ); | |
8601b2e1 JS |
284 | #if wxUSE_NANOX |
285 | long backColor, foreColor; | |
286 | backColor = GR_RGB(m_backgroundColour.Red(), m_backgroundColour.Green(), m_backgroundColour.Blue()); | |
287 | foreColor = GR_RGB(m_foregroundColour.Red(), m_foregroundColour.Green(), m_foregroundColour.Blue()); | |
7de59551 RD |
288 | |
289 | Window xwindow = XCreateWindowWithColor( xdisplay, xparent, pos2.x, pos2.y, size2.x, size2.y, | |
8601b2e1 JS |
290 | 0, 0, InputOutput, xvisual, backColor, foreColor); |
291 | XSelectInput( xdisplay, xwindow, | |
292 | GR_EVENT_MASK_CLOSE_REQ | ExposureMask | KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask | | |
293 | ButtonMotionMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask | | |
294 | KeymapStateMask | FocusChangeMask | ColormapChangeMask | StructureNotifyMask | | |
295 | PropertyChangeMask ); | |
7de59551 | 296 | |
8601b2e1 | 297 | #else |
7de59551 | 298 | xattributes.event_mask = |
ab6b6b15 RR |
299 | ExposureMask | KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask | |
300 | ButtonMotionMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask | | |
301 | KeymapStateMask | FocusChangeMask | ColormapChangeMask | StructureNotifyMask | | |
302 | PropertyChangeMask | VisibilityChangeMask ; | |
2f12683e | 303 | |
e441e1f4 | 304 | if (!HasFlag( wxFULL_REPAINT_ON_RESIZE )) |
ab6b6b15 RR |
305 | { |
306 | xattributes_mask |= CWBitGravity; | |
065722d7 | 307 | xattributes.bit_gravity = NorthWestGravity; |
ab6b6b15 | 308 | } |
7de59551 RD |
309 | |
310 | Window xwindow = XCreateWindow( xdisplay, xparent, pos2.x, pos2.y, size2.x, size2.y, | |
ab6b6b15 | 311 | 0, DefaultDepth(xdisplay,xscreen), InputOutput, xvisual, xattributes_mask, &xattributes ); |
8601b2e1 | 312 | #endif |
7de59551 | 313 | |
ab6b6b15 | 314 | XSetWindowBackgroundPixmap( xdisplay, xwindow, None ); |
7de59551 | 315 | |
ab6b6b15 RR |
316 | m_mainWindow = (WXWindow) xwindow; |
317 | m_clientWindow = m_mainWindow; | |
318 | wxAddWindowToTable( xwindow, (wxWindow*) this ); | |
7de59551 | 319 | |
ab6b6b15 RR |
320 | XMapWindow( xdisplay, xwindow ); |
321 | } | |
b513212d | 322 | |
b28d3abf | 323 | // Is a subwindow, so map immediately |
ffd84c94 | 324 | m_isShown = true; |
83df96d6 JS |
325 | |
326 | // Without this, the cursor may not be restored properly (e.g. in splitter | |
327 | // sample). | |
328 | SetCursor(*wxSTANDARD_CURSOR); | |
329 | SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT)); | |
15c69343 JS |
330 | |
331 | // Don't call this, it can have nasty repercussions for composite controls, | |
332 | // for example | |
333 | // SetSize(pos.x, pos.y, size.x, size.y); | |
83df96d6 | 334 | |
ffd84c94 | 335 | return true; |
83df96d6 JS |
336 | } |
337 | ||
338 | // Destructor | |
7266b672 | 339 | wxWindowX11::~wxWindowX11() |
83df96d6 | 340 | { |
7de59551 RD |
341 | SendDestroyEvent(); |
342 | ||
83df96d6 | 343 | if (g_captureWindow == this) |
2b5f62a0 | 344 | g_captureWindow = NULL; |
7de59551 | 345 | |
ffd84c94 | 346 | m_isBeingDeleted = true; |
7de59551 | 347 | |
d02cb44e | 348 | DestroyChildren(); |
83df96d6 | 349 | |
ab6b6b15 | 350 | if (m_clientWindow != m_mainWindow) |
83df96d6 | 351 | { |
ab6b6b15 RR |
352 | // Destroy the cleint window |
353 | Window xwindow = (Window) m_clientWindow; | |
354 | wxDeleteClientWindowFromTable( xwindow ); | |
7e4501ee | 355 | XDestroyWindow( wxGlobalDisplay(), xwindow ); |
ab6b6b15 | 356 | m_clientWindow = NULL; |
83df96d6 | 357 | } |
7de59551 | 358 | |
ab6b6b15 | 359 | // Destroy the window |
3aba082d VZ |
360 | if ( m_mainWindow ) |
361 | { | |
362 | Window xwindow = (Window) m_mainWindow; | |
363 | wxDeleteWindowFromTable( xwindow ); | |
364 | XDestroyWindow( wxGlobalDisplay(), xwindow ); | |
365 | m_mainWindow = NULL; | |
366 | } | |
83df96d6 JS |
367 | } |
368 | ||
369 | // --------------------------------------------------------------------------- | |
370 | // basic operations | |
371 | // --------------------------------------------------------------------------- | |
372 | ||
bc797f4c | 373 | void wxWindowX11::SetFocus() |
83df96d6 | 374 | { |
ab6b6b15 | 375 | Window xwindow = (Window) m_clientWindow; |
7de59551 | 376 | |
86fd8bda | 377 | wxCHECK_RET( xwindow, wxT("invalid window") ); |
7de59551 | 378 | |
10e0e1be JS |
379 | // Don't assert; we might be trying to set the focus for a panel |
380 | // with only static controls, so the panel returns false from AcceptsFocus. | |
381 | // The app should be not be expected to deal with this. | |
382 | if (!AcceptsFocus()) | |
383 | return; | |
7de59551 | 384 | |
9b8270da RR |
385 | #if 0 |
386 | if (GetName() == "scrollBar") | |
387 | { | |
388 | char *crash = NULL; | |
389 | *crash = 0; | |
390 | } | |
391 | #endif | |
7de59551 | 392 | |
3a0b23eb JS |
393 | if (wxWindowIsVisible(xwindow)) |
394 | { | |
58ec2255 JS |
395 | wxLogTrace( _T("focus"), _T("wxWindowX11::SetFocus: %s"), GetClassInfo()->GetClassName()); |
396 | // XSetInputFocus( wxGlobalDisplay(), xwindow, RevertToParent, CurrentTime ); | |
397 | XSetInputFocus( wxGlobalDisplay(), xwindow, RevertToNone, CurrentTime ); | |
ffd84c94 | 398 | m_needsInputFocus = false; |
3a0b23eb JS |
399 | } |
400 | else | |
401 | { | |
ffd84c94 | 402 | m_needsInputFocus = true; |
3a0b23eb | 403 | } |
83df96d6 JS |
404 | } |
405 | ||
406 | // Get the window with the focus | |
0fe02759 | 407 | wxWindow *wxWindowBase::DoFindFocus() |
83df96d6 | 408 | { |
86fd8bda | 409 | Window xfocus = (Window) 0; |
b513212d | 410 | int revert = 0; |
bc797f4c | 411 | |
86fd8bda RR |
412 | XGetInputFocus( wxGlobalDisplay(), &xfocus, &revert); |
413 | if (xfocus) | |
83df96d6 | 414 | { |
86fd8bda | 415 | wxWindow *win = wxGetWindowFromTable( xfocus ); |
288efe84 JS |
416 | if (!win) |
417 | { | |
418 | win = wxGetClientWindowFromTable( xfocus ); | |
419 | } | |
b513212d JS |
420 | |
421 | return win; | |
83df96d6 JS |
422 | } |
423 | ||
b513212d | 424 | return NULL; |
83df96d6 JS |
425 | } |
426 | ||
b513212d JS |
427 | // Enabling/disabling handled by event loop, and not sending events |
428 | // if disabled. | |
bc797f4c | 429 | bool wxWindowX11::Enable(bool enable) |
83df96d6 JS |
430 | { |
431 | if ( !wxWindowBase::Enable(enable) ) | |
ffd84c94 | 432 | return false; |
7de59551 | 433 | |
ffd84c94 | 434 | return true; |
83df96d6 JS |
435 | } |
436 | ||
bc797f4c | 437 | bool wxWindowX11::Show(bool show) |
83df96d6 | 438 | { |
7edcafa4 | 439 | wxWindowBase::Show(show); |
83df96d6 | 440 | |
ab6b6b15 RR |
441 | Window xwindow = (Window) m_mainWindow; |
442 | Display *xdisp = wxGlobalDisplay(); | |
83df96d6 | 443 | if (show) |
b513212d | 444 | { |
7e4501ee | 445 | // wxLogDebug( "Mapping window of type %s", GetName().c_str() ); |
ab6b6b15 | 446 | XMapWindow(xdisp, xwindow); |
b513212d | 447 | } |
83df96d6 | 448 | else |
b513212d | 449 | { |
7e4501ee | 450 | // wxLogDebug( "Unmapping window of type %s", GetName().c_str() ); |
ab6b6b15 | 451 | XUnmapWindow(xdisp, xwindow); |
b513212d | 452 | } |
83df96d6 | 453 | |
ffd84c94 | 454 | return true; |
83df96d6 JS |
455 | } |
456 | ||
457 | // Raise the window to the top of the Z order | |
bc797f4c | 458 | void wxWindowX11::Raise() |
83df96d6 | 459 | { |
ab6b6b15 RR |
460 | if (m_mainWindow) |
461 | XRaiseWindow( wxGlobalDisplay(), (Window) m_mainWindow ); | |
83df96d6 JS |
462 | } |
463 | ||
464 | // Lower the window to the bottom of the Z order | |
bc797f4c | 465 | void wxWindowX11::Lower() |
83df96d6 | 466 | { |
ab6b6b15 RR |
467 | if (m_mainWindow) |
468 | XLowerWindow( wxGlobalDisplay(), (Window) m_mainWindow ); | |
83df96d6 JS |
469 | } |
470 | ||
ffd84c94 WS |
471 | void wxWindowX11::SetLabel(const wxString& WXUNUSED(label)) |
472 | { | |
473 | // TODO | |
474 | } | |
475 | ||
476 | wxString wxWindowX11::GetLabel() const | |
477 | { | |
478 | // TODO | |
479 | return wxEmptyString; | |
480 | } | |
481 | ||
bc797f4c | 482 | void wxWindowX11::DoCaptureMouse() |
83df96d6 | 483 | { |
7edcafa4 JS |
484 | if ((g_captureWindow != NULL) && (g_captureWindow != this)) |
485 | { | |
4362c705 | 486 | wxFAIL_MSG(wxT("Trying to capture before mouse released.")); |
7edcafa4 | 487 | |
346d4fcd RR |
488 | // Core dump now |
489 | int *tmp = NULL; | |
490 | (*tmp) = 1; | |
491 | return; | |
7edcafa4 | 492 | } |
7de59551 | 493 | |
346d4fcd | 494 | if (m_winCaptured) |
83df96d6 JS |
495 | return; |
496 | ||
ab6b6b15 | 497 | Window xwindow = (Window) m_clientWindow; |
346d4fcd | 498 | |
86fd8bda | 499 | wxCHECK_RET( xwindow, wxT("invalid window") ); |
7de59551 | 500 | |
7edcafa4 JS |
501 | g_captureWindow = (wxWindow*) this; |
502 | ||
346d4fcd | 503 | if (xwindow) |
b513212d | 504 | { |
346d4fcd | 505 | int res = XGrabPointer(wxGlobalDisplay(), xwindow, |
b513212d JS |
506 | FALSE, |
507 | ButtonPressMask | ButtonReleaseMask | ButtonMotionMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask, | |
508 | GrabModeAsync, | |
2b5f62a0 | 509 | GrabModeAsync, |
b513212d JS |
510 | None, |
511 | None, /* cursor */ // TODO: This may need to be set to the cursor of this window | |
346d4fcd | 512 | CurrentTime ); |
b513212d | 513 | |
b28d3abf | 514 | if (res != GrabSuccess) |
b513212d | 515 | { |
346d4fcd | 516 | wxString msg; |
2b5f62a0 | 517 | msg.Printf(wxT("Failed to grab pointer for window %s"), this->GetClassInfo()->GetClassName()); |
346d4fcd RR |
518 | wxLogDebug(msg); |
519 | if (res == GrabNotViewable) | |
2b5f62a0 | 520 | wxLogDebug( wxT("This is not a viewable window - perhaps not shown yet?") ); |
7de59551 | 521 | |
346d4fcd | 522 | g_captureWindow = NULL; |
b28d3abf | 523 | return; |
b513212d | 524 | } |
346d4fcd | 525 | |
ffd84c94 | 526 | m_winCaptured = true; |
b513212d | 527 | } |
83df96d6 JS |
528 | } |
529 | ||
bc797f4c | 530 | void wxWindowX11::DoReleaseMouse() |
83df96d6 JS |
531 | { |
532 | g_captureWindow = NULL; | |
7de59551 | 533 | |
83df96d6 JS |
534 | if ( !m_winCaptured ) |
535 | return; | |
536 | ||
ab6b6b15 | 537 | Window xwindow = (Window) m_clientWindow; |
b513212d | 538 | |
346d4fcd | 539 | if (xwindow) |
b28d3abf | 540 | { |
346d4fcd | 541 | XUngrabPointer( wxGlobalDisplay(), CurrentTime ); |
b28d3abf | 542 | } |
7de59551 | 543 | |
9691c806 | 544 | // wxLogDebug( "Ungrabbed pointer in %s", GetName().c_str() ); |
83df96d6 | 545 | |
ffd84c94 | 546 | m_winCaptured = false; |
83df96d6 JS |
547 | } |
548 | ||
bc797f4c | 549 | bool wxWindowX11::SetFont(const wxFont& font) |
83df96d6 JS |
550 | { |
551 | if ( !wxWindowBase::SetFont(font) ) | |
552 | { | |
553 | // nothing to do | |
ffd84c94 | 554 | return false; |
83df96d6 JS |
555 | } |
556 | ||
ffd84c94 | 557 | return true; |
83df96d6 JS |
558 | } |
559 | ||
bc797f4c | 560 | bool wxWindowX11::SetCursor(const wxCursor& cursor) |
83df96d6 JS |
561 | { |
562 | if ( !wxWindowBase::SetCursor(cursor) ) | |
563 | { | |
564 | // no change | |
ffd84c94 | 565 | return false; |
83df96d6 JS |
566 | } |
567 | ||
ab6b6b15 | 568 | Window xwindow = (Window) m_clientWindow; |
86fd8bda | 569 | |
ffd84c94 | 570 | wxCHECK_MSG( xwindow, false, wxT("invalid window") ); |
7de59551 | 571 | |
86fd8bda | 572 | wxCursor cursorToUse; |
83df96d6 | 573 | if (m_cursor.Ok()) |
86fd8bda | 574 | cursorToUse = m_cursor; |
83df96d6 | 575 | else |
86fd8bda | 576 | cursorToUse = *wxSTANDARD_CURSOR; |
83df96d6 | 577 | |
86fd8bda | 578 | Cursor xcursor = (Cursor) cursorToUse.GetCursor(); |
83df96d6 | 579 | |
e88be8c9 | 580 | XDefineCursor( wxGlobalDisplay(), xwindow, xcursor ); |
83df96d6 | 581 | |
ffd84c94 | 582 | return true; |
83df96d6 JS |
583 | } |
584 | ||
585 | // Coordinates relative to the window | |
bc797f4c | 586 | void wxWindowX11::WarpPointer (int x, int y) |
83df96d6 | 587 | { |
ab6b6b15 | 588 | Window xwindow = (Window) m_clientWindow; |
86fd8bda RR |
589 | |
590 | wxCHECK_RET( xwindow, wxT("invalid window") ); | |
7de59551 | 591 | |
86fd8bda | 592 | XWarpPointer( wxGlobalDisplay(), None, xwindow, 0, 0, 0, 0, x, y); |
83df96d6 JS |
593 | } |
594 | ||
83df96d6 | 595 | // Does a physical scroll |
bc797f4c | 596 | void wxWindowX11::ScrollWindow(int dx, int dy, const wxRect *rect) |
83df96d6 | 597 | { |
fc9be1cf RR |
598 | // No scrolling requested. |
599 | if ((dx == 0) && (dy == 0)) return; | |
7de59551 | 600 | |
fc9be1cf RR |
601 | if (!m_updateRegion.IsEmpty()) |
602 | { | |
603 | m_updateRegion.Offset( dx, dy ); | |
7de59551 | 604 | |
fc9be1cf RR |
605 | int cw = 0; |
606 | int ch = 0; | |
607 | GetSize( &cw, &ch ); // GetClientSize() ?? | |
608 | m_updateRegion.Intersect( 0, 0, cw, ch ); | |
609 | } | |
7de59551 | 610 | |
fc9be1cf RR |
611 | if (!m_clearRegion.IsEmpty()) |
612 | { | |
613 | m_clearRegion.Offset( dx, dy ); | |
7de59551 | 614 | |
fc9be1cf RR |
615 | int cw = 0; |
616 | int ch = 0; | |
617 | GetSize( &cw, &ch ); // GetClientSize() ?? | |
618 | m_clearRegion.Intersect( 0, 0, cw, ch ); | |
619 | } | |
7de59551 | 620 | |
f41bc3e3 | 621 | Window xwindow = (Window) GetClientAreaWindow(); |
7e085304 RR |
622 | |
623 | wxCHECK_RET( xwindow, wxT("invalid window") ); | |
624 | ||
625 | Display *xdisplay = wxGlobalDisplay(); | |
626 | ||
627 | GC xgc = XCreateGC( xdisplay, xwindow, 0, NULL ); | |
628 | XSetGraphicsExposures( xdisplay, xgc, True ); | |
629 | ||
e88be8c9 RR |
630 | int s_x = 0; |
631 | int s_y = 0; | |
4125131b RR |
632 | int cw; |
633 | int ch; | |
634 | if (rect) | |
635 | { | |
636 | s_x = rect->x; | |
637 | s_y = rect->y; | |
7de59551 | 638 | |
4125131b RR |
639 | cw = rect->width; |
640 | ch = rect->height; | |
641 | } | |
642 | else | |
643 | { | |
644 | s_x = 0; | |
645 | s_y = 0; | |
646 | GetClientSize( &cw, &ch ); | |
647 | } | |
7de59551 | 648 | |
ab6b6b15 RR |
649 | #if wxUSE_TWO_WINDOWS |
650 | wxPoint offset( 0,0 ); | |
651 | #else | |
4125131b RR |
652 | wxPoint offset = GetClientAreaOrigin(); |
653 | s_x += offset.x; | |
654 | s_y += offset.y; | |
ab6b6b15 | 655 | #endif |
7de59551 | 656 | |
7e085304 RR |
657 | int w = cw - abs(dx); |
658 | int h = ch - abs(dy); | |
7de59551 | 659 | |
7e085304 | 660 | if ((h < 0) || (w < 0)) |
83df96d6 | 661 | { |
7e085304 | 662 | Refresh(); |
83df96d6 JS |
663 | } |
664 | else | |
665 | { | |
4125131b | 666 | wxRect rect; |
f809133f RR |
667 | if (dx < 0) rect.x = cw+dx + offset.x; else rect.x = s_x; |
668 | if (dy < 0) rect.y = ch+dy + offset.y; else rect.y = s_y; | |
4125131b RR |
669 | if (dy != 0) rect.width = cw; else rect.width = abs(dx); |
670 | if (dx != 0) rect.height = ch; else rect.height = abs(dy); | |
7de59551 | 671 | |
4125131b RR |
672 | int d_x = s_x; |
673 | int d_y = s_y; | |
7de59551 | 674 | |
4125131b RR |
675 | if (dx < 0) s_x += -dx; |
676 | if (dy < 0) s_y += -dy; | |
e88be8c9 RR |
677 | if (dx > 0) d_x = dx + offset.x; |
678 | if (dy > 0) d_y = dy + offset.y; | |
7e085304 RR |
679 | |
680 | XCopyArea( xdisplay, xwindow, xwindow, xgc, s_x, s_y, w, h, d_x, d_y ); | |
7de59551 | 681 | |
e88be8c9 | 682 | // 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 ); |
7e085304 | 683 | |
e88be8c9 | 684 | // wxLogDebug( "Update: %d %d %d %d", rect.x, rect.y, rect.width, rect.height ); |
7e085304 RR |
685 | |
686 | m_updateRegion.Union( rect ); | |
687 | m_clearRegion.Union( rect ); | |
83df96d6 | 688 | } |
7de59551 | 689 | |
7e085304 | 690 | XFreeGC( xdisplay, xgc ); |
271f05f7 JS |
691 | |
692 | // Move Clients, but not the scrollbars | |
693 | // FIXME: There may be a better method to move a lot of Windows within X11 | |
694 | wxScrollBar *sbH = ((wxWindow *) this)->GetScrollbar( wxHORIZONTAL ); | |
695 | wxScrollBar *sbV = ((wxWindow *) this)->GetScrollbar( wxVERTICAL ); | |
696 | wxWindowList::compatibility_iterator node = GetChildren().GetFirst(); | |
697 | while ( node ) | |
698 | { | |
699 | // Only propagate to non-top-level windows | |
700 | wxWindow *win = node->GetData(); | |
701 | if ( win->GetParent() && win != sbH && win != sbV ) | |
702 | { | |
703 | wxPoint pos = win->GetPosition(); | |
704 | // Add the delta to the old Position | |
705 | pos.x += dx; | |
706 | pos.y += dy; | |
707 | win->SetPosition(pos); | |
708 | } | |
709 | node = node->GetNext(); | |
710 | } | |
83df96d6 JS |
711 | } |
712 | ||
713 | // --------------------------------------------------------------------------- | |
714 | // drag and drop | |
715 | // --------------------------------------------------------------------------- | |
716 | ||
717 | #if wxUSE_DRAG_AND_DROP | |
718 | ||
bc797f4c | 719 | void wxWindowX11::SetDropTarget(wxDropTarget * WXUNUSED(pDropTarget)) |
83df96d6 JS |
720 | { |
721 | // TODO | |
722 | } | |
723 | ||
724 | #endif | |
725 | ||
726 | // Old style file-manager drag&drop | |
bc797f4c | 727 | void wxWindowX11::DragAcceptFiles(bool WXUNUSED(accept)) |
83df96d6 JS |
728 | { |
729 | // TODO | |
730 | } | |
731 | ||
732 | // ---------------------------------------------------------------------------- | |
733 | // tooltips | |
734 | // ---------------------------------------------------------------------------- | |
735 | ||
736 | #if wxUSE_TOOLTIPS | |
737 | ||
bc797f4c | 738 | void wxWindowX11::DoSetToolTip(wxToolTip * WXUNUSED(tooltip)) |
83df96d6 JS |
739 | { |
740 | // TODO | |
741 | } | |
742 | ||
743 | #endif // wxUSE_TOOLTIPS | |
744 | ||
83df96d6 JS |
745 | // --------------------------------------------------------------------------- |
746 | // moving and resizing | |
747 | // --------------------------------------------------------------------------- | |
748 | ||
bc797f4c | 749 | bool wxWindowX11::PreResize() |
83df96d6 | 750 | { |
ffd84c94 | 751 | return true; |
83df96d6 JS |
752 | } |
753 | ||
754 | // Get total size | |
bc797f4c | 755 | void wxWindowX11::DoGetSize(int *x, int *y) const |
83df96d6 | 756 | { |
ab6b6b15 | 757 | Window xwindow = (Window) m_mainWindow; |
86fd8bda RR |
758 | |
759 | wxCHECK_RET( xwindow, wxT("invalid window") ); | |
7de59551 | 760 | |
59db9cfa | 761 | //XSync(wxGlobalDisplay(), False); |
e941874b | 762 | |
86fd8bda RR |
763 | XWindowAttributes attr; |
764 | Status status = XGetWindowAttributes( wxGlobalDisplay(), xwindow, &attr ); | |
765 | wxASSERT(status); | |
7de59551 | 766 | |
86fd8bda RR |
767 | if (status) |
768 | { | |
769 | *x = attr.width /* + 2*m_borderSize */ ; | |
770 | *y = attr.height /* + 2*m_borderSize */ ; | |
83df96d6 | 771 | } |
83df96d6 JS |
772 | } |
773 | ||
bc797f4c | 774 | void wxWindowX11::DoGetPosition(int *x, int *y) const |
83df96d6 | 775 | { |
ab6b6b15 | 776 | Window window = (Window) m_mainWindow; |
b513212d | 777 | if (window) |
83df96d6 | 778 | { |
59db9cfa | 779 | //XSync(wxGlobalDisplay(), False); |
b513212d JS |
780 | XWindowAttributes attr; |
781 | Status status = XGetWindowAttributes(wxGlobalDisplay(), window, & attr); | |
782 | wxASSERT(status); | |
7de59551 | 783 | |
b513212d JS |
784 | if (status) |
785 | { | |
786 | *x = attr.x; | |
787 | *y = attr.y; | |
7de59551 | 788 | |
b513212d JS |
789 | // We may be faking the client origin. So a window that's really at (0, 30) |
790 | // may appear (to wxWin apps) to be at (0, 0). | |
791 | if (GetParent()) | |
792 | { | |
793 | wxPoint pt(GetParent()->GetClientAreaOrigin()); | |
794 | *x -= pt.x; | |
795 | *y -= pt.y; | |
796 | } | |
797 | } | |
83df96d6 | 798 | } |
83df96d6 JS |
799 | } |
800 | ||
bc797f4c | 801 | void wxWindowX11::DoScreenToClient(int *x, int *y) const |
83df96d6 | 802 | { |
b513212d | 803 | Display *display = wxGlobalDisplay(); |
bc797f4c | 804 | Window rootWindow = RootWindowOfScreen(DefaultScreenOfDisplay(display)); |
ab6b6b15 | 805 | Window thisWindow = (Window) m_clientWindow; |
83df96d6 JS |
806 | |
807 | Window childWindow; | |
808 | int xx = *x; | |
809 | int yy = *y; | |
810 | XTranslateCoordinates(display, rootWindow, thisWindow, xx, yy, x, y, &childWindow); | |
811 | } | |
812 | ||
bc797f4c | 813 | void wxWindowX11::DoClientToScreen(int *x, int *y) const |
83df96d6 | 814 | { |
b513212d | 815 | Display *display = wxGlobalDisplay(); |
bc797f4c | 816 | Window rootWindow = RootWindowOfScreen(DefaultScreenOfDisplay(display)); |
ab6b6b15 | 817 | Window thisWindow = (Window) m_clientWindow; |
83df96d6 JS |
818 | |
819 | Window childWindow; | |
820 | int xx = *x; | |
821 | int yy = *y; | |
822 | XTranslateCoordinates(display, thisWindow, rootWindow, xx, yy, x, y, &childWindow); | |
823 | } | |
824 | ||
825 | ||
826 | // Get size *available for subwindows* i.e. excluding menu bar etc. | |
bc797f4c | 827 | void wxWindowX11::DoGetClientSize(int *x, int *y) const |
83df96d6 | 828 | { |
ab6b6b15 | 829 | Window window = (Window) m_mainWindow; |
b513212d JS |
830 | |
831 | if (window) | |
832 | { | |
833 | XWindowAttributes attr; | |
3cd0b8c5 | 834 | Status status = XGetWindowAttributes( wxGlobalDisplay(), window, &attr ); |
b513212d | 835 | wxASSERT(status); |
7de59551 | 836 | |
b513212d JS |
837 | if (status) |
838 | { | |
839 | *x = attr.width ; | |
840 | *y = attr.height ; | |
841 | } | |
842 | } | |
83df96d6 JS |
843 | } |
844 | ||
bc797f4c | 845 | void wxWindowX11::DoSetSize(int x, int y, int width, int height, int sizeFlags) |
83df96d6 | 846 | { |
df0e1b64 | 847 | // wxLogDebug("DoSetSize: %s (%ld) %d, %d %dx%d", GetClassInfo()->GetClassName(), GetId(), x, y, width, height); |
7de59551 | 848 | |
ab6b6b15 | 849 | Window xwindow = (Window) m_mainWindow; |
83df96d6 | 850 | |
27398643 RR |
851 | wxCHECK_RET( xwindow, wxT("invalid window") ); |
852 | ||
853 | XWindowAttributes attr; | |
854 | Status status = XGetWindowAttributes( wxGlobalDisplay(), xwindow, &attr ); | |
855 | wxCHECK_RET( status, wxT("invalid window attributes") ); | |
7de59551 | 856 | |
27398643 RR |
857 | int new_x = attr.x; |
858 | int new_y = attr.y; | |
859 | int new_w = attr.width; | |
860 | int new_h = attr.height; | |
7de59551 | 861 | |
ffd84c94 | 862 | if (x != wxDefaultCoord || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE)) |
83df96d6 | 863 | { |
27398643 | 864 | int yy = 0; |
e5053ade | 865 | AdjustForParentClientOrigin( x, yy, sizeFlags); |
27398643 | 866 | new_x = x; |
83df96d6 | 867 | } |
ffd84c94 | 868 | if (y != wxDefaultCoord || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE)) |
83df96d6 | 869 | { |
27398643 | 870 | int xx = 0; |
e5053ade | 871 | AdjustForParentClientOrigin( xx, y, sizeFlags); |
27398643 | 872 | new_y = y; |
83df96d6 | 873 | } |
ffd84c94 | 874 | if (width != wxDefaultCoord) |
83df96d6 | 875 | { |
27398643 RR |
876 | new_w = width; |
877 | if (new_w <= 0) | |
878 | new_w = 20; | |
83df96d6 | 879 | } |
ffd84c94 | 880 | if (height != wxDefaultCoord) |
b513212d | 881 | { |
27398643 RR |
882 | new_h = height; |
883 | if (new_h <= 0) | |
884 | new_h = 20; | |
b513212d | 885 | } |
7de59551 | 886 | |
27398643 | 887 | DoMoveWindow( new_x, new_y, new_w, new_h ); |
83df96d6 JS |
888 | } |
889 | ||
bc797f4c | 890 | void wxWindowX11::DoSetClientSize(int width, int height) |
83df96d6 | 891 | { |
df0e1b64 | 892 | // wxLogDebug("DoSetClientSize: %s (%ld) %dx%d", GetClassInfo()->GetClassName(), GetId(), width, height); |
7de59551 | 893 | |
ab6b6b15 | 894 | Window xwindow = (Window) m_mainWindow; |
83df96d6 | 895 | |
27398643 | 896 | wxCHECK_RET( xwindow, wxT("invalid window") ); |
83df96d6 | 897 | |
2f12683e | 898 | XResizeWindow( wxGlobalDisplay(), xwindow, width, height ); |
7de59551 | 899 | |
ab6b6b15 RR |
900 | if (m_mainWindow != m_clientWindow) |
901 | { | |
902 | xwindow = (Window) m_clientWindow; | |
7de59551 | 903 | |
a17a79ba RR |
904 | wxWindow *window = (wxWindow*) this; |
905 | wxRenderer *renderer = window->GetRenderer(); | |
906 | if (renderer) | |
ab6b6b15 | 907 | { |
a17a79ba RR |
908 | wxRect border = renderer->GetBorderDimensions( (wxBorder)(m_windowStyle & wxBORDER_MASK) ); |
909 | width -= border.x + border.width; | |
910 | height -= border.y + border.height; | |
ab6b6b15 | 911 | } |
7de59551 | 912 | |
ab6b6b15 RR |
913 | XResizeWindow( wxGlobalDisplay(), xwindow, width, height ); |
914 | } | |
83df96d6 JS |
915 | } |
916 | ||
ab6b6b15 RR |
917 | void wxWindowX11::DoMoveWindow(int x, int y, int width, int height) |
918 | { | |
919 | Window xwindow = (Window) m_mainWindow; | |
920 | ||
921 | wxCHECK_RET( xwindow, wxT("invalid window") ); | |
922 | ||
923 | #if !wxUSE_NANOX | |
924 | ||
925 | XMoveResizeWindow( wxGlobalDisplay(), xwindow, x, y, width, height ); | |
926 | if (m_mainWindow != m_clientWindow) | |
927 | { | |
928 | xwindow = (Window) m_clientWindow; | |
7de59551 | 929 | |
a17a79ba RR |
930 | wxWindow *window = (wxWindow*) this; |
931 | wxRenderer *renderer = window->GetRenderer(); | |
932 | if (renderer) | |
ab6b6b15 | 933 | { |
a17a79ba RR |
934 | wxRect border = renderer->GetBorderDimensions( (wxBorder)(m_windowStyle & wxBORDER_MASK) ); |
935 | x = border.x; | |
936 | y = border.y; | |
937 | width -= border.x + border.width; | |
938 | height -= border.y + border.height; | |
939 | } | |
940 | else | |
ab6b6b15 RR |
941 | { |
942 | x = 0; | |
943 | y = 0; | |
944 | } | |
7de59551 | 945 | |
ab6b6b15 RR |
946 | wxScrollBar *sb = window->GetScrollbar( wxHORIZONTAL ); |
947 | if (sb && sb->IsShown()) | |
948 | { | |
949 | wxSize size = sb->GetSize(); | |
950 | height -= size.y; | |
951 | } | |
952 | sb = window->GetScrollbar( wxVERTICAL ); | |
953 | if (sb && sb->IsShown()) | |
954 | { | |
955 | wxSize size = sb->GetSize(); | |
956 | width -= size.x; | |
957 | } | |
7de59551 | 958 | |
288efe84 | 959 | XMoveResizeWindow( wxGlobalDisplay(), xwindow, x, y, wxMax(1, width), wxMax(1, height) ); |
ab6b6b15 | 960 | } |
7de59551 RD |
961 | |
962 | #else | |
ab6b6b15 RR |
963 | |
964 | XWindowChanges windowChanges; | |
965 | windowChanges.x = x; | |
966 | windowChanges.y = y; | |
967 | windowChanges.width = width; | |
968 | windowChanges.height = height; | |
969 | windowChanges.stack_mode = 0; | |
970 | int valueMask = CWX | CWY | CWWidth | CWHeight; | |
971 | ||
972 | XConfigureWindow( wxGlobalDisplay(), xwindow, valueMask, &windowChanges ); | |
7de59551 | 973 | |
ab6b6b15 RR |
974 | #endif |
975 | } | |
976 | ||
024f89f9 | 977 | void wxWindowX11::DoSetSizeHints(int minW, int minH, int maxW, int maxH, int incW, int incH) |
83df96d6 JS |
978 | { |
979 | m_minWidth = minW; | |
980 | m_minHeight = minH; | |
981 | m_maxWidth = maxW; | |
982 | m_maxHeight = maxH; | |
983 | ||
461e93f9 | 984 | #if !wxUSE_NANOX |
b513212d JS |
985 | XSizeHints sizeHints; |
986 | sizeHints.flags = 0; | |
7de59551 | 987 | |
b513212d | 988 | if (minW > -1 && minH > -1) |
83df96d6 | 989 | { |
b513212d JS |
990 | sizeHints.flags |= PMinSize; |
991 | sizeHints.min_width = minW; | |
992 | sizeHints.min_height = minH; | |
993 | } | |
994 | if (maxW > -1 && maxH > -1) | |
995 | { | |
996 | sizeHints.flags |= PMaxSize; | |
997 | sizeHints.max_width = maxW; | |
998 | sizeHints.max_height = maxH; | |
999 | } | |
1000 | if (incW > -1 && incH > -1) | |
1001 | { | |
1002 | sizeHints.flags |= PResizeInc; | |
1003 | sizeHints.width_inc = incW; | |
1004 | sizeHints.height_inc = incH; | |
83df96d6 JS |
1005 | } |
1006 | ||
ab6b6b15 | 1007 | XSetWMNormalHints(wxGlobalDisplay(), (Window) m_mainWindow, &sizeHints ); |
2f12683e | 1008 | #endif |
83df96d6 JS |
1009 | } |
1010 | ||
1011 | // --------------------------------------------------------------------------- | |
1012 | // text metrics | |
1013 | // --------------------------------------------------------------------------- | |
1014 | ||
bc797f4c | 1015 | int wxWindowX11::GetCharHeight() const |
83df96d6 | 1016 | { |
4837b89e JS |
1017 | wxFont font(GetFont()); |
1018 | wxCHECK_MSG( font.Ok(), 0, wxT("valid window font needed") ); | |
83df96d6 | 1019 | |
2b5f62a0 VZ |
1020 | #if wxUSE_UNICODE |
1021 | // There should be an easier way. | |
1022 | PangoLayout *layout = pango_layout_new( wxTheApp->GetPangoContext() ); | |
4837b89e | 1023 | pango_layout_set_font_description( layout, font.GetNativeFontInfo()->description ); |
2b5f62a0 VZ |
1024 | pango_layout_set_text(layout, "H", 1 ); |
1025 | int w,h; | |
1026 | pango_layout_get_pixel_size(layout, &w, &h); | |
1027 | g_object_unref( G_OBJECT( layout ) ); | |
7de59551 | 1028 | |
2b5f62a0 VZ |
1029 | return h; |
1030 | #else | |
4837b89e | 1031 | WXFontStructPtr pFontStruct = font.GetFontStruct(1.0, wxGlobalDisplay()); |
83df96d6 JS |
1032 | |
1033 | int direction, ascent, descent; | |
1034 | XCharStruct overall; | |
1035 | XTextExtents ((XFontStruct*) pFontStruct, "x", 1, &direction, &ascent, | |
1036 | &descent, &overall); | |
1037 | ||
1038 | // return (overall.ascent + overall.descent); | |
1039 | return (ascent + descent); | |
2b5f62a0 | 1040 | #endif |
83df96d6 JS |
1041 | } |
1042 | ||
bc797f4c | 1043 | int wxWindowX11::GetCharWidth() const |
83df96d6 | 1044 | { |
4837b89e JS |
1045 | wxFont font(GetFont()); |
1046 | wxCHECK_MSG( font.Ok(), 0, wxT("valid window font needed") ); | |
83df96d6 | 1047 | |
2b5f62a0 VZ |
1048 | #if wxUSE_UNICODE |
1049 | // There should be an easier way. | |
1050 | PangoLayout *layout = pango_layout_new( wxTheApp->GetPangoContext() ); | |
4837b89e | 1051 | pango_layout_set_font_description( layout, font.GetNativeFontInfo()->description ); |
2b5f62a0 VZ |
1052 | pango_layout_set_text(layout, "H", 1 ); |
1053 | int w,h; | |
1054 | pango_layout_get_pixel_size(layout, &w, &h); | |
1055 | g_object_unref( G_OBJECT( layout ) ); | |
7de59551 | 1056 | |
2b5f62a0 VZ |
1057 | return w; |
1058 | #else | |
4837b89e | 1059 | WXFontStructPtr pFontStruct = font.GetFontStruct(1.0, wxGlobalDisplay()); |
83df96d6 JS |
1060 | |
1061 | int direction, ascent, descent; | |
1062 | XCharStruct overall; | |
1063 | XTextExtents ((XFontStruct*) pFontStruct, "x", 1, &direction, &ascent, | |
1064 | &descent, &overall); | |
1065 | ||
1066 | return overall.width; | |
2b5f62a0 | 1067 | #endif |
83df96d6 JS |
1068 | } |
1069 | ||
bc797f4c | 1070 | void wxWindowX11::GetTextExtent(const wxString& string, |
ffd84c94 WS |
1071 | int *x, int *y, |
1072 | int *descent, int *externalLeading, | |
1073 | const wxFont *theFont) const | |
83df96d6 | 1074 | { |
4837b89e | 1075 | wxFont fontToUse = GetFont(); |
0d1dff01 | 1076 | if (theFont) fontToUse = *theFont; |
83df96d6 | 1077 | |
0d1dff01 RR |
1078 | wxCHECK_RET( fontToUse.Ok(), wxT("invalid font") ); |
1079 | ||
ffd84c94 | 1080 | if (string.empty()) |
2b5f62a0 VZ |
1081 | { |
1082 | if (x) (*x) = 0; | |
1083 | if (y) (*y) = 0; | |
1084 | return; | |
1085 | } | |
1086 | ||
1087 | #if wxUSE_UNICODE | |
1088 | PangoLayout *layout = pango_layout_new( wxTheApp->GetPangoContext() ); | |
7de59551 | 1089 | |
2b5f62a0 VZ |
1090 | PangoFontDescription *desc = fontToUse.GetNativeFontInfo()->description; |
1091 | pango_layout_set_font_description(layout, desc); | |
7de59551 | 1092 | |
2b5f62a0 VZ |
1093 | const wxCharBuffer data = wxConvUTF8.cWC2MB( string ); |
1094 | pango_layout_set_text(layout, (const char*) data, strlen( (const char*) data )); | |
7de59551 | 1095 | |
2b5f62a0 VZ |
1096 | PangoLayoutLine *line = (PangoLayoutLine *)pango_layout_get_lines(layout)->data; |
1097 | ||
7de59551 | 1098 | |
2b5f62a0 VZ |
1099 | PangoRectangle rect; |
1100 | pango_layout_line_get_extents(line, NULL, &rect); | |
7de59551 | 1101 | |
2b5f62a0 VZ |
1102 | if (x) (*x) = (wxCoord) (rect.width / PANGO_SCALE); |
1103 | if (y) (*y) = (wxCoord) (rect.height / PANGO_SCALE); | |
1104 | if (descent) | |
1105 | { | |
1106 | // Do something about metrics here | |
1107 | (*descent) = 0; | |
1108 | } | |
1109 | if (externalLeading) (*externalLeading) = 0; // ?? | |
1110 | ||
1111 | g_object_unref( G_OBJECT( layout ) ); | |
1112 | #else | |
ab6b6b15 | 1113 | WXFontStructPtr pFontStruct = fontToUse.GetFontStruct(1.0, wxGlobalDisplay()); |
83df96d6 JS |
1114 | |
1115 | int direction, ascent, descent2; | |
1116 | XCharStruct overall; | |
851dee09 | 1117 | int slen = string.length(); |
83df96d6 | 1118 | |
461e93f9 | 1119 | XTextExtents((XFontStruct*) pFontStruct, (char*) string.c_str(), slen, |
83df96d6 JS |
1120 | &direction, &ascent, &descent2, &overall); |
1121 | ||
1122 | if ( x ) | |
1123 | *x = (overall.width); | |
1124 | if ( y ) | |
1125 | *y = (ascent + descent2); | |
1126 | if (descent) | |
1127 | *descent = descent2; | |
1128 | if (externalLeading) | |
1129 | *externalLeading = 0; | |
2b5f62a0 | 1130 | #endif |
83df96d6 JS |
1131 | } |
1132 | ||
1133 | // ---------------------------------------------------------------------------- | |
1134 | // painting | |
1135 | // ---------------------------------------------------------------------------- | |
1136 | ||
bc797f4c | 1137 | void wxWindowX11::Refresh(bool eraseBack, const wxRect *rect) |
83df96d6 | 1138 | { |
d02cb44e RR |
1139 | if (eraseBack) |
1140 | { | |
1141 | if (rect) | |
1142 | { | |
1143 | // Schedule for later Updating in ::Update() or ::OnInternalIdle(). | |
1144 | m_clearRegion.Union( rect->x, rect->y, rect->width, rect->height ); | |
1145 | } | |
1146 | else | |
1147 | { | |
1148 | int height,width; | |
1149 | GetSize( &width, &height ); | |
7de59551 | 1150 | |
d02cb44e RR |
1151 | // Schedule for later Updating in ::Update() or ::OnInternalIdle(). |
1152 | m_clearRegion.Clear(); | |
1153 | m_clearRegion.Union( 0, 0, width, height ); | |
1154 | } | |
1155 | } | |
83df96d6 | 1156 | |
83df96d6 JS |
1157 | if (rect) |
1158 | { | |
d02cb44e RR |
1159 | // Schedule for later Updating in ::Update() or ::OnInternalIdle(). |
1160 | m_updateRegion.Union( rect->x, rect->y, rect->width, rect->height ); | |
83df96d6 JS |
1161 | } |
1162 | else | |
1163 | { | |
0d1dff01 RR |
1164 | int height,width; |
1165 | GetSize( &width, &height ); | |
7de59551 | 1166 | |
d02cb44e RR |
1167 | // Schedule for later Updating in ::Update() or ::OnInternalIdle(). |
1168 | m_updateRegion.Clear(); | |
1169 | m_updateRegion.Union( 0, 0, width, height ); | |
83df96d6 | 1170 | } |
d02cb44e | 1171 | } |
83df96d6 | 1172 | |
d02cb44e RR |
1173 | void wxWindowX11::Update() |
1174 | { | |
ab6b6b15 RR |
1175 | if (m_updateNcArea) |
1176 | { | |
065722d7 | 1177 | // wxLogDebug("wxWindowX11::UpdateNC: %s", GetClassInfo()->GetClassName()); |
ab6b6b15 RR |
1178 | // Send nc paint events. |
1179 | SendNcPaintEvents(); | |
1180 | } | |
7de59551 | 1181 | |
d02cb44e | 1182 | if (!m_updateRegion.IsEmpty()) |
83df96d6 | 1183 | { |
ab6b6b15 | 1184 | // wxLogDebug("wxWindowX11::Update: %s", GetClassInfo()->GetClassName()); |
887dd52f RR |
1185 | // Actually send erase events. |
1186 | SendEraseEvents(); | |
7de59551 | 1187 | |
887dd52f RR |
1188 | // Actually send paint events. |
1189 | SendPaintEvents(); | |
83df96d6 | 1190 | } |
83df96d6 JS |
1191 | } |
1192 | ||
887dd52f | 1193 | void wxWindowX11::SendEraseEvents() |
83df96d6 | 1194 | { |
2f12683e | 1195 | if (m_clearRegion.IsEmpty()) return; |
7de59551 | 1196 | |
ab6b6b15 | 1197 | wxClientDC dc( (wxWindow*)this ); |
2f12683e | 1198 | dc.SetClippingRegion( m_clearRegion ); |
7de59551 | 1199 | |
2f12683e RR |
1200 | wxEraseEvent erase_event( GetId(), &dc ); |
1201 | erase_event.SetEventObject( this ); | |
0b5c0e1a | 1202 | |
c2c0dabf | 1203 | if (!GetEventHandler()->ProcessEvent(erase_event) ) |
2f12683e | 1204 | { |
2f12683e | 1205 | Display *xdisplay = wxGlobalDisplay(); |
f41bc3e3 | 1206 | Window xwindow = (Window) GetClientAreaWindow(); |
c2c0dabf | 1207 | XSetForeground( xdisplay, g_eraseGC, m_backgroundColour.GetPixel() ); |
7de59551 | 1208 | |
2f12683e RR |
1209 | wxRegionIterator upd( m_clearRegion ); |
1210 | while (upd) | |
1934d291 | 1211 | { |
c2c0dabf | 1212 | XFillRectangle( xdisplay, xwindow, g_eraseGC, |
2f12683e RR |
1213 | upd.GetX(), upd.GetY(), upd.GetWidth(), upd.GetHeight() ); |
1214 | upd ++; | |
1934d291 | 1215 | } |
83df96d6 | 1216 | } |
7de59551 | 1217 | |
2f12683e | 1218 | m_clearRegion.Clear(); |
887dd52f RR |
1219 | } |
1220 | ||
887dd52f RR |
1221 | void wxWindowX11::SendPaintEvents() |
1222 | { | |
df0e1b64 JS |
1223 | // wxLogDebug("SendPaintEvents: %s (%ld)", GetClassInfo()->GetClassName(), GetId()); |
1224 | ||
ffd84c94 | 1225 | m_clipPaintRegion = true; |
7de59551 | 1226 | |
1934d291 RR |
1227 | wxPaintEvent paint_event( GetId() ); |
1228 | paint_event.SetEventObject( this ); | |
1229 | GetEventHandler()->ProcessEvent( paint_event ); | |
7de59551 | 1230 | |
0b5c0e1a | 1231 | m_updateRegion.Clear(); |
7de59551 | 1232 | |
ffd84c94 | 1233 | m_clipPaintRegion = false; |
83df96d6 JS |
1234 | } |
1235 | ||
ab6b6b15 RR |
1236 | void wxWindowX11::SendNcPaintEvents() |
1237 | { | |
a17a79ba RR |
1238 | wxWindow *window = (wxWindow*) this; |
1239 | ||
1240 | // All this for drawing the small square between the scrollbars. | |
1241 | int width = 0; | |
1242 | int height = 0; | |
1243 | int x = 0; | |
1244 | int y = 0; | |
1245 | wxScrollBar *sb = window->GetScrollbar( wxHORIZONTAL ); | |
1246 | if (sb && sb->IsShown()) | |
1247 | { | |
1248 | height = sb->GetSize().y; | |
1249 | y = sb->GetPosition().y; | |
7de59551 | 1250 | |
a17a79ba RR |
1251 | sb = window->GetScrollbar( wxVERTICAL ); |
1252 | if (sb && sb->IsShown()) | |
1253 | { | |
1254 | width = sb->GetSize().x; | |
1255 | x = sb->GetPosition().x; | |
1256 | ||
1257 | Display *xdisplay = wxGlobalDisplay(); | |
1258 | Window xwindow = (Window) GetMainWindow(); | |
1259 | Colormap cm = (Colormap) wxTheApp->GetMainColormap( wxGetDisplay() ); | |
1260 | wxColour colour = wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE); | |
1261 | colour.CalcPixel( (WXColormap) cm ); | |
7de59551 | 1262 | |
a17a79ba | 1263 | XSetForeground( xdisplay, g_eraseGC, colour.GetPixel() ); |
7de59551 | 1264 | |
a17a79ba RR |
1265 | XFillRectangle( xdisplay, xwindow, g_eraseGC, x, y, width, height ); |
1266 | } | |
1267 | } | |
7de59551 | 1268 | |
ab6b6b15 RR |
1269 | wxNcPaintEvent nc_paint_event( GetId() ); |
1270 | nc_paint_event.SetEventObject( this ); | |
1271 | GetEventHandler()->ProcessEvent( nc_paint_event ); | |
7de59551 | 1272 | |
ffd84c94 | 1273 | m_updateNcArea = false; |
ab6b6b15 RR |
1274 | } |
1275 | ||
83df96d6 JS |
1276 | // ---------------------------------------------------------------------------- |
1277 | // event handlers | |
1278 | // ---------------------------------------------------------------------------- | |
1279 | ||
1280 | // Responds to colour changes: passes event on to children. | |
bc797f4c | 1281 | void wxWindowX11::OnSysColourChanged(wxSysColourChangedEvent& event) |
83df96d6 | 1282 | { |
ac32ba44 | 1283 | wxWindowList::compatibility_iterator node = GetChildren().GetFirst(); |
83df96d6 JS |
1284 | while ( node ) |
1285 | { | |
1286 | // Only propagate to non-top-level windows | |
1287 | wxWindow *win = node->GetData(); | |
1288 | if ( win->GetParent() ) | |
1289 | { | |
1290 | wxSysColourChangedEvent event2; | |
687706f5 | 1291 | event.SetEventObject(win); |
83df96d6 JS |
1292 | win->GetEventHandler()->ProcessEvent(event2); |
1293 | } | |
1294 | ||
1295 | node = node->GetNext(); | |
1296 | } | |
1297 | } | |
1298 | ||
58ec2255 JS |
1299 | // See handler for InFocus case in app.cpp for details. |
1300 | wxWindow* g_GettingFocus = NULL; | |
1301 | ||
0d1dff01 | 1302 | void wxWindowX11::OnInternalIdle() |
83df96d6 | 1303 | { |
0d1dff01 RR |
1304 | // Update invalidated regions. |
1305 | Update(); | |
7de59551 | 1306 | |
83df96d6 JS |
1307 | // This calls the UI-update mechanism (querying windows for |
1308 | // menu/toolbar/control state information) | |
e6d82295 | 1309 | if (wxUpdateUIEvent::CanUpdate((wxWindow*) this)) |
e39af974 | 1310 | UpdateWindowUI(wxUPDATE_UI_FROMIDLE); |
3a0b23eb JS |
1311 | |
1312 | // Set the input focus if couldn't do it before | |
1313 | if (m_needsInputFocus) | |
ff6b424a | 1314 | { |
4cae9a20 JS |
1315 | #if 0 |
1316 | wxString msg; | |
1317 | msg.Printf("Setting focus for %s from OnInternalIdle\n", GetClassInfo()->GetClassName()); | |
1318 | printf(msg.c_str()); | |
2b5f62a0 VZ |
1319 | #endif |
1320 | SetFocus(); | |
7de59551 | 1321 | |
4cae9a20 JS |
1322 | // If it couldn't set the focus now, there's |
1323 | // no point in trying again. | |
ffd84c94 | 1324 | m_needsInputFocus = false; |
ff6b424a | 1325 | } |
58ec2255 | 1326 | g_GettingFocus = NULL; |
83df96d6 JS |
1327 | } |
1328 | ||
83df96d6 | 1329 | // ---------------------------------------------------------------------------- |
77ffb593 | 1330 | // function which maintain the global hash table mapping Widgets to wxWidgets |
83df96d6 JS |
1331 | // ---------------------------------------------------------------------------- |
1332 | ||
b8033a5d | 1333 | static bool DoAddWindowToTable(wxWindowHash *hash, Window w, wxWindow *win) |
83df96d6 | 1334 | { |
b8033a5d | 1335 | if ( !hash->insert(wxWindowHash::value_type(w, win)).second ) |
83df96d6 | 1336 | { |
b8033a5d VZ |
1337 | wxLogDebug( wxT("Widget table clash: new widget is 0x%08x, %s"), |
1338 | (unsigned int)w, win->GetClassInfo()->GetClassName()); | |
ffd84c94 | 1339 | return false; |
83df96d6 JS |
1340 | } |
1341 | ||
2b5f62a0 VZ |
1342 | wxLogTrace( wxT("widget"), wxT("XWindow 0x%08x <-> window %p (%s)"), |
1343 | (unsigned int) w, win, win->GetClassInfo()->GetClassName()); | |
83df96d6 | 1344 | |
ffd84c94 | 1345 | return true; |
83df96d6 JS |
1346 | } |
1347 | ||
b8033a5d | 1348 | static inline wxWindow *DoGetWindowFromTable(wxWindowHash *hash, Window w) |
83df96d6 | 1349 | { |
b8033a5d VZ |
1350 | wxWindowHash::iterator i = hash->find(w); |
1351 | return i == hash->end() ? NULL : i->second; | |
83df96d6 JS |
1352 | } |
1353 | ||
b8033a5d | 1354 | static inline void DoDeleteWindowFromTable(wxWindowHash *hash, Window w) |
83df96d6 | 1355 | { |
b8033a5d VZ |
1356 | wxLogTrace( wxT("widget"), wxT("XWindow 0x%08x deleted"), (unsigned int) w); |
1357 | ||
1358 | hash->erase(w); | |
83df96d6 JS |
1359 | } |
1360 | ||
1361 | // ---------------------------------------------------------------------------- | |
b8033a5d | 1362 | // public wrappers |
83df96d6 JS |
1363 | // ---------------------------------------------------------------------------- |
1364 | ||
b8033a5d | 1365 | bool wxAddWindowToTable(Window w, wxWindow *win) |
ab6b6b15 | 1366 | { |
b8033a5d VZ |
1367 | return DoAddWindowToTable(wxWidgetHashTable, w, win); |
1368 | } | |
ab6b6b15 | 1369 | |
b8033a5d VZ |
1370 | wxWindow *wxGetWindowFromTable(Window w) |
1371 | { | |
1372 | return DoGetWindowFromTable(wxWidgetHashTable, w); | |
1373 | } | |
ab6b6b15 | 1374 | |
b8033a5d VZ |
1375 | void wxDeleteWindowFromTable(Window w) |
1376 | { | |
1377 | DoDeleteWindowFromTable(wxWidgetHashTable, w); | |
1378 | } | |
83df96d6 | 1379 | |
b8033a5d VZ |
1380 | bool wxAddClientWindowToTable(Window w, wxWindow *win) |
1381 | { | |
1382 | return DoAddWindowToTable(wxClientWidgetHashTable, w, win); | |
ab6b6b15 RR |
1383 | } |
1384 | ||
1385 | wxWindow *wxGetClientWindowFromTable(Window w) | |
83df96d6 | 1386 | { |
b8033a5d | 1387 | return DoGetWindowFromTable(wxClientWidgetHashTable, w); |
83df96d6 JS |
1388 | } |
1389 | ||
ab6b6b15 | 1390 | void wxDeleteClientWindowFromTable(Window w) |
83df96d6 | 1391 | { |
b8033a5d | 1392 | DoDeleteWindowFromTable(wxClientWidgetHashTable, w); |
83df96d6 JS |
1393 | } |
1394 | ||
ab6b6b15 RR |
1395 | // ---------------------------------------------------------------------------- |
1396 | // X11-specific accessors | |
1397 | // ---------------------------------------------------------------------------- | |
1398 | ||
bc797f4c | 1399 | WXWindow wxWindowX11::GetMainWindow() const |
83df96d6 | 1400 | { |
ab6b6b15 RR |
1401 | return m_mainWindow; |
1402 | } | |
1403 | ||
f41bc3e3 | 1404 | WXWindow wxWindowX11::GetClientAreaWindow() const |
ab6b6b15 RR |
1405 | { |
1406 | return m_clientWindow; | |
83df96d6 JS |
1407 | } |
1408 | ||
83df96d6 JS |
1409 | // ---------------------------------------------------------------------------- |
1410 | // TranslateXXXEvent() functions | |
1411 | // ---------------------------------------------------------------------------- | |
1412 | ||
1b0fb34b | 1413 | bool wxTranslateMouseEvent(wxMouseEvent& wxevent, wxWindow *win, Window window, XEvent *xevent) |
83df96d6 | 1414 | { |
461e93f9 | 1415 | switch (XEventGetType(xevent)) |
83df96d6 | 1416 | { |
1b0fb34b JS |
1417 | case EnterNotify: |
1418 | case LeaveNotify: | |
83df96d6 JS |
1419 | case ButtonPress: |
1420 | case ButtonRelease: | |
1421 | case MotionNotify: | |
1422 | { | |
1423 | wxEventType eventType = wxEVT_NULL; | |
1424 | ||
461e93f9 | 1425 | if (XEventGetType(xevent) == EnterNotify) |
83df96d6 | 1426 | { |
1b0fb34b JS |
1427 | //if (local_event.xcrossing.mode!=NotifyNormal) |
1428 | // return ; // Ignore grab events | |
1429 | eventType = wxEVT_ENTER_WINDOW; | |
1430 | // canvas->GetEventHandler()->OnSetFocus(); | |
1431 | } | |
461e93f9 | 1432 | else if (XEventGetType(xevent) == LeaveNotify) |
1b0fb34b JS |
1433 | { |
1434 | //if (local_event.xcrossingr.mode!=NotifyNormal) | |
1435 | // return ; // Ignore grab events | |
1436 | eventType = wxEVT_LEAVE_WINDOW; | |
1437 | // canvas->GetEventHandler()->OnKillFocus(); | |
83df96d6 | 1438 | } |
461e93f9 | 1439 | else if (XEventGetType(xevent) == MotionNotify) |
83df96d6 JS |
1440 | { |
1441 | eventType = wxEVT_MOTION; | |
1442 | } | |
461e93f9 | 1443 | else if (XEventGetType(xevent) == ButtonPress) |
83df96d6 | 1444 | { |
461e93f9 | 1445 | wxevent.SetTimestamp(XButtonEventGetTime(xevent)); |
83df96d6 | 1446 | int button = 0; |
461e93f9 | 1447 | if (XButtonEventLChanged(xevent)) |
83df96d6 JS |
1448 | { |
1449 | eventType = wxEVT_LEFT_DOWN; | |
83df96d6 JS |
1450 | button = 1; |
1451 | } | |
461e93f9 | 1452 | else if (XButtonEventMChanged(xevent)) |
83df96d6 JS |
1453 | { |
1454 | eventType = wxEVT_MIDDLE_DOWN; | |
83df96d6 JS |
1455 | button = 2; |
1456 | } | |
461e93f9 | 1457 | else if (XButtonEventRChanged(xevent)) |
83df96d6 JS |
1458 | { |
1459 | eventType = wxEVT_RIGHT_DOWN; | |
83df96d6 JS |
1460 | button = 3; |
1461 | } | |
1462 | ||
1463 | // check for a double click | |
1b0fb34b | 1464 | // TODO: where can we get this value from? |
b513212d | 1465 | //long dclickTime = XtGetMultiClickTime(wxGlobalDisplay()); |
7266b672 | 1466 | long dclickTime = 200; |
83df96d6 JS |
1467 | long ts = wxevent.GetTimestamp(); |
1468 | ||
1469 | int buttonLast = win->GetLastClickedButton(); | |
1470 | long lastTS = win->GetLastClickTime(); | |
1471 | if ( buttonLast && buttonLast == button && (ts - lastTS) < dclickTime ) | |
1472 | { | |
1473 | // I have a dclick | |
1474 | win->SetLastClick(0, ts); | |
1475 | if ( eventType == wxEVT_LEFT_DOWN ) | |
1476 | eventType = wxEVT_LEFT_DCLICK; | |
1477 | else if ( eventType == wxEVT_MIDDLE_DOWN ) | |
1478 | eventType = wxEVT_MIDDLE_DCLICK; | |
1479 | else if ( eventType == wxEVT_RIGHT_DOWN ) | |
1480 | eventType = wxEVT_RIGHT_DCLICK; | |
1481 | } | |
1482 | else | |
1483 | { | |
1484 | // not fast enough or different button | |
1485 | win->SetLastClick(button, ts); | |
1486 | } | |
1487 | } | |
461e93f9 | 1488 | else if (XEventGetType(xevent) == ButtonRelease) |
83df96d6 | 1489 | { |
461e93f9 | 1490 | if (XButtonEventLChanged(xevent)) |
83df96d6 JS |
1491 | { |
1492 | eventType = wxEVT_LEFT_UP; | |
83df96d6 | 1493 | } |
461e93f9 | 1494 | else if (XButtonEventMChanged(xevent)) |
83df96d6 JS |
1495 | { |
1496 | eventType = wxEVT_MIDDLE_UP; | |
83df96d6 | 1497 | } |
461e93f9 | 1498 | else if (XButtonEventRChanged(xevent)) |
83df96d6 JS |
1499 | { |
1500 | eventType = wxEVT_RIGHT_UP; | |
83df96d6 | 1501 | } |
ffd84c94 | 1502 | else return false; |
83df96d6 JS |
1503 | } |
1504 | else | |
1505 | { | |
ffd84c94 | 1506 | return false; |
83df96d6 JS |
1507 | } |
1508 | ||
1509 | wxevent.SetEventType(eventType); | |
1510 | ||
461e93f9 JS |
1511 | wxevent.m_x = XButtonEventGetX(xevent); |
1512 | wxevent.m_y = XButtonEventGetY(xevent); | |
83df96d6 JS |
1513 | |
1514 | wxevent.m_leftDown = ((eventType == wxEVT_LEFT_DOWN) | |
461e93f9 | 1515 | || (XButtonEventLIsDown(xevent) |
83df96d6 JS |
1516 | && (eventType != wxEVT_LEFT_UP))); |
1517 | wxevent.m_middleDown = ((eventType == wxEVT_MIDDLE_DOWN) | |
461e93f9 | 1518 | || (XButtonEventMIsDown(xevent) |
83df96d6 JS |
1519 | && (eventType != wxEVT_MIDDLE_UP))); |
1520 | wxevent.m_rightDown = ((eventType == wxEVT_RIGHT_DOWN) | |
461e93f9 | 1521 | || (XButtonEventRIsDown (xevent) |
83df96d6 JS |
1522 | && (eventType != wxEVT_RIGHT_UP))); |
1523 | ||
461e93f9 JS |
1524 | wxevent.m_shiftDown = XButtonEventShiftIsDown(xevent); |
1525 | wxevent.m_controlDown = XButtonEventCtrlIsDown(xevent); | |
1526 | wxevent.m_altDown = XButtonEventAltIsDown(xevent); | |
1527 | wxevent.m_metaDown = XButtonEventMetaIsDown(xevent); | |
83df96d6 JS |
1528 | |
1529 | wxevent.SetId(win->GetId()); | |
1530 | wxevent.SetEventObject(win); | |
1531 | ||
ffd84c94 | 1532 | return true; |
83df96d6 JS |
1533 | } |
1534 | } | |
ffd84c94 | 1535 | return false; |
83df96d6 JS |
1536 | } |
1537 | ||
2b5f62a0 | 1538 | bool wxTranslateKeyEvent(wxKeyEvent& wxevent, wxWindow *win, Window WXUNUSED(win), XEvent *xevent, bool isAscii) |
83df96d6 | 1539 | { |
461e93f9 | 1540 | switch (XEventGetType(xevent)) |
83df96d6 JS |
1541 | { |
1542 | case KeyPress: | |
1543 | case KeyRelease: | |
1544 | { | |
1545 | char buf[20]; | |
1546 | ||
1547 | KeySym keySym; | |
83df96d6 JS |
1548 | (void) XLookupString ((XKeyEvent *) xevent, buf, 20, &keySym, NULL); |
1549 | int id = wxCharCodeXToWX (keySym); | |
2b5f62a0 VZ |
1550 | // id may be WXK_xxx code - these are outside ASCII range, so we |
1551 | // can't just use toupper() on id. | |
1552 | // Only change this if we want the raw key that was pressed, | |
1553 | // and don't change it if we want an ASCII value. | |
1554 | if (!isAscii && (id >= 'a' && id <= 'z')) | |
1555 | { | |
1556 | id = id + 'A' - 'a'; | |
1557 | } | |
83df96d6 | 1558 | |
461e93f9 JS |
1559 | wxevent.m_shiftDown = XKeyEventShiftIsDown(xevent); |
1560 | wxevent.m_controlDown = XKeyEventCtrlIsDown(xevent); | |
1561 | wxevent.m_altDown = XKeyEventAltIsDown(xevent); | |
1562 | wxevent.m_metaDown = XKeyEventMetaIsDown(xevent); | |
83df96d6 | 1563 | wxevent.SetEventObject(win); |
2b5f62a0 | 1564 | wxevent.m_keyCode = id; |
461e93f9 | 1565 | wxevent.SetTimestamp(XKeyEventGetTime(xevent)); |
83df96d6 | 1566 | |
461e93f9 JS |
1567 | wxevent.m_x = XKeyEventGetX(xevent); |
1568 | wxevent.m_y = XKeyEventGetY(xevent); | |
83df96d6 | 1569 | |
2b5f62a0 | 1570 | return id > -1; |
83df96d6 JS |
1571 | } |
1572 | default: | |
1573 | break; | |
1574 | } | |
ffd84c94 | 1575 | return false; |
83df96d6 JS |
1576 | } |
1577 | ||
1578 | // ---------------------------------------------------------------------------- | |
1579 | // Colour stuff | |
1580 | // ---------------------------------------------------------------------------- | |
1581 | ||
bc797f4c | 1582 | bool wxWindowX11::SetBackgroundColour(const wxColour& col) |
83df96d6 | 1583 | { |
56cb684a | 1584 | wxWindowBase::SetBackgroundColour(col); |
83df96d6 | 1585 | |
3cd0b8c5 RR |
1586 | Display *xdisplay = (Display*) wxGlobalDisplay(); |
1587 | int xscreen = DefaultScreen( xdisplay ); | |
1588 | Colormap cm = DefaultColormap( xdisplay, xscreen ); | |
1589 | ||
ba696cfa | 1590 | m_backgroundColour.CalcPixel( (WXColormap) cm ); |
7de59551 | 1591 | |
c2c0dabf RR |
1592 | // We don't set the background colour as we paint |
1593 | // the background ourselves. | |
1594 | // XSetWindowBackground( xdisplay, (Window) m_clientWindow, m_backgroundColour.GetPixel() ); | |
7de59551 | 1595 | |
ffd84c94 | 1596 | return true; |
83df96d6 JS |
1597 | } |
1598 | ||
bc797f4c | 1599 | bool wxWindowX11::SetForegroundColour(const wxColour& col) |
83df96d6 JS |
1600 | { |
1601 | if ( !wxWindowBase::SetForegroundColour(col) ) | |
ffd84c94 | 1602 | return false; |
83df96d6 | 1603 | |
ffd84c94 | 1604 | return true; |
83df96d6 JS |
1605 | } |
1606 | ||
83df96d6 JS |
1607 | // ---------------------------------------------------------------------------- |
1608 | // global functions | |
1609 | // ---------------------------------------------------------------------------- | |
1610 | ||
1611 | wxWindow *wxGetActiveWindow() | |
1612 | { | |
1613 | // TODO | |
54385bdb | 1614 | wxFAIL_MSG(wxT("Not implemented")); |
83df96d6 JS |
1615 | return NULL; |
1616 | } | |
1617 | ||
1618 | /* static */ | |
1619 | wxWindow *wxWindowBase::GetCapture() | |
1620 | { | |
1621 | return (wxWindow *)g_captureWindow; | |
1622 | } | |
1623 | ||
1624 | ||
1625 | // Find the wxWindow at the current mouse position, returning the mouse | |
1626 | // position. | |
1627 | wxWindow* wxFindWindowAtPointer(wxPoint& pt) | |
1628 | { | |
1629 | return wxFindWindowAtPoint(wxGetMousePosition()); | |
1630 | } | |
1631 | ||
0cbc5287 | 1632 | void wxGetMouseState(int& rootX, int& rootY, unsigned& maskReturn) |
83df96d6 | 1633 | { |
461e93f9 JS |
1634 | #if wxUSE_NANOX |
1635 | /* TODO */ | |
0cbc5287 MW |
1636 | rootX = rootY = 0; |
1637 | maskReturn = 0; | |
461e93f9 | 1638 | #else |
b513212d | 1639 | Display *display = wxGlobalDisplay(); |
83df96d6 JS |
1640 | Window rootWindow = RootWindowOfScreen (DefaultScreenOfDisplay(display)); |
1641 | Window rootReturn, childReturn; | |
0cbc5287 | 1642 | int winX, winY; |
83df96d6 JS |
1643 | |
1644 | XQueryPointer (display, | |
2b5f62a0 VZ |
1645 | rootWindow, |
1646 | &rootReturn, | |
83df96d6 JS |
1647 | &childReturn, |
1648 | &rootX, &rootY, &winX, &winY, &maskReturn); | |
461e93f9 | 1649 | #endif |
83df96d6 JS |
1650 | } |
1651 | ||
0cbc5287 MW |
1652 | // Get the current mouse position. |
1653 | wxPoint wxGetMousePosition() | |
1654 | { | |
1655 | int x, y; | |
1656 | unsigned mask; | |
1657 | ||
1658 | wxGetMouseState(x, y, mask); | |
1659 | return wxPoint(x, y); | |
1660 | } | |
1661 | ||
1662 | wxMouseState wxGetMouseState() | |
1663 | { | |
1664 | wxMouseState ms; | |
1665 | int x, y; | |
1666 | unsigned mask; | |
1667 | ||
1668 | wxGetMouseState(x, y, mask); | |
1669 | ||
1670 | ms.SetX(x); | |
1671 | ms.SetY(y); | |
1672 | ||
1673 | ms.SetLeftDown(mask & Button1Mask); | |
1674 | ms.SetMiddleDown(mask & Button2Mask); | |
1675 | ms.SetRightDown(mask & Button3Mask); | |
1676 | ||
1677 | ms.SetControlDown(mask & ControlMask); | |
1678 | ms.SetShiftDown(mask & ShiftMask); | |
af1a6227 MW |
1679 | ms.SetAltDown(mask & Mod3Mask); |
1680 | ms.SetMetaDown(mask & Mod1Mask); | |
0cbc5287 MW |
1681 | |
1682 | return ms; | |
1683 | } | |
1684 | ||
83df96d6 JS |
1685 | |
1686 | // ---------------------------------------------------------------------------- | |
1687 | // wxNoOptimize: switch off size optimization | |
1688 | // ---------------------------------------------------------------------------- | |
1689 | ||
1690 | int wxNoOptimize::ms_count = 0; | |
1691 | ||
c2c0dabf RR |
1692 | |
1693 | // ---------------------------------------------------------------------------- | |
1694 | // wxDCModule | |
1695 | // ---------------------------------------------------------------------------- | |
1696 | ||
1697 | class wxWinModule : public wxModule | |
1698 | { | |
1699 | public: | |
b886fae6 VZ |
1700 | wxWinModule() |
1701 | { | |
1702 | // we must be cleaned up before the display is closed | |
1703 | AddDependency(wxClassInfo::FindClass(_T("wxX11DisplayModule"))); | |
1704 | } | |
1705 | ||
1706 | virtual bool OnInit(); | |
1707 | virtual void OnExit(); | |
c2c0dabf RR |
1708 | |
1709 | private: | |
1710 | DECLARE_DYNAMIC_CLASS(wxWinModule) | |
1711 | }; | |
1712 | ||
1713 | IMPLEMENT_DYNAMIC_CLASS(wxWinModule, wxModule) | |
1714 | ||
1715 | bool wxWinModule::OnInit() | |
1716 | { | |
1717 | Display *xdisplay = wxGlobalDisplay(); | |
1718 | int xscreen = DefaultScreen( xdisplay ); | |
1719 | Window xroot = RootWindow( xdisplay, xscreen ); | |
1720 | g_eraseGC = XCreateGC( xdisplay, xroot, 0, NULL ); | |
1721 | XSetFillStyle( xdisplay, g_eraseGC, FillSolid ); | |
7de59551 | 1722 | |
ffd84c94 | 1723 | return true; |
c2c0dabf RR |
1724 | } |
1725 | ||
1726 | void wxWinModule::OnExit() | |
1727 | { | |
1728 | Display *xdisplay = wxGlobalDisplay(); | |
1729 | XFreeGC( xdisplay, g_eraseGC ); | |
1730 | } |