]>
Commit | Line | Data |
---|---|---|
83df96d6 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: private.h | |
1b0fb34b | 3 | // Purpose: Private declarations for X11 port |
83df96d6 JS |
4 | // Author: Julian Smart |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_PRIVATE_H_ | |
13 | #define _WX_PRIVATE_H_ | |
14 | ||
15 | #include "wx/defs.h" | |
1934d291 | 16 | #include "wx/utils.h" |
7266b672 | 17 | #include "X11/Xlib.h" |
1b0b798d RR |
18 | #include "X11/Xatom.h" |
19 | #include "X11/Xutil.h" | |
83df96d6 | 20 | |
5e29f97a JS |
21 | // Include common declarations |
22 | #include "x11/privx.h" | |
23 | ||
83df96d6 JS |
24 | class wxMouseEvent; |
25 | class wxKeyEvent; | |
1934d291 | 26 | class wxWindow; |
83df96d6 | 27 | |
83df96d6 JS |
28 | // ---------------------------------------------------------------------------- |
29 | // we maintain a hash table which contains the mapping from Widget to wxWindow | |
30 | // corresponding to the window for this widget | |
31 | // ---------------------------------------------------------------------------- | |
32 | ||
1b0fb34b JS |
33 | extern void wxDeleteWindowFromTable(Window w); |
34 | extern wxWindow *wxGetWindowFromTable(Window w); | |
35 | extern bool wxAddWindowToTable(Window w, wxWindow *win); | |
83df96d6 JS |
36 | |
37 | // ---------------------------------------------------------------------------- | |
5e29f97a | 38 | // TranslateXXXEvent() functions - translate X event to wxWindow one |
83df96d6 | 39 | // ---------------------------------------------------------------------------- |
1b0fb34b JS |
40 | extern bool wxTranslateMouseEvent(wxMouseEvent& wxevent, wxWindow *win, Window window, XEvent *xevent); |
41 | extern bool wxTranslateKeyEvent(wxKeyEvent& wxevent, wxWindow *win, Window window, XEvent *xevent); | |
83df96d6 | 42 | |
b513212d JS |
43 | extern Window wxGetWindowParent(Window window); |
44 | ||
b28d3abf JS |
45 | // Set the window manager decorations according to the |
46 | // given wxWindows style | |
47 | bool wxSetWMDecorations(Window w, long style); | |
48 | bool wxMWMIsRunning(Window w); | |
49 | ||
83df96d6 JS |
50 | #endif |
51 | // _WX_PRIVATE_H_ |