1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
12 // #pragma implementation
16 #include "wx/object.h"
17 #include "wx/window.h"
23 #define _MAXPATHLEN 500
25 /* Used for X resources */
27 #include <X11/Xutil.h>
28 #include <X11/Xresource.h>
30 wxResourceCache
*wxTheResourceCache
= (wxResourceCache
*) NULL
;
31 XrmDatabase wxResourceDatabase
;
33 /* Useful buffer, initialized in wxCommonInit */
34 wxChar
*wxBuffer
= (wxChar
*) NULL
;
37 wxWindowList wxTopLevelWindows
;
39 /* List of windows pending deletion */
40 wxList wxPendingDelete
;
42 /* Current cursor, in order to hang on to
43 * cursor handle when setting the cursor globally */
44 wxCursor g_globalCursor
;
46 /* Don't allow event propagation during drag */
47 bool g_blockEventsOnDrag
= FALSE
;
49 /* Don't allow mouse event propagation during scroll */
50 bool g_blockEventsOnScroll
= FALSE
;
52 /* TRUE when the message queue is empty. this gets set to
53 FALSE by all event callbacks before anything else is done */
54 bool g_isIdle
= FALSE
;
56 /* Message Strings for Internationalization */
57 char **wx_msg_str
= (char**)NULL
;
59 /* Custom OS version, as optionally placed in wx.ini/.wxrc
60 * Currently this can be Win95, Windows, Win32s, WinNT.
61 * For some systems, you can't tell until run-time what services you
62 * have. See wxGetOsVersion, which uses this string if present. */
63 char *wxOsVersion
= (char *) NULL
;
65 /* For printing several pages */
68 // Now in prntbase.cpp
69 // wxPrintPaperDatabase* wxThePrintPaperDatabase = (wxPrintPaperDatabase *) NULL;
71 /* GDI Object Lists */
72 wxBrushList
*wxTheBrushList
= (wxBrushList
*) NULL
;
73 wxPenList
*wxThePenList
= (wxPenList
*) NULL
;
74 wxFontList
*wxTheFontList
= (wxFontList
*) NULL
;
75 wxColourDatabase
*wxTheColourDatabase
= (wxColourDatabase
*) NULL
;
76 wxBitmapList
*wxTheBitmapList
= (wxBitmapList
*) NULL
;
78 /* X only font names */
80 wxFontNameDirectory *wxTheFontNameDirectory;
84 wxFont
*wxNORMAL_FONT
;
86 wxFont
*wxITALIC_FONT
;
94 wxPen
*wxTRANSPARENT_PEN
;
95 wxPen
*wxBLACK_DASHED_PEN
;
97 wxPen
*wxMEDIUM_GREY_PEN
;
98 wxPen
*wxLIGHT_GREY_PEN
;
100 wxBrush
*wxBLUE_BRUSH
;
101 wxBrush
*wxGREEN_BRUSH
;
102 wxBrush
*wxWHITE_BRUSH
;
103 wxBrush
*wxBLACK_BRUSH
;
104 wxBrush
*wxTRANSPARENT_BRUSH
;
105 wxBrush
*wxCYAN_BRUSH
;
106 wxBrush
*wxRED_BRUSH
;
107 wxBrush
*wxGREY_BRUSH
;
108 wxBrush
*wxMEDIUM_GREY_BRUSH
;
109 wxBrush
*wxLIGHT_GREY_BRUSH
;
118 wxColour
*wxLIGHT_GREY
;
120 wxCursor
*wxSTANDARD_CURSOR
= (wxCursor
*) NULL
;
121 wxCursor
*wxHOURGLASS_CURSOR
= (wxCursor
*) NULL
;
122 wxCursor
*wxCROSS_CURSOR
= (wxCursor
*) NULL
;
126 wxAcceleratorTable wxNullAcceleratorTable
;
127 #endif // wxUSE_ACCEL
129 wxBitmap wxNullBitmap
;
131 wxCursor wxNullCursor
;
135 wxColour wxNullColour
;
136 wxPalette wxNullPalette
;
138 /* Default window names */
139 const wxChar
*wxButtonNameStr
= wxT("button");
140 const wxChar
*wxCanvasNameStr
= wxT("canvas");
141 const wxChar
*wxCheckBoxNameStr
= wxT("check");
142 const wxChar
*wxChoiceNameStr
= wxT("choice");
143 const wxChar
*wxComboBoxNameStr
= wxT("comboBox");
144 const wxChar
*wxDialogNameStr
= wxT("dialog");
145 const wxChar
*wxFrameNameStr
= wxT("frame");
146 const wxChar
*wxGaugeNameStr
= wxT("gauge");
147 const wxChar
*wxStaticBoxNameStr
= wxT("groupBox");
148 const wxChar
*wxListBoxNameStr
= wxT("listBox");
149 const wxChar
*wxStaticTextNameStr
= wxT("message");
150 const wxChar
*wxStaticBitmapNameStr
= wxT("message");
151 const wxChar
*wxMultiTextNameStr
= wxT("multitext");
152 const wxChar
*wxPanelNameStr
= wxT("panel");
153 const wxChar
*wxRadioBoxNameStr
= wxT("radioBox");
154 const wxChar
*wxRadioButtonNameStr
= wxT("radioButton");
155 const wxChar
*wxBitmapRadioButtonNameStr
= wxT("radioButton");
156 const wxChar
*wxScrollBarNameStr
= wxT("scrollBar");
157 const wxChar
*wxSliderNameStr
= wxT("slider");
158 const wxChar
*wxStaticNameStr
= wxT("static");
159 const wxChar
*wxTextCtrlWindowNameStr
= wxT("textWindow");
160 const wxChar
*wxTextCtrlNameStr
= wxT("text");
161 const wxChar
*wxVirtListBoxNameStr
= wxT("virtListBox");
162 const wxChar
*wxButtonBarNameStr
= wxT("buttonbar");
163 const wxChar
*wxEnhDialogNameStr
= wxT("Shell");
164 const wxChar
*wxToolBarNameStr
= wxT("toolbar");
165 const wxChar
*wxStatusLineNameStr
= wxT("status_line");
166 const wxChar
*wxGetTextFromUserPromptStr
= wxT("Input Text");
167 const wxChar
*wxMessageBoxCaptionStr
= wxT("Message");
168 const wxChar
*wxFileSelectorPromptStr
= wxT("Select a file");
169 const wxChar
*wxFileSelectorDefaultWildcardStr
= wxT("*");
170 const wxChar
*wxInternalErrorStr
= wxT("wxWindows Internal Error");
171 const wxChar
*wxFatalErrorStr
= wxT("wxWindows Fatal Error");
172 const wxChar
*wxDirDialogNameStr
= wxT("wxDirCtrl");
173 const wxChar
*wxDirDialogDefaultFolderStr
= wxT("/");
176 const wxChar
*wxFloatToStringStr
= wxT("%.2f");
177 const wxChar
*wxDoubleToStringStr
= wxT("%.2f");
179 /* Dafaults for wxWindow etc. */
180 const wxSize
wxDefaultSize(-1, -1);
181 const wxPoint
wxDefaultPosition(-1, -1);