]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: private.h | |
3 | // Purpose: Private declarations for X11 port | |
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" | |
16 | #include "wx/utils.h" | |
17 | #include "X11/Xlib.h" | |
18 | #include "X11/Xatom.h" | |
19 | #include "X11/Xutil.h" | |
20 | ||
21 | // Include common declarations | |
22 | #include "wx/x11/privx.h" | |
23 | ||
24 | #if wxUSE_UNICODE | |
25 | #include "pango/pango.h" | |
26 | #endif | |
27 | ||
28 | class wxMouseEvent; | |
29 | class wxKeyEvent; | |
30 | class wxWindow; | |
31 | ||
32 | // ---------------------------------------------------------------------------- | |
33 | // Some Unicode <-> UTF8 macros stolen from GTK | |
34 | // ---------------------------------------------------------------------------- | |
35 | ||
36 | #if wxUSE_UNICODE | |
37 | #define wxGTK_CONV(s) wxConvUTF8.cWX2MB(s) | |
38 | #define wxGTK_CONV_BACK(s) wxConvUTF8.cMB2WX(s) | |
39 | #else | |
40 | #define wxGTK_CONV(s) s.c_str() | |
41 | #define wxGTK_CONV_BACK(s) s | |
42 | #endif | |
43 | ||
44 | // ---------------------------------------------------------------------------- | |
45 | // we maintain a hash table which contains the mapping from Widget to wxWindow | |
46 | // corresponding to the window for this widget | |
47 | // ---------------------------------------------------------------------------- | |
48 | ||
49 | extern void wxDeleteWindowFromTable(Window w); | |
50 | extern wxWindow *wxGetWindowFromTable(Window w); | |
51 | extern bool wxAddWindowToTable(Window w, wxWindow *win); | |
52 | ||
53 | extern void wxDeleteClientWindowFromTable(Window w); | |
54 | extern wxWindow *wxGetClientWindowFromTable(Window w); | |
55 | extern bool wxAddClientWindowToTable(Window w, wxWindow *win); | |
56 | ||
57 | // ---------------------------------------------------------------------------- | |
58 | // TranslateXXXEvent() functions - translate X event to wxWindow one | |
59 | // ---------------------------------------------------------------------------- | |
60 | extern bool wxTranslateMouseEvent(wxMouseEvent& wxevent, wxWindow *win, Window window, XEvent *xevent); | |
61 | extern bool wxTranslateKeyEvent(wxKeyEvent& wxevent, wxWindow *win, Window window, XEvent *xevent, bool isAscii = FALSE); | |
62 | ||
63 | extern Window wxGetWindowParent(Window window); | |
64 | ||
65 | // Set the window manager decorations according to the | |
66 | // given wxWindows style | |
67 | bool wxSetWMDecorations(Window w, long style); | |
68 | bool wxMWMIsRunning(Window w); | |
69 | ||
70 | #endif | |
71 | // _WX_PRIVATE_H_ |