]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: data.cpp | |
3 | // Purpose: Various data | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation | |
14 | #endif | |
15 | ||
16 | // For compilers that support precompilation, includes "wx.h". | |
17 | #include "wx/wxprec.h" | |
18 | ||
19 | #ifdef __BORLANDC__ | |
20 | #pragma hdrstop | |
21 | #endif | |
22 | ||
23 | #ifndef WX_PRECOMP | |
24 | #include "wx/wx.h" | |
25 | #endif | |
26 | ||
27 | #define _MAXPATHLEN 500 | |
28 | ||
29 | // Useful buffer, initialized in wxCommonInit | |
30 | char *wxBuffer = NULL; | |
31 | ||
32 | // Windows List | |
33 | wxList wxTopLevelWindows; | |
34 | ||
35 | // List of windows pending deletion | |
36 | wxList wxPendingDelete; | |
37 | ||
38 | // Current cursor, in order to hang on to | |
39 | // cursor handle when setting the cursor globally | |
40 | wxCursor *g_globalCursor = NULL; | |
41 | ||
42 | // Message Strings for Internationalization | |
43 | char **wx_msg_str = (char**)NULL; | |
44 | ||
45 | // Custom OS version, as optionally placed in wx.ini/.wxrc | |
46 | // Currently this can be Win95, Windows, Win32s, WinNT. | |
47 | // For some systems, you can't tell until run-time what services you | |
48 | // have. See wxGetOsVersion, which uses this string if present. | |
49 | char *wxOsVersion = NULL; | |
50 | ||
51 | int wxPageNumber; | |
52 | ||
53 | // GDI Object Lists | |
54 | wxBrushList *wxTheBrushList = NULL; | |
55 | wxPenList *wxThePenList = NULL; | |
56 | wxFontList *wxTheFontList = NULL; | |
57 | wxBitmapList *wxTheBitmapList = NULL; | |
58 | ||
59 | wxColourDatabase *wxTheColourDatabase = NULL; | |
60 | ||
61 | // Stock objects | |
62 | wxFont *wxNORMAL_FONT; | |
63 | wxFont *wxSMALL_FONT; | |
64 | wxFont *wxITALIC_FONT; | |
65 | wxFont *wxSWISS_FONT; | |
66 | wxPen *wxRED_PEN; | |
67 | ||
68 | wxPen *wxCYAN_PEN; | |
69 | wxPen *wxGREEN_PEN; | |
70 | wxPen *wxBLACK_PEN; | |
71 | wxPen *wxWHITE_PEN; | |
72 | wxPen *wxTRANSPARENT_PEN; | |
73 | wxPen *wxBLACK_DASHED_PEN; | |
74 | wxPen *wxGREY_PEN; | |
75 | wxPen *wxMEDIUM_GREY_PEN; | |
76 | wxPen *wxLIGHT_GREY_PEN; | |
77 | ||
78 | wxBrush *wxBLUE_BRUSH; | |
79 | wxBrush *wxGREEN_BRUSH; | |
80 | wxBrush *wxWHITE_BRUSH; | |
81 | wxBrush *wxBLACK_BRUSH; | |
82 | wxBrush *wxTRANSPARENT_BRUSH; | |
83 | wxBrush *wxCYAN_BRUSH; | |
84 | wxBrush *wxRED_BRUSH; | |
85 | wxBrush *wxGREY_BRUSH; | |
86 | wxBrush *wxMEDIUM_GREY_BRUSH; | |
87 | wxBrush *wxLIGHT_GREY_BRUSH; | |
88 | ||
89 | wxColour *wxBLACK; | |
90 | wxColour *wxWHITE; | |
91 | wxColour *wxRED; | |
92 | wxColour *wxBLUE; | |
93 | wxColour *wxGREEN; | |
94 | wxColour *wxCYAN; | |
95 | wxColour *wxLIGHT_GREY; | |
96 | ||
97 | wxCursor *wxSTANDARD_CURSOR = NULL; | |
98 | wxCursor *wxHOURGLASS_CURSOR = NULL; | |
99 | wxCursor *wxCROSS_CURSOR = NULL; | |
100 | ||
101 | // 'Null' objects | |
102 | wxBitmap wxNullBitmap; | |
103 | wxIcon wxNullIcon; | |
104 | wxCursor wxNullCursor; | |
105 | wxPen wxNullPen; | |
106 | wxBrush wxNullBrush; | |
107 | wxPalette wxNullPalette; | |
108 | wxFont wxNullFont; | |
109 | wxColour wxNullColour; | |
110 | ||
111 | // Default window names | |
112 | const char *wxButtonNameStr = "button"; | |
113 | const char *wxCanvasNameStr = "canvas"; | |
114 | const char *wxCheckBoxNameStr = "check"; | |
115 | const char *wxChoiceNameStr = "choice"; | |
116 | const char *wxComboBoxNameStr = "comboBox"; | |
117 | const char *wxDialogNameStr = "dialog"; | |
118 | const char *wxFrameNameStr = "frame"; | |
119 | const char *wxGaugeNameStr = "gauge"; | |
120 | const char *wxStaticBoxNameStr = "groupBox"; | |
121 | const char *wxListBoxNameStr = "listBox"; | |
122 | const char *wxStaticTextNameStr = "message"; | |
123 | const char *wxStaticBitmapNameStr = "message"; | |
124 | const char *wxMultiTextNameStr = "multitext"; | |
125 | const char *wxPanelNameStr = "panel"; | |
126 | const char *wxRadioBoxNameStr = "radioBox"; | |
127 | const char *wxRadioButtonNameStr = "radioButton"; | |
128 | const char *wxBitmapRadioButtonNameStr = "radioButton"; | |
129 | const char *wxScrollBarNameStr = "scrollBar"; | |
130 | const char *wxSliderNameStr = "slider"; | |
131 | const char *wxStaticNameStr = "static"; | |
132 | const char *wxTextCtrlWindowNameStr = "textWindow"; | |
133 | const char *wxTextCtrlNameStr = "text"; | |
134 | const char *wxVirtListBoxNameStr = "virtListBox"; | |
135 | const char *wxButtonBarNameStr = "buttonbar"; | |
136 | const char *wxEnhDialogNameStr = "Shell"; | |
137 | const char *wxToolBarNameStr = "toolbar"; | |
138 | const char *wxStatusLineNameStr = "status_line"; | |
139 | const char *wxEmptyString = ""; | |
140 | const char *wxGetTextFromUserPromptStr = "Input Text"; | |
141 | const char *wxMessageBoxCaptionStr = "Message"; | |
142 | const char *wxFileSelectorPromptStr = "Select a file"; | |
143 | const char *wxFileSelectorDefaultWildcardStr = "*.*"; | |
144 | const char *wxInternalErrorStr = "wxWindows Internal Error"; | |
145 | const char *wxFatalErrorStr = "wxWindows Fatal Error"; | |
146 | ||
147 | // See wx/utils.h | |
148 | const char *wxFloatToStringStr = "%.2f"; | |
149 | const char *wxDoubleToStringStr = "%.2f"; | |
150 | ||
2049ba38 | 151 | #ifdef __WXMSW__ |
2bda0e17 KB |
152 | const char *wxUserResourceStr = "TEXT"; |
153 | #endif | |
154 | ||
26a87b69 JS |
155 | #if USE_POSTSCRIPT |
156 | wxPrintPaperDatabase* wxThePrintPaperDatabase = NULL; | |
157 | #endif | |
2bda0e17 KB |
158 | |
159 | #if USE_SHARED_LIBRARY | |
160 | /* | |
161 | * For wxWindows to be made into a dynamic library (e.g. Sun), | |
162 | * all IMPLEMENT_... macros must be in one place. | |
163 | * But normally, the definitions are in the appropriate places. | |
164 | */ | |
165 | ||
166 | // Hand-coded IMPLEMENT... macro for wxObject (define static data) | |
167 | wxClassInfo wxObject::classwxObject("wxObject", NULL, NULL, sizeof(wxObject), NULL); | |
168 | wxClassInfo *wxClassInfo::first = NULL; | |
169 | ||
170 | #include "wx/button.h" | |
171 | #include "wx/bmpbuttn.h" | |
172 | IMPLEMENT_DYNAMIC_CLASS(wxButton, wxControl) | |
173 | IMPLEMENT_DYNAMIC_CLASS(wxBitmapButton, wxButton) | |
174 | ||
175 | #include "wx/checkbox.h" | |
176 | IMPLEMENT_DYNAMIC_CLASS(wxCheckBox, wxControl) | |
177 | IMPLEMENT_DYNAMIC_CLASS(wxBitmapCheckBox, wxCheckBox) | |
178 | ||
179 | #include "wx/choice.h" | |
180 | IMPLEMENT_DYNAMIC_CLASS(wxChoice, wxControl) | |
181 | ||
182 | #if USE_CLIPBOARD | |
183 | #include "wx/clipbrd.h" | |
184 | IMPLEMENT_DYNAMIC_CLASS(wxClipboard, wxObject) | |
185 | IMPLEMENT_ABSTRACT_CLASS(wxClipboardClient, wxObject) | |
186 | #endif | |
187 | ||
188 | #if USE_COMBOBOX | |
189 | #include "wx/combobox.h" | |
190 | IMPLEMENT_DYNAMIC_CLASS(wxComboBox, wxControl) | |
191 | #endif | |
192 | ||
193 | #include "wx/dc.h" | |
194 | #include "wx/dcmemory.h" | |
195 | #include "wx/dcclient.h" | |
196 | #include "wx/dcscreen.h" | |
197 | IMPLEMENT_ABSTRACT_CLASS(wxDC, wxObject) | |
198 | IMPLEMENT_DYNAMIC_CLASS(wxClientDC, wxDC) | |
199 | IMPLEMENT_DYNAMIC_CLASS(wxWindowDC, wxDC) | |
200 | IMPLEMENT_DYNAMIC_CLASS(wxPaintDC, wxDC) | |
201 | IMPLEMENT_DYNAMIC_CLASS(wxMemoryDC, wxDC) | |
202 | IMPLEMENT_DYNAMIC_CLASS(wxScreenDC, wxWindowDC) | |
203 | ||
2049ba38 | 204 | #if defined(__WXMSW__) |
2bda0e17 KB |
205 | #include "wx/dcprint.h" |
206 | IMPLEMENT_CLASS(wxPrinterDC, wxDC) | |
207 | #endif | |
208 | ||
209 | #include "wx/dialog.h" | |
210 | IMPLEMENT_DYNAMIC_CLASS(wxDialog, wxWindow) | |
211 | ||
212 | #include "wx/frame.h" | |
213 | IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxWindow) | |
214 | ||
215 | #include "wx/mdi.h" | |
216 | IMPLEMENT_DYNAMIC_CLASS(wxMDIParentFrame, wxFrame) | |
217 | IMPLEMENT_DYNAMIC_CLASS(wxMDIChildFrame, wxFrame) | |
218 | IMPLEMENT_DYNAMIC_CLASS(wxMDIClientWindow, wxWindow) | |
219 | ||
220 | #include "wx/cmndata.h" | |
221 | IMPLEMENT_DYNAMIC_CLASS(wxColourData, wxObject) | |
222 | IMPLEMENT_DYNAMIC_CLASS(wxFontData, wxObject) | |
223 | IMPLEMENT_DYNAMIC_CLASS(wxPrintData, wxObject) | |
224 | ||
225 | #include "wx/colordlg.h" | |
226 | #include "wx/fontdlg.h" | |
227 | ||
2049ba38 | 228 | #if !defined(__WXMSW__) || USE_GENERIC_DIALOGS_IN_MSW |
2bda0e17 KB |
229 | #include "wx/generic/colordlg.h" |
230 | #include "wx/generic/fontdlg.h" | |
231 | IMPLEMENT_DYNAMIC_CLASS(wxGenericColourDialog, wxDialog) | |
232 | IMPLEMENT_DYNAMIC_CLASS(wxGenericFontDialog, wxDialog) | |
233 | #endif | |
234 | ||
235 | // X defines wxColourDialog to be wxGenericColourDialog | |
236 | #ifndef __X__ | |
237 | IMPLEMENT_DYNAMIC_CLASS(wxColourDialog, wxDialog) | |
238 | IMPLEMENT_DYNAMIC_CLASS(wxFontDialog, wxDialog) | |
239 | #endif | |
240 | ||
241 | #include "wx/gdicmn.h" | |
242 | #include "wx/pen.h" | |
243 | #include "wx/brush.h" | |
244 | #include "wx/font.h" | |
245 | #include "wx/palette.h" | |
246 | #include "wx/icon.h" | |
247 | #include "wx/cursor.h" | |
248 | ||
249 | IMPLEMENT_DYNAMIC_CLASS(wxColour, wxObject) | |
250 | IMPLEMENT_CLASS(wxColourDatabase, wxList) | |
251 | IMPLEMENT_DYNAMIC_CLASS(wxFontList, wxList) | |
252 | IMPLEMENT_DYNAMIC_CLASS(wxPenList, wxList) | |
253 | IMPLEMENT_DYNAMIC_CLASS(wxBrushList, wxList) | |
254 | IMPLEMENT_DYNAMIC_CLASS(wxBitmapList, wxList) | |
255 | ||
6a6c0a8b | 256 | /* |
2bda0e17 KB |
257 | #if (!USE_TYPEDEFS) |
258 | IMPLEMENT_DYNAMIC_CLASS(wxPoint, wxObject) | |
259 | IMPLEMENT_DYNAMIC_CLASS(wxRealPoint, wxObject) | |
260 | #endif | |
6a6c0a8b | 261 | */ |
2bda0e17 KB |
262 | |
263 | #include "wx/hash.h" | |
264 | IMPLEMENT_DYNAMIC_CLASS(wxHashTable, wxObject) | |
265 | ||
266 | #include "wx/helpbase.h" | |
267 | IMPLEMENT_CLASS(wxHelpControllerBase, wxObject) | |
268 | ||
269 | #if USE_HELP | |
270 | ||
2049ba38 | 271 | #ifdef __WXMSW__ |
2bda0e17 KB |
272 | #include "wx/msw/helpwin.h" |
273 | IMPLEMENT_DYNAMIC_CLASS(wxWinHelpController, wxHelpControllerBase) | |
274 | #endif | |
275 | ||
276 | // Generic wxHelp controller | |
277 | IMPLEMENT_CLASS(wxXLPHelpController, wxHelpControllerBase) | |
278 | ||
2049ba38 | 279 | #ifdef __WXMSW__ |
2bda0e17 KB |
280 | IMPLEMENT_CLASS(wxXLPHelpClient, wxDDEClient) |
281 | IMPLEMENT_CLASS(wxXLPHelpConnection, wxDDEConnection) | |
282 | #else | |
283 | IMPLEMENT_CLASS(wxXLPHelpClient, wxTCPClient) | |
284 | IMPLEMENT_CLASS(wxXLPHelpConnection, wxTCPConnection) | |
285 | #endif | |
286 | ||
287 | #endif | |
288 | ||
289 | IMPLEMENT_DYNAMIC_CLASS(wxString, wxObject) | |
290 | ||
291 | #include "wx/list.h" | |
292 | IMPLEMENT_DYNAMIC_CLASS(wxNode, wxObject) | |
293 | IMPLEMENT_DYNAMIC_CLASS(wxList, wxObject) | |
294 | IMPLEMENT_DYNAMIC_CLASS(wxStringList, wxList) | |
295 | ||
296 | #if USE_PRINTING_ARCHITECTURE | |
297 | #include "wx/print.h" | |
298 | IMPLEMENT_DYNAMIC_CLASS(wxPrintDialog, wxDialog) | |
299 | IMPLEMENT_DYNAMIC_CLASS(wxPrinterBase, wxObject) | |
300 | IMPLEMENT_DYNAMIC_CLASS(wxPostScriptPrinter, wxPrinterBase) | |
301 | IMPLEMENT_DYNAMIC_CLASS(wxWindowsPrinter, wxPrinterBase) | |
302 | IMPLEMENT_ABSTRACT_CLASS(wxPrintout, wxObject) | |
303 | IMPLEMENT_CLASS(wxPreviewCanvas, wxWindow) | |
304 | IMPLEMENT_CLASS(wxPreviewControlBar, wxWindow) | |
305 | IMPLEMENT_CLASS(wxPreviewFrame, wxFrame) | |
306 | IMPLEMENT_CLASS(wxPrintPreviewBase, wxObject) | |
307 | IMPLEMENT_CLASS(wxPostScriptPrintPreview, wxPrintPreviewBase) | |
308 | IMPLEMENT_CLASS(wxWindowsPrintPreview, wxPrintPreviewBase) | |
309 | IMPLEMENT_CLASS(wxGenericPrintDialog, wxDialog) | |
310 | IMPLEMENT_CLASS(wxGenericPrintSetupDialog, wxDialog) | |
311 | #endif | |
312 | ||
313 | #if USE_POSTSCRIPT | |
314 | #include "wx/postscrp.h" | |
315 | IMPLEMENT_DYNAMIC_CLASS(wxPostScriptDC, wxDC) | |
316 | IMPLEMENT_DYNAMIC_CLASS(wxPrintSetupData, wxObject) | |
317 | IMPLEMENT_DYNAMIC_CLASS(wxPageSetupData, wxObject) | |
318 | IMPLEMENT_DYNAMIC_CLASS(wxPrintPaperType, wxObject) | |
319 | IMPLEMENT_DYNAMIC_CLASS(wxPrintPaperDatabase, wxList) | |
320 | #endif | |
321 | ||
322 | #if USE_WX_RESOURCES | |
323 | #include "wx/resource.h" | |
324 | IMPLEMENT_DYNAMIC_CLASS(wxItemResource, wxObject) | |
325 | IMPLEMENT_DYNAMIC_CLASS(wxResourceTable, wxHashTable) | |
326 | #endif | |
327 | ||
328 | #include "wx/event.h" | |
329 | IMPLEMENT_DYNAMIC_CLASS(wxEvtHandler, wxObject) | |
330 | IMPLEMENT_ABSTRACT_CLASS(wxEvent, wxObject) | |
331 | IMPLEMENT_DYNAMIC_CLASS(wxCommandEvent, wxEvent) | |
332 | IMPLEMENT_DYNAMIC_CLASS(wxScrollEvent, wxCommandEvent) | |
333 | IMPLEMENT_DYNAMIC_CLASS(wxMouseEvent, wxEvent) | |
334 | IMPLEMENT_DYNAMIC_CLASS(wxKeyEvent, wxEvent) | |
335 | IMPLEMENT_DYNAMIC_CLASS(wxSizeEvent, wxEvent) | |
336 | IMPLEMENT_DYNAMIC_CLASS(wxPaintEvent, wxEvent) | |
337 | IMPLEMENT_DYNAMIC_CLASS(wxEraseEvent, wxEvent) | |
338 | IMPLEMENT_DYNAMIC_CLASS(wxMoveEvent, wxEvent) | |
339 | IMPLEMENT_DYNAMIC_CLASS(wxFocusEvent, wxEvent) | |
340 | IMPLEMENT_DYNAMIC_CLASS(wxCloseEvent, wxEvent) | |
341 | IMPLEMENT_DYNAMIC_CLASS(wxShowEvent, wxEvent) | |
342 | IMPLEMENT_DYNAMIC_CLASS(wxMaximizeEvent, wxEvent) | |
343 | IMPLEMENT_DYNAMIC_CLASS(wxIconizeEvent, wxEvent) | |
344 | IMPLEMENT_DYNAMIC_CLASS(wxMenuEvent, wxEvent) | |
345 | IMPLEMENT_DYNAMIC_CLASS(wxJoystickEvent, wxEvent) | |
346 | IMPLEMENT_DYNAMIC_CLASS(wxDropFilesEvent, wxEvent) | |
347 | IMPLEMENT_DYNAMIC_CLASS(wxActivateEvent, wxEvent) | |
348 | IMPLEMENT_DYNAMIC_CLASS(wxInitDialogEvent, wxEvent) | |
349 | IMPLEMENT_DYNAMIC_CLASS(wxSysColourChangedEvent, wxEvent) | |
350 | IMPLEMENT_DYNAMIC_CLASS(wxIdleEvent, wxEvent) | |
351 | IMPLEMENT_DYNAMIC_CLASS(wxUpdateUIEvent, wxEvent) | |
ca7731b7 | 352 | IMPLEMENT_DYNAMIC_CLASS(wxProcessEvent, wxEvent) |
2bda0e17 KB |
353 | |
354 | #include "wx/utils.h" | |
355 | IMPLEMENT_DYNAMIC_CLASS(wxPathList, wxList) | |
356 | ||
6a6c0a8b | 357 | // IMPLEMENT_DYNAMIC_CLASS(wxRect, wxObject) |
2bda0e17 | 358 | |
ca7731b7 GL |
359 | #include "wx/process.h" |
360 | IMPLEMENT_DYNAMIC_CLASS(wxProcess, wxEvtHandler) | |
361 | ||
2bda0e17 KB |
362 | #if USE_TIMEDATE |
363 | #include "wx/date.h" | |
364 | IMPLEMENT_DYNAMIC_CLASS(wxDate, wxObject) | |
365 | #endif | |
366 | ||
367 | #if USE_DOC_VIEW_ARCHITECTURE | |
368 | #include "wx/docview.h" | |
369 | //IMPLEMENT_ABSTRACT_CLASS(wxDocItem, wxObject) | |
370 | IMPLEMENT_ABSTRACT_CLASS(wxDocument, wxEvtHandler) | |
371 | IMPLEMENT_ABSTRACT_CLASS(wxView, wxEvtHandler) | |
372 | IMPLEMENT_ABSTRACT_CLASS(wxDocTemplate, wxObject) | |
373 | IMPLEMENT_DYNAMIC_CLASS(wxDocManager, wxEvtHandler) | |
374 | IMPLEMENT_CLASS(wxDocChildFrame, wxFrame) | |
375 | IMPLEMENT_CLASS(wxDocParentFrame, wxFrame) | |
376 | #if USE_PRINTING_ARCHITECTURE | |
377 | IMPLEMENT_DYNAMIC_CLASS(wxDocPrintout, wxPrintout) | |
378 | #endif | |
379 | IMPLEMENT_CLASS(wxCommand, wxObject) | |
380 | IMPLEMENT_DYNAMIC_CLASS(wxCommandProcessor, wxObject) | |
381 | IMPLEMENT_DYNAMIC_CLASS(wxFileHistory, wxObject) | |
382 | #endif | |
383 | ||
384 | #if USE_CONSTRAINTS | |
385 | #include "wx/layout.h" | |
386 | IMPLEMENT_DYNAMIC_CLASS(wxIndividualLayoutConstraint, wxObject) | |
387 | IMPLEMENT_DYNAMIC_CLASS(wxLayoutConstraints, wxObject) | |
388 | IMPLEMENT_DYNAMIC_CLASS(wxSizer, wxObject) | |
389 | IMPLEMENT_DYNAMIC_CLASS(wxRowColSizer, wxSizer) | |
390 | #endif | |
391 | ||
392 | #if USE_TOOLBAR | |
393 | #include "wx/tbarbase.h" | |
394 | IMPLEMENT_DYNAMIC_CLASS(wxToolBarTool, wxObject) | |
395 | IMPLEMENT_DYNAMIC_CLASS(wxToolBarBase, wxControl) | |
396 | ||
397 | #include "wx/tbarsmpl.h" | |
398 | IMPLEMENT_DYNAMIC_CLASS(wxToolBarSimple, wxToolBarBase) | |
399 | ||
2049ba38 | 400 | #ifdef __WXMSW__ |
2bda0e17 KB |
401 | #include "wx/tbarmsw.h" |
402 | IMPLEMENT_DYNAMIC_CLASS(wxToolBarMSW, wxToolBarBase) | |
403 | ||
404 | #include "wx/tbar95.h" | |
405 | IMPLEMENT_DYNAMIC_CLASS(wxToolBar95, wxToolBarBase) | |
406 | #endif | |
407 | ||
408 | #endif | |
409 | ||
410 | #include "wx/statusbr.h" | |
411 | ||
412 | IMPLEMENT_DYNAMIC_CLASS(wxStatusBar, wxWindow) | |
413 | ||
414 | BEGIN_EVENT_TABLE(wxStatusBar, wxWindow) | |
415 | EVT_PAINT(wxStatusBar::OnPaint) | |
416 | EVT_SYS_COLOUR_CHANGED(wxStatusBar::OnSysColourChanged) | |
417 | END_EVENT_TABLE() | |
418 | ||
419 | #if USE_TIMEDATE | |
420 | #include "wx/time.h" | |
421 | IMPLEMENT_DYNAMIC_CLASS(wxTime, wxObject) | |
422 | #endif | |
423 | ||
424 | #if !USE_GNU_WXSTRING | |
425 | #include "wx/string.h" | |
426 | IMPLEMENT_DYNAMIC_CLASS(wxString, wxObject) | |
427 | #endif | |
428 | ||
2049ba38 | 429 | #ifdef __WXMOTIF__ |
2bda0e17 KB |
430 | IMPLEMENT_DYNAMIC_CLASS(wxXColormap, wxObject) |
431 | IMPLEMENT_DYNAMIC_CLASS(wxXFont, wxObject) | |
432 | IMPLEMENT_DYNAMIC_CLASS(wxXCursor, wxObject) | |
433 | #endif | |
434 | IMPLEMENT_DYNAMIC_CLASS(wxFont, wxGDIObject) | |
435 | IMPLEMENT_DYNAMIC_CLASS(wxPalette, wxGDIObject) | |
436 | IMPLEMENT_DYNAMIC_CLASS(wxPen, wxGDIObject) | |
437 | IMPLEMENT_DYNAMIC_CLASS(wxBrush, wxGDIObject) | |
438 | IMPLEMENT_DYNAMIC_CLASS(wxIcon, wxBitmap) | |
439 | IMPLEMENT_DYNAMIC_CLASS(wxCursor, wxBitmap) | |
440 | IMPLEMENT_DYNAMIC_CLASS(wxBitmap, wxGDIObject) | |
441 | IMPLEMENT_DYNAMIC_CLASS(wxMask, wxObject) | |
442 | ||
443 | // This will presumably be implemented on other platforms too | |
2049ba38 | 444 | #ifdef __WXMSW__ |
2bda0e17 KB |
445 | IMPLEMENT_DYNAMIC_CLASS(wxBitmapHandler, wxObject) |
446 | IMPLEMENT_DYNAMIC_CLASS(wxBMPResourceHandler, wxBitmapHandler) | |
447 | IMPLEMENT_DYNAMIC_CLASS(wxBMPFileHandler, wxBitmapHandler) | |
448 | IMPLEMENT_DYNAMIC_CLASS(wxXPMFileHandler, wxBitmapHandler) | |
449 | IMPLEMENT_DYNAMIC_CLASS(wxXPMDataHandler, wxBitmapHandler) | |
450 | IMPLEMENT_DYNAMIC_CLASS(wxICOFileHandler, wxBitmapHandler) | |
451 | IMPLEMENT_DYNAMIC_CLASS(wxICOResourceHandler, wxBitmapHandler) | |
452 | #endif | |
453 | ||
454 | #include "wx/statbox.h" | |
455 | IMPLEMENT_DYNAMIC_CLASS(wxStaticBox, wxControl) | |
456 | ||
457 | #if USE_IPC | |
458 | #include "wx/dde.h" | |
459 | IMPLEMENT_CLASS(wxServerBase, wxObject) | |
460 | IMPLEMENT_CLASS(wxClientBase, wxObject) | |
461 | IMPLEMENT_CLASS(wxConnectionBase, wxObject) | |
462 | ||
463 | IMPLEMENT_DYNAMIC_CLASS(wxDDEServer, wxServerBase) | |
464 | IMPLEMENT_DYNAMIC_CLASS(wxDDEClient, wxClientBase) | |
465 | IMPLEMENT_CLASS(wxDDEConnection, wxConnectionBase) | |
466 | #endif | |
467 | ||
468 | IMPLEMENT_ABSTRACT_CLASS(wxControl, wxWindow) | |
469 | ||
470 | #include "wx/listbox.h" | |
471 | IMPLEMENT_DYNAMIC_CLASS(wxListBox, wxControl) | |
472 | ||
473 | #include "wx/checklst.h" | |
474 | IMPLEMENT_DYNAMIC_CLASS(wxCheckListBox, wxListBox) | |
475 | ||
476 | IMPLEMENT_DYNAMIC_CLASS(wxApp, wxEvtHandler) | |
477 | ||
478 | #include "wx/menu.h" | |
479 | IMPLEMENT_DYNAMIC_CLASS(wxMenu, wxEvtHandler) | |
480 | IMPLEMENT_DYNAMIC_CLASS(wxMenuItem, wxObject) | |
481 | IMPLEMENT_DYNAMIC_CLASS(wxMenuBar, wxEvtHandler) | |
482 | ||
483 | #include "wx/stattext.h" | |
484 | #include "wx/statbmp.h" | |
485 | IMPLEMENT_DYNAMIC_CLASS(wxStaticText, wxControl) | |
486 | IMPLEMENT_DYNAMIC_CLASS(wxStaticBitmap, wxControl) | |
487 | ||
488 | #if USE_METAFILE | |
489 | #include "wx/metafile.h" | |
490 | IMPLEMENT_DYNAMIC_CLASS(wxMetaFile, wxObject) | |
491 | IMPLEMENT_ABSTRACT_CLASS(wxMetaFileDC, wxDC) | |
492 | #endif | |
493 | ||
494 | #include "wx/radiobox.h" | |
495 | #include "wx/radiobut.h" | |
496 | IMPLEMENT_DYNAMIC_CLASS(wxRadioBox, wxControl) | |
497 | ||
498 | IMPLEMENT_DYNAMIC_CLASS(wxRadioButton, wxControl) | |
499 | // IMPLEMENT_DYNAMIC_CLASS(wxBitmapRadioButton, wxRadioButton) | |
500 | ||
501 | #include "wx/scrolbar.h" | |
502 | IMPLEMENT_DYNAMIC_CLASS(wxScrollBar, wxControl) | |
503 | ||
504 | #if WXWIN_COMPATIBILITY | |
505 | BEGIN_EVENT_TABLE(wxScrollBar, wxControl) | |
506 | EVT_SCROLL(wxScrollBar::OnScroll) | |
507 | END_EVENT_TABLE() | |
508 | #endif | |
509 | ||
510 | #include "wx/slider.h" | |
511 | IMPLEMENT_DYNAMIC_CLASS(wxSlider, wxControl) | |
512 | ||
513 | #if WXWIN_COMPATIBILITY | |
514 | BEGIN_EVENT_TABLE(wxSlider, wxControl) | |
515 | EVT_SCROLL(wxSlider::OnScroll) | |
516 | END_EVENT_TABLE() | |
517 | #endif | |
518 | ||
519 | #include "wx/timer.h" | |
520 | IMPLEMENT_ABSTRACT_CLASS(wxTimer, wxObject) | |
521 | ||
522 | #include "wx/textctrl.h" | |
523 | IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl, wxControl) | |
524 | ||
525 | #include "wx/window.h" | |
526 | IMPLEMENT_DYNAMIC_CLASS(wxWindow, wxEvtHandler) | |
527 | ||
528 | #include "wx/scrolwin.h" | |
529 | IMPLEMENT_DYNAMIC_CLASS(wxScrolledWindow, wxWindow) | |
530 | ||
531 | #include "wx/panel.h" | |
532 | IMPLEMENT_DYNAMIC_CLASS(wxPanel, wxWindow) | |
533 | ||
534 | #include "wx/msgbxdlg.h" | |
535 | #include "wx/textdlg.h" | |
536 | #include "wx/filedlg.h" | |
537 | #include "wx/dirdlg.h" | |
538 | #include "wx/choicdlg.h" | |
539 | ||
2049ba38 | 540 | #if !defined(__WXMSW__) || USE_GENERIC_DIALOGS_IN_MSW |
2bda0e17 KB |
541 | #include "wx/generic/msgdlgg.h" |
542 | IMPLEMENT_CLASS(wxGenericMessageDialog, wxDialog) | |
543 | #endif | |
544 | ||
545 | IMPLEMENT_CLASS(wxTextEntryDialog, wxDialog) | |
546 | IMPLEMENT_CLASS(wxSingleChoiceDialog, wxDialog) | |
547 | IMPLEMENT_CLASS(wxFileDialog, wxDialog) | |
548 | IMPLEMENT_CLASS(wxDirDialog, wxDialog) | |
549 | ||
2049ba38 | 550 | #ifdef __WXMSW__ |
2bda0e17 KB |
551 | IMPLEMENT_CLASS(wxMessageDialog) |
552 | #endif | |
553 | ||
554 | #if USE_GAUGE | |
2049ba38 | 555 | #ifdef __WXMOTIF__ |
2bda0e17 KB |
556 | #include "../../contrib/xmgauge/gauge.h" |
557 | #endif | |
558 | #include "wx_gauge.h" | |
559 | IMPLEMENT_DYNAMIC_CLASS(wxGauge, wxControl) | |
560 | #endif | |
561 | ||
562 | #include "wx/grid.h" | |
563 | IMPLEMENT_DYNAMIC_CLASS(wxGenericGrid, wxPanel) | |
564 | ||
565 | ///// Event tables (also must be in one, statically-linked file for shared libraries) | |
566 | ||
567 | // This is the base, wxEvtHandler 'bootstrap' code which is expanded manually here | |
568 | const wxEventTable *wxEvtHandler::GetEventTable() const { return &wxEvtHandler::sm_eventTable; } | |
569 | ||
570 | const wxEventTable wxEvtHandler::sm_eventTable = | |
571 | { NULL, &wxEvtHandler::sm_eventTableEntries[0] }; | |
572 | ||
573 | const wxEventTableEntry wxEvtHandler::sm_eventTableEntries[] = { { 0, 0, 0, NULL } }; | |
574 | ||
575 | BEGIN_EVENT_TABLE(wxFrame, wxWindow) | |
576 | EVT_ACTIVATE(wxFrame::OnActivate) | |
577 | EVT_SIZE(wxFrame::OnSize) | |
578 | EVT_MENU_HIGHLIGHT_ALL(wxFrame::OnMenuHighlight) | |
579 | EVT_SYS_COLOUR_CHANGED(wxFrame::OnSysColourChanged) | |
580 | EVT_IDLE(wxFrame::OnIdle) | |
581 | EVT_CLOSE(wxFrame::OnCloseWindow) | |
582 | END_EVENT_TABLE() | |
583 | ||
584 | BEGIN_EVENT_TABLE(wxDialog, wxPanel) | |
585 | EVT_BUTTON(wxID_OK, wxDialog::OnOK) | |
586 | EVT_BUTTON(wxID_APPLY, wxDialog::OnApply) | |
587 | EVT_BUTTON(wxID_CANCEL, wxDialog::OnCancel) | |
588 | EVT_CHAR_HOOK(wxDialog::OnCharHook) | |
589 | EVT_SYS_COLOUR_CHANGED(wxDialog::OnSysColourChanged) | |
590 | EVT_CLOSE(wxDialog::OnCloseWindow) | |
591 | END_EVENT_TABLE() | |
592 | ||
593 | BEGIN_EVENT_TABLE(wxWindow, wxEvtHandler) | |
594 | EVT_CHAR(wxWindow::OnChar) | |
595 | EVT_SIZE(wxWindow::Size) | |
596 | EVT_ERASE_BACKGROUND(wxWindow::OnEraseBackground) | |
597 | EVT_SYS_COLOUR_CHANGED(wxWindow::OnSysColourChanged) | |
598 | EVT_INIT_DIALOG(wxWindow::OnInitDialog) | |
599 | EVT_IDLE(wxWindow::OnIdle) | |
600 | END_EVENT_TABLE() | |
601 | ||
602 | BEGIN_EVENT_TABLE(wxScrolledWindow, wxWindow) | |
603 | EVT_SCROLL(wxScrolledWindow::OnScroll) | |
604 | EVT_SIZE(wxScrolledWindow::OnSize) | |
605 | EVT_PAINT(wxScrolledWindow::OnPaint) | |
606 | END_EVENT_TABLE() | |
607 | ||
608 | BEGIN_EVENT_TABLE(wxPanel, wxWindow) | |
609 | EVT_SYS_COLOUR_CHANGED(wxPanel::OnSysColourChanged) | |
610 | END_EVENT_TABLE() | |
611 | ||
612 | BEGIN_EVENT_TABLE(wxTextCtrl, wxControl) | |
613 | EVT_CHAR(wxTextCtrl::OnChar) | |
614 | EVT_DROP_FILES(wxTextCtrl::OnDropFiles) | |
615 | EVT_ERASE_BACKGROUND(wxTextCtrl::OnEraseBackground) | |
616 | END_EVENT_TABLE() | |
617 | ||
2049ba38 | 618 | #ifdef __WXMSW__ |
2bda0e17 KB |
619 | BEGIN_EVENT_TABLE(wxMDIParentWindow, wxFrame) |
620 | EVT_SIZE(wxMDIParentWindow::OnSize) | |
621 | EVT_ACTIVATE(wxMDIParentWindow::OnActivate) | |
622 | EVT_SYS_COLOUR_CHANGED(wxMDIParentWindow::OnSysColourChanged) | |
623 | END_EVENT_TABLE() | |
624 | ||
625 | BEGIN_EVENT_TABLE(wxMDIClientWindow, wxWindow) | |
626 | EVT_SCROLL(wxMDIClientWindow::OnScroll) | |
627 | END_EVENT_TABLE() | |
628 | #endif | |
629 | ||
630 | BEGIN_EVENT_TABLE(wxToolBarBase, wxControl) | |
631 | EVT_SCROLL(wxToolBarBase::OnScroll) | |
632 | EVT_SIZE(wxToolBarBase::OnSize) | |
633 | EVT_IDLE(wxToolBarBase::OnIdle) | |
634 | END_EVENT_TABLE() | |
635 | ||
636 | BEGIN_EVENT_TABLE(wxToolBarSimple, wxToolBarBase) | |
637 | EVT_SIZE(wxToolBarSimple::OnSize) | |
638 | EVT_PAINT(wxToolBarSimple::OnPaint) | |
639 | EVT_KILL_FOCUS(wxToolBarSimple::OnKillFocus) | |
640 | EVT_MOUSE_EVENTS(wxToolBarSimple::OnMouseEvent) | |
641 | END_EVENT_TABLE() | |
642 | ||
2049ba38 | 643 | #ifdef __WXMSW__ |
2bda0e17 KB |
644 | BEGIN_EVENT_TABLE(wxToolBarMSW, wxToolBarBase) |
645 | EVT_SIZE(wxToolBarMSW::OnSize) | |
646 | EVT_PAINT(wxToolBarMSW::OnPaint) | |
647 | EVT_MOUSE_EVENTS(wxToolBarMSW::OnMouseEvent) | |
648 | END_EVENT_TABLE() | |
649 | ||
650 | BEGIN_EVENT_TABLE(wxToolBar95, wxToolBarBase) | |
651 | EVT_SIZE(wxToolBar95::OnSize) | |
652 | EVT_PAINT(wxToolBar95::OnPaint) | |
653 | EVT_KILL_FOCUS(wxToolBar95::OnKillFocus) | |
654 | EVT_MOUSE_EVENTS(wxToolBar95::OnMouseEvent) | |
655 | EVT_SYS_COLOUR_CHANGED(wxToolBar95::OnSysColourChanged) | |
656 | END_EVENT_TABLE() | |
657 | #endif | |
658 | ||
659 | BEGIN_EVENT_TABLE(wxGenericGrid, wxPanel) | |
660 | EVT_SIZE(wxGenericGrid::OnSize) | |
661 | EVT_PAINT(wxGenericGrid::OnPaint) | |
662 | EVT_MOUSE_EVENTS(wxGenericGrid::OnMouseEvent) | |
663 | EVT_TEXT(wxGRID_TEXT_CTRL, wxGenericGrid::OnText) | |
664 | EVT_COMMAND_SCROLL(wxGRID_HSCROLL, wxGenericGrid::OnGridScroll) | |
665 | EVT_COMMAND_SCROLL(wxGRID_VSCROLL, wxGenericGrid::OnGridScroll) | |
666 | END_EVENT_TABLE() | |
667 | ||
668 | BEGIN_EVENT_TABLE(wxControl, wxWindow) | |
669 | EVT_ERASE_BACKGROUND(wxControl::OnEraseBackground) | |
670 | END_EVENT_TABLE() | |
671 | ||
2049ba38 | 672 | #if !defined(__WXMSW__) || USE_GENERIC_DIALOGS_IN_MSW |
2bda0e17 KB |
673 | BEGIN_EVENT_TABLE(wxGenericMessageDialog, wxDialog) |
674 | EVT_BUTTON(wxID_YES, wxGenericMessageDialog::OnYes) | |
675 | EVT_BUTTON(wxID_NO, wxGenericMessageDialog::OnNo) | |
676 | EVT_BUTTON(wxID_CANCEL, wxGenericMessageDialog::OnCancel) | |
677 | END_EVENT_TABLE() | |
678 | ||
679 | BEGIN_EVENT_TABLE(wxGenericColourDialog, wxDialog) | |
680 | EVT_BUTTON(wxID_ADD_CUSTOM, wxGenericColourDialog::OnAddCustom) | |
681 | EVT_SLIDER(wxID_RED_SLIDER, wxGenericColourDialog::OnRedSlider) | |
682 | EVT_SLIDER(wxID_GREEN_SLIDER, wxGenericColourDialog::OnGreenSlider) | |
683 | EVT_SLIDER(wxID_BLUE_SLIDER, wxGenericColourDialog::OnBlueSlider) | |
684 | EVT_PAINT(wxGenericColourDialog::OnPaint) | |
685 | EVT_MOUSE_EVENTS(wxGenericColourDialog::OnMouseEvent) | |
686 | END_EVENT_TABLE() | |
687 | ||
688 | BEGIN_EVENT_TABLE(wxGenericFontDialog, wxDialog) | |
689 | EVT_CHECKBOX(wxID_FONT_UNDERLINE, wxGenericFontDialog::OnChangeFont) | |
690 | EVT_CHOICE(wxID_FONT_STYLE, wxGenericFontDialog::OnChangeFont) | |
691 | EVT_CHOICE(wxID_FONT_WEIGHT, wxGenericFontDialog::OnChangeFont) | |
692 | EVT_CHOICE(wxID_FONT_FAMILY, wxGenericFontDialog::OnChangeFont) | |
693 | EVT_CHOICE(wxID_FONT_COLOUR, wxGenericFontDialog::OnChangeFont) | |
694 | EVT_CHOICE(wxID_FONT_SIZE, wxGenericFontDialog::OnChangeFont) | |
695 | EVT_PAINT(wxGenericFontDialog::OnPaint) | |
696 | END_EVENT_TABLE() | |
697 | ||
698 | BEGIN_EVENT_TABLE(wxGenericPrintDialog, wxDialog) | |
699 | EVT_BUTTON(wxID_OK, wxGenericPrintDialog::OnOK) | |
700 | EVT_BUTTON(wxPRINTID_SETUP, wxGenericPrintDialog::OnSetup) | |
701 | EVT_RADIOBOX(wxPRINTID_RANGE, wxGenericPrintDialog::OnRange) | |
702 | END_EVENT_TABLE() | |
703 | ||
704 | #endif | |
705 | ||
706 | BEGIN_EVENT_TABLE(wxTextEntryDialog, wxDialog) | |
707 | EVT_BUTTON(wxID_OK, wxTextEntryDialog::OnOK) | |
708 | END_EVENT_TABLE() | |
709 | ||
710 | BEGIN_EVENT_TABLE(wxSingleChoiceDialog, wxDialog) | |
711 | EVT_BUTTON(wxID_OK, wxSingleChoiceDialog::OnOK) | |
712 | END_EVENT_TABLE() | |
713 | ||
714 | #include "wx/prntbase.h" | |
715 | ||
716 | BEGIN_EVENT_TABLE(wxPrintAbortDialog, wxDialog) | |
717 | EVT_BUTTON(wxID_CANCEL, wxPrintAbortDialog::OnCancel) | |
718 | END_EVENT_TABLE() | |
719 | ||
720 | BEGIN_EVENT_TABLE(wxPreviewControlBar, wxWindow) | |
721 | EVT_BUTTON(wxID_PREVIEW_CLOSE, wxPreviewControlBar::OnClose) | |
722 | EVT_BUTTON(wxID_PREVIEW_PRINT, wxPreviewControlBar::OnPrint) | |
723 | EVT_BUTTON(wxID_PREVIEW_PREVIOUS, wxPreviewControlBar::OnPrevious) | |
724 | EVT_BUTTON(wxID_PREVIEW_NEXT, wxPreviewControlBar::OnNext) | |
725 | EVT_CHOICE(wxID_PREVIEW_ZOOM, wxPreviewControlBar::OnZoom) | |
726 | END_EVENT_TABLE() | |
727 | ||
728 | #endif | |
729 | ||
730 | ||
731 | const wxSize wxDefaultSize(-1, -1); | |
732 | const wxPoint wxDefaultPosition(-1, -1); |