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