]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: data.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
dbf858b5 RR |
5 | // Id: $Id$ |
6 | // Copyright: (c) 1998 Robert Roebling | |
a3622daa | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | ||
11 | #ifdef __GNUG__ | |
12 | // #pragma implementation | |
13 | #endif | |
14 | ||
bcf1fa6b RR |
15 | #include "wx/defs.h" |
16 | #include "wx/object.h" | |
17 | #include "wx/window.h" | |
18 | #include "wx/dc.h" | |
19 | #include "wx/accel.h" | |
bf38cbff | 20 | #include "wx/dcps.h" |
c801d85f KB |
21 | |
22 | #define _MAXPATHLEN 500 | |
23 | ||
83624f79 | 24 | /* Used for X resources */ |
c801d85f KB |
25 | #include <X11/Xlib.h> |
26 | #include <X11/Xutil.h> | |
27 | #include <X11/Xresource.h> | |
28 | ||
c67daf87 | 29 | wxResourceCache *wxTheResourceCache = (wxResourceCache *) NULL; |
c801d85f KB |
30 | XrmDatabase wxResourceDatabase; |
31 | ||
83624f79 | 32 | /* Useful buffer, initialized in wxCommonInit */ |
c67daf87 | 33 | char *wxBuffer = (char *) NULL; |
c801d85f | 34 | |
83624f79 | 35 | /* Windows List */ |
e146b8c8 | 36 | wxWindowList wxTopLevelWindows; |
c801d85f | 37 | |
83624f79 | 38 | /* List of windows pending deletion */ |
c801d85f KB |
39 | wxList wxPendingDelete; |
40 | ||
7214297d GL |
41 | #if wxUSE_THREADS |
42 | /* List of events pending processing */ | |
4d3a259a GL |
43 | wxList *wxPendingEvents = NULL; |
44 | wxCriticalSection *wxPendingEventsLocker = NULL; | |
7214297d GL |
45 | #endif |
46 | ||
83624f79 RR |
47 | /* Current cursor, in order to hang on to |
48 | * cursor handle when setting the cursor globally */ | |
c67daf87 | 49 | wxCursor *g_globalCursor = (wxCursor *) NULL; |
c801d85f | 50 | |
83624f79 | 51 | /* Don't allow event propagation during drag */ |
c801d85f KB |
52 | bool g_blockEventsOnDrag = FALSE; |
53 | ||
83624f79 | 54 | /* Don't allow mouse event propagation during scroll */ |
76ed8f8d RR |
55 | bool g_blockEventsOnScroll = FALSE; |
56 | ||
acfd422a RR |
57 | /* TRUE when the message queue is empty. this gets set to |
58 | FALSE by all event callbacks before anything else is done */ | |
59 | bool g_isIdle = FALSE; | |
60 | ||
83624f79 | 61 | /* Message Strings for Internationalization */ |
c801d85f KB |
62 | char **wx_msg_str = (char**)NULL; |
63 | ||
83624f79 RR |
64 | /* Custom OS version, as optionally placed in wx.ini/.wxrc |
65 | * Currently this can be Win95, Windows, Win32s, WinNT. | |
66 | * For some systems, you can't tell until run-time what services you | |
67 | * have. See wxGetOsVersion, which uses this string if present. */ | |
c67daf87 | 68 | char *wxOsVersion = (char *) NULL; |
c801d85f | 69 | |
83624f79 | 70 | /* For printing several pages */ |
c801d85f | 71 | int wxPageNumber; |
2a47d3c1 JS |
72 | |
73 | // Now in prntbase.cpp | |
74 | // wxPrintPaperDatabase* wxThePrintPaperDatabase = (wxPrintPaperDatabase *) NULL; | |
c801d85f | 75 | |
83624f79 | 76 | /* GDI Object Lists */ |
c67daf87 UR |
77 | wxBrushList *wxTheBrushList = (wxBrushList *) NULL; |
78 | wxPenList *wxThePenList = (wxPenList *) NULL; | |
79 | wxFontList *wxTheFontList = (wxFontList *) NULL; | |
80 | wxColourDatabase *wxTheColourDatabase = (wxColourDatabase *) NULL; | |
83624f79 | 81 | wxBitmapList *wxTheBitmapList = (wxBitmapList *) NULL; |
e146b8c8 | 82 | |
83624f79 | 83 | /* X only font names */ |
36b3b54a | 84 | /* |
a3622daa | 85 | wxFontNameDirectory *wxTheFontNameDirectory; |
36b3b54a | 86 | */ |
c801d85f | 87 | |
83624f79 | 88 | /* Stock objects */ |
c801d85f KB |
89 | wxFont *wxNORMAL_FONT; |
90 | wxFont *wxSMALL_FONT; | |
91 | wxFont *wxITALIC_FONT; | |
92 | wxFont *wxSWISS_FONT; | |
93 | ||
94 | wxPen *wxRED_PEN; | |
95 | wxPen *wxCYAN_PEN; | |
96 | wxPen *wxGREEN_PEN; | |
97 | wxPen *wxBLACK_PEN; | |
98 | wxPen *wxWHITE_PEN; | |
99 | wxPen *wxTRANSPARENT_PEN; | |
100 | wxPen *wxBLACK_DASHED_PEN; | |
101 | wxPen *wxGREY_PEN; | |
102 | wxPen *wxMEDIUM_GREY_PEN; | |
103 | wxPen *wxLIGHT_GREY_PEN; | |
104 | ||
105 | wxBrush *wxBLUE_BRUSH; | |
106 | wxBrush *wxGREEN_BRUSH; | |
107 | wxBrush *wxWHITE_BRUSH; | |
108 | wxBrush *wxBLACK_BRUSH; | |
109 | wxBrush *wxTRANSPARENT_BRUSH; | |
110 | wxBrush *wxCYAN_BRUSH; | |
111 | wxBrush *wxRED_BRUSH; | |
112 | wxBrush *wxGREY_BRUSH; | |
113 | wxBrush *wxMEDIUM_GREY_BRUSH; | |
114 | wxBrush *wxLIGHT_GREY_BRUSH; | |
115 | ||
116 | wxColour *wxBLACK; | |
117 | wxColour *wxWHITE; | |
e146b8c8 | 118 | wxColour *wxGREY; |
c801d85f KB |
119 | wxColour *wxRED; |
120 | wxColour *wxBLUE; | |
121 | wxColour *wxGREEN; | |
122 | wxColour *wxCYAN; | |
123 | wxColour *wxLIGHT_GREY; | |
124 | ||
c67daf87 UR |
125 | wxCursor *wxSTANDARD_CURSOR = (wxCursor *) NULL; |
126 | wxCursor *wxHOURGLASS_CURSOR = (wxCursor *) NULL; | |
127 | wxCursor *wxCROSS_CURSOR = (wxCursor *) NULL; | |
c801d85f | 128 | |
83624f79 | 129 | /* 'Null' objects */ |
bcf1fa6b RR |
130 | wxAcceleratorTable wxNullAcceleratorTable; |
131 | wxBitmap wxNullBitmap; | |
e146b8c8 | 132 | wxIcon wxNullIcon; |
bcf1fa6b RR |
133 | wxCursor wxNullCursor; |
134 | wxPen wxNullPen; | |
135 | wxBrush wxNullBrush; | |
136 | wxFont wxNullFont; | |
137 | wxColour wxNullColour; | |
e146b8c8 | 138 | wxPalette wxNullPalette; |
c801d85f | 139 | |
83624f79 | 140 | /* Default window names */ |
93c5dd39 OK |
141 | const wxChar *wxButtonNameStr = _T("button"); |
142 | const wxChar *wxCanvasNameStr = _T("canvas"); | |
143 | const wxChar *wxCheckBoxNameStr = _T("check"); | |
144 | const wxChar *wxChoiceNameStr = _T("choice"); | |
145 | const wxChar *wxComboBoxNameStr = _T("comboBox"); | |
146 | const wxChar *wxDialogNameStr = _T("dialog"); | |
147 | const wxChar *wxFrameNameStr = _T("frame"); | |
148 | const wxChar *wxGaugeNameStr = _T("gauge"); | |
149 | const wxChar *wxStaticBoxNameStr = _T("groupBox"); | |
150 | const wxChar *wxListBoxNameStr = _T("listBox"); | |
151 | const wxChar *wxStaticTextNameStr = _T("message"); | |
152 | const wxChar *wxStaticBitmapNameStr = _T("message"); | |
153 | const wxChar *wxMultiTextNameStr = _T("multitext"); | |
154 | const wxChar *wxPanelNameStr = _T("panel"); | |
155 | const wxChar *wxRadioBoxNameStr = _T("radioBox"); | |
156 | const wxChar *wxRadioButtonNameStr = _T("radioButton"); | |
157 | const wxChar *wxBitmapRadioButtonNameStr = _T("radioButton"); | |
158 | const wxChar *wxScrollBarNameStr = _T("scrollBar"); | |
159 | const wxChar *wxSliderNameStr = _T("slider"); | |
160 | const wxChar *wxStaticNameStr = _T("static"); | |
161 | const wxChar *wxTextCtrlWindowNameStr = _T("textWindow"); | |
162 | const wxChar *wxTextCtrlNameStr = _T("text"); | |
163 | const wxChar *wxVirtListBoxNameStr = _T("virtListBox"); | |
164 | const wxChar *wxButtonBarNameStr = _T("buttonbar"); | |
165 | const wxChar *wxEnhDialogNameStr = _T("Shell"); | |
166 | const wxChar *wxToolBarNameStr = _T("toolbar"); | |
167 | const wxChar *wxStatusLineNameStr = _T("status_line"); | |
168 | const wxChar *wxEmptyString = _T(""); | |
169 | const wxChar *wxGetTextFromUserPromptStr = _T("Input Text"); | |
170 | const wxChar *wxMessageBoxCaptionStr = _T("Message"); | |
171 | const wxChar *wxFileSelectorPromptStr = _T("Select a file"); | |
172 | const wxChar *wxFileSelectorDefaultWildcardStr = _T("*.*"); | |
173 | const wxChar *wxInternalErrorStr = _T("wxWindows Internal Error"); | |
174 | const wxChar *wxFatalErrorStr = _T("wxWindows Fatal Error"); | |
c801d85f | 175 | |
83624f79 | 176 | /* See wx/utils.h */ |
93c5dd39 OK |
177 | const wxChar *wxFloatToStringStr = _T("%.2f"); |
178 | const wxChar *wxDoubleToStringStr = _T("%.2f"); | |
c801d85f | 179 | |
83624f79 | 180 | /* Dafaults for wxWindow etc. */ |
c801d85f KB |
181 | const wxSize wxDefaultSize(-1, -1); |
182 | const wxPoint wxDefaultPosition(-1, -1); |