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