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