]>
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 | ||
3cacae09 GL |
362 | #include "wx/stream.h" |
363 | #include "wx/fstream.h" | |
364 | #include "wx/mstream.h" | |
365 | #include "wx/datstrm.h" | |
366 | IMPLEMENT_ABSTRACT_CLASS(wxInputStream, wxObject) | |
367 | IMPLEMENT_ABSTRACT_CLASS(wxOutputStream, wxObject) | |
368 | IMPLEMENT_ABSTRACT_CLASS2(wxStream, wxInputStream, wxOutputStream) | |
369 | IMPLEMENT_CLASS(wxFilterInputStream, wxInputStream) | |
370 | IMPLEMENT_CLASS(wxFilterOutputStream, wxOutputStream) | |
371 | ||
372 | IMPLEMENT_CLASS(wxFileStreamBase, wxStream) | |
373 | IMPLEMENT_CLASS(wxFileInputStream, wxFileStreamBase) | |
374 | IMPLEMENT_CLASS(wxFileOutputStream, wxFileStreamBase) | |
375 | ||
376 | IMPLEMENT_CLASS(wxMemoryStreamBase, wxStream) | |
377 | IMPLEMENT_CLASS(wxMemoryInputStream, wxMemoryStreamBase) | |
378 | IMPLEMENT_DYNAMIC_CLASS(wxMemoryOutputStream, wxMemoryStreamBase) | |
379 | IMPLEMENT_DYNAMIC_CLASS(wxMemoryStream, wxMemoryStreamBase) | |
380 | ||
381 | IMPLEMENT_CLASS(wxDataInputStream, wxFilterInputStream) | |
382 | IMPLEMENT_CLASS(wxDataOutputStream, wxFilterInputStream) | |
383 | ||
2bda0e17 KB |
384 | #if USE_TIMEDATE |
385 | #include "wx/date.h" | |
386 | IMPLEMENT_DYNAMIC_CLASS(wxDate, wxObject) | |
387 | #endif | |
388 | ||
389 | #if USE_DOC_VIEW_ARCHITECTURE | |
390 | #include "wx/docview.h" | |
391 | //IMPLEMENT_ABSTRACT_CLASS(wxDocItem, wxObject) | |
392 | IMPLEMENT_ABSTRACT_CLASS(wxDocument, wxEvtHandler) | |
393 | IMPLEMENT_ABSTRACT_CLASS(wxView, wxEvtHandler) | |
394 | IMPLEMENT_ABSTRACT_CLASS(wxDocTemplate, wxObject) | |
395 | IMPLEMENT_DYNAMIC_CLASS(wxDocManager, wxEvtHandler) | |
396 | IMPLEMENT_CLASS(wxDocChildFrame, wxFrame) | |
397 | IMPLEMENT_CLASS(wxDocParentFrame, wxFrame) | |
398 | #if USE_PRINTING_ARCHITECTURE | |
399 | IMPLEMENT_DYNAMIC_CLASS(wxDocPrintout, wxPrintout) | |
400 | #endif | |
401 | IMPLEMENT_CLASS(wxCommand, wxObject) | |
402 | IMPLEMENT_DYNAMIC_CLASS(wxCommandProcessor, wxObject) | |
403 | IMPLEMENT_DYNAMIC_CLASS(wxFileHistory, wxObject) | |
404 | #endif | |
405 | ||
406 | #if USE_CONSTRAINTS | |
407 | #include "wx/layout.h" | |
408 | IMPLEMENT_DYNAMIC_CLASS(wxIndividualLayoutConstraint, wxObject) | |
409 | IMPLEMENT_DYNAMIC_CLASS(wxLayoutConstraints, wxObject) | |
410 | IMPLEMENT_DYNAMIC_CLASS(wxSizer, wxObject) | |
411 | IMPLEMENT_DYNAMIC_CLASS(wxRowColSizer, wxSizer) | |
412 | #endif | |
413 | ||
414 | #if USE_TOOLBAR | |
415 | #include "wx/tbarbase.h" | |
416 | IMPLEMENT_DYNAMIC_CLASS(wxToolBarTool, wxObject) | |
417 | IMPLEMENT_DYNAMIC_CLASS(wxToolBarBase, wxControl) | |
418 | ||
419 | #include "wx/tbarsmpl.h" | |
420 | IMPLEMENT_DYNAMIC_CLASS(wxToolBarSimple, wxToolBarBase) | |
421 | ||
2049ba38 | 422 | #ifdef __WXMSW__ |
2bda0e17 KB |
423 | #include "wx/tbarmsw.h" |
424 | IMPLEMENT_DYNAMIC_CLASS(wxToolBarMSW, wxToolBarBase) | |
425 | ||
426 | #include "wx/tbar95.h" | |
427 | IMPLEMENT_DYNAMIC_CLASS(wxToolBar95, wxToolBarBase) | |
428 | #endif | |
429 | ||
430 | #endif | |
431 | ||
432 | #include "wx/statusbr.h" | |
433 | ||
434 | IMPLEMENT_DYNAMIC_CLASS(wxStatusBar, wxWindow) | |
435 | ||
436 | BEGIN_EVENT_TABLE(wxStatusBar, wxWindow) | |
437 | EVT_PAINT(wxStatusBar::OnPaint) | |
438 | EVT_SYS_COLOUR_CHANGED(wxStatusBar::OnSysColourChanged) | |
439 | END_EVENT_TABLE() | |
440 | ||
441 | #if USE_TIMEDATE | |
442 | #include "wx/time.h" | |
443 | IMPLEMENT_DYNAMIC_CLASS(wxTime, wxObject) | |
444 | #endif | |
445 | ||
446 | #if !USE_GNU_WXSTRING | |
447 | #include "wx/string.h" | |
448 | IMPLEMENT_DYNAMIC_CLASS(wxString, wxObject) | |
449 | #endif | |
450 | ||
2049ba38 | 451 | #ifdef __WXMOTIF__ |
2bda0e17 KB |
452 | IMPLEMENT_DYNAMIC_CLASS(wxXColormap, wxObject) |
453 | IMPLEMENT_DYNAMIC_CLASS(wxXFont, wxObject) | |
454 | IMPLEMENT_DYNAMIC_CLASS(wxXCursor, wxObject) | |
455 | #endif | |
456 | IMPLEMENT_DYNAMIC_CLASS(wxFont, wxGDIObject) | |
457 | IMPLEMENT_DYNAMIC_CLASS(wxPalette, wxGDIObject) | |
458 | IMPLEMENT_DYNAMIC_CLASS(wxPen, wxGDIObject) | |
459 | IMPLEMENT_DYNAMIC_CLASS(wxBrush, wxGDIObject) | |
460 | IMPLEMENT_DYNAMIC_CLASS(wxIcon, wxBitmap) | |
461 | IMPLEMENT_DYNAMIC_CLASS(wxCursor, wxBitmap) | |
462 | IMPLEMENT_DYNAMIC_CLASS(wxBitmap, wxGDIObject) | |
463 | IMPLEMENT_DYNAMIC_CLASS(wxMask, wxObject) | |
464 | ||
465 | // This will presumably be implemented on other platforms too | |
2049ba38 | 466 | #ifdef __WXMSW__ |
2bda0e17 KB |
467 | IMPLEMENT_DYNAMIC_CLASS(wxBitmapHandler, wxObject) |
468 | IMPLEMENT_DYNAMIC_CLASS(wxBMPResourceHandler, wxBitmapHandler) | |
469 | IMPLEMENT_DYNAMIC_CLASS(wxBMPFileHandler, wxBitmapHandler) | |
470 | IMPLEMENT_DYNAMIC_CLASS(wxXPMFileHandler, wxBitmapHandler) | |
471 | IMPLEMENT_DYNAMIC_CLASS(wxXPMDataHandler, wxBitmapHandler) | |
472 | IMPLEMENT_DYNAMIC_CLASS(wxICOFileHandler, wxBitmapHandler) | |
473 | IMPLEMENT_DYNAMIC_CLASS(wxICOResourceHandler, wxBitmapHandler) | |
474 | #endif | |
475 | ||
476 | #include "wx/statbox.h" | |
477 | IMPLEMENT_DYNAMIC_CLASS(wxStaticBox, wxControl) | |
478 | ||
479 | #if USE_IPC | |
480 | #include "wx/dde.h" | |
481 | IMPLEMENT_CLASS(wxServerBase, wxObject) | |
482 | IMPLEMENT_CLASS(wxClientBase, wxObject) | |
483 | IMPLEMENT_CLASS(wxConnectionBase, wxObject) | |
484 | ||
485 | IMPLEMENT_DYNAMIC_CLASS(wxDDEServer, wxServerBase) | |
486 | IMPLEMENT_DYNAMIC_CLASS(wxDDEClient, wxClientBase) | |
487 | IMPLEMENT_CLASS(wxDDEConnection, wxConnectionBase) | |
488 | #endif | |
489 | ||
490 | IMPLEMENT_ABSTRACT_CLASS(wxControl, wxWindow) | |
491 | ||
492 | #include "wx/listbox.h" | |
493 | IMPLEMENT_DYNAMIC_CLASS(wxListBox, wxControl) | |
494 | ||
495 | #include "wx/checklst.h" | |
496 | IMPLEMENT_DYNAMIC_CLASS(wxCheckListBox, wxListBox) | |
497 | ||
498 | IMPLEMENT_DYNAMIC_CLASS(wxApp, wxEvtHandler) | |
499 | ||
500 | #include "wx/menu.h" | |
501 | IMPLEMENT_DYNAMIC_CLASS(wxMenu, wxEvtHandler) | |
502 | IMPLEMENT_DYNAMIC_CLASS(wxMenuItem, wxObject) | |
503 | IMPLEMENT_DYNAMIC_CLASS(wxMenuBar, wxEvtHandler) | |
504 | ||
505 | #include "wx/stattext.h" | |
506 | #include "wx/statbmp.h" | |
507 | IMPLEMENT_DYNAMIC_CLASS(wxStaticText, wxControl) | |
508 | IMPLEMENT_DYNAMIC_CLASS(wxStaticBitmap, wxControl) | |
509 | ||
510 | #if USE_METAFILE | |
511 | #include "wx/metafile.h" | |
512 | IMPLEMENT_DYNAMIC_CLASS(wxMetaFile, wxObject) | |
513 | IMPLEMENT_ABSTRACT_CLASS(wxMetaFileDC, wxDC) | |
514 | #endif | |
515 | ||
516 | #include "wx/radiobox.h" | |
517 | #include "wx/radiobut.h" | |
518 | IMPLEMENT_DYNAMIC_CLASS(wxRadioBox, wxControl) | |
519 | ||
520 | IMPLEMENT_DYNAMIC_CLASS(wxRadioButton, wxControl) | |
521 | // IMPLEMENT_DYNAMIC_CLASS(wxBitmapRadioButton, wxRadioButton) | |
522 | ||
523 | #include "wx/scrolbar.h" | |
524 | IMPLEMENT_DYNAMIC_CLASS(wxScrollBar, wxControl) | |
525 | ||
526 | #if WXWIN_COMPATIBILITY | |
527 | BEGIN_EVENT_TABLE(wxScrollBar, wxControl) | |
528 | EVT_SCROLL(wxScrollBar::OnScroll) | |
529 | END_EVENT_TABLE() | |
530 | #endif | |
531 | ||
532 | #include "wx/slider.h" | |
533 | IMPLEMENT_DYNAMIC_CLASS(wxSlider, wxControl) | |
534 | ||
535 | #if WXWIN_COMPATIBILITY | |
536 | BEGIN_EVENT_TABLE(wxSlider, wxControl) | |
537 | EVT_SCROLL(wxSlider::OnScroll) | |
538 | END_EVENT_TABLE() | |
539 | #endif | |
540 | ||
541 | #include "wx/timer.h" | |
542 | IMPLEMENT_ABSTRACT_CLASS(wxTimer, wxObject) | |
543 | ||
544 | #include "wx/textctrl.h" | |
545 | IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl, wxControl) | |
546 | ||
547 | #include "wx/window.h" | |
548 | IMPLEMENT_DYNAMIC_CLASS(wxWindow, wxEvtHandler) | |
549 | ||
550 | #include "wx/scrolwin.h" | |
551 | IMPLEMENT_DYNAMIC_CLASS(wxScrolledWindow, wxWindow) | |
552 | ||
553 | #include "wx/panel.h" | |
554 | IMPLEMENT_DYNAMIC_CLASS(wxPanel, wxWindow) | |
555 | ||
556 | #include "wx/msgbxdlg.h" | |
557 | #include "wx/textdlg.h" | |
558 | #include "wx/filedlg.h" | |
559 | #include "wx/dirdlg.h" | |
560 | #include "wx/choicdlg.h" | |
561 | ||
2049ba38 | 562 | #if !defined(__WXMSW__) || USE_GENERIC_DIALOGS_IN_MSW |
2bda0e17 KB |
563 | #include "wx/generic/msgdlgg.h" |
564 | IMPLEMENT_CLASS(wxGenericMessageDialog, wxDialog) | |
565 | #endif | |
566 | ||
567 | IMPLEMENT_CLASS(wxTextEntryDialog, wxDialog) | |
568 | IMPLEMENT_CLASS(wxSingleChoiceDialog, wxDialog) | |
569 | IMPLEMENT_CLASS(wxFileDialog, wxDialog) | |
570 | IMPLEMENT_CLASS(wxDirDialog, wxDialog) | |
571 | ||
2049ba38 | 572 | #ifdef __WXMSW__ |
2bda0e17 KB |
573 | IMPLEMENT_CLASS(wxMessageDialog) |
574 | #endif | |
575 | ||
576 | #if USE_GAUGE | |
2049ba38 | 577 | #ifdef __WXMOTIF__ |
2bda0e17 KB |
578 | #include "../../contrib/xmgauge/gauge.h" |
579 | #endif | |
580 | #include "wx_gauge.h" | |
581 | IMPLEMENT_DYNAMIC_CLASS(wxGauge, wxControl) | |
582 | #endif | |
583 | ||
584 | #include "wx/grid.h" | |
585 | IMPLEMENT_DYNAMIC_CLASS(wxGenericGrid, wxPanel) | |
586 | ||
587 | ///// Event tables (also must be in one, statically-linked file for shared libraries) | |
588 | ||
589 | // This is the base, wxEvtHandler 'bootstrap' code which is expanded manually here | |
590 | const wxEventTable *wxEvtHandler::GetEventTable() const { return &wxEvtHandler::sm_eventTable; } | |
591 | ||
592 | const wxEventTable wxEvtHandler::sm_eventTable = | |
593 | { NULL, &wxEvtHandler::sm_eventTableEntries[0] }; | |
594 | ||
595 | const wxEventTableEntry wxEvtHandler::sm_eventTableEntries[] = { { 0, 0, 0, NULL } }; | |
596 | ||
597 | BEGIN_EVENT_TABLE(wxFrame, wxWindow) | |
598 | EVT_ACTIVATE(wxFrame::OnActivate) | |
599 | EVT_SIZE(wxFrame::OnSize) | |
600 | EVT_MENU_HIGHLIGHT_ALL(wxFrame::OnMenuHighlight) | |
601 | EVT_SYS_COLOUR_CHANGED(wxFrame::OnSysColourChanged) | |
602 | EVT_IDLE(wxFrame::OnIdle) | |
603 | EVT_CLOSE(wxFrame::OnCloseWindow) | |
604 | END_EVENT_TABLE() | |
605 | ||
606 | BEGIN_EVENT_TABLE(wxDialog, wxPanel) | |
607 | EVT_BUTTON(wxID_OK, wxDialog::OnOK) | |
608 | EVT_BUTTON(wxID_APPLY, wxDialog::OnApply) | |
609 | EVT_BUTTON(wxID_CANCEL, wxDialog::OnCancel) | |
610 | EVT_CHAR_HOOK(wxDialog::OnCharHook) | |
611 | EVT_SYS_COLOUR_CHANGED(wxDialog::OnSysColourChanged) | |
612 | EVT_CLOSE(wxDialog::OnCloseWindow) | |
613 | END_EVENT_TABLE() | |
614 | ||
615 | BEGIN_EVENT_TABLE(wxWindow, wxEvtHandler) | |
616 | EVT_CHAR(wxWindow::OnChar) | |
617 | EVT_SIZE(wxWindow::Size) | |
618 | EVT_ERASE_BACKGROUND(wxWindow::OnEraseBackground) | |
619 | EVT_SYS_COLOUR_CHANGED(wxWindow::OnSysColourChanged) | |
620 | EVT_INIT_DIALOG(wxWindow::OnInitDialog) | |
621 | EVT_IDLE(wxWindow::OnIdle) | |
622 | END_EVENT_TABLE() | |
623 | ||
624 | BEGIN_EVENT_TABLE(wxScrolledWindow, wxWindow) | |
625 | EVT_SCROLL(wxScrolledWindow::OnScroll) | |
626 | EVT_SIZE(wxScrolledWindow::OnSize) | |
627 | EVT_PAINT(wxScrolledWindow::OnPaint) | |
628 | END_EVENT_TABLE() | |
629 | ||
630 | BEGIN_EVENT_TABLE(wxPanel, wxWindow) | |
631 | EVT_SYS_COLOUR_CHANGED(wxPanel::OnSysColourChanged) | |
632 | END_EVENT_TABLE() | |
633 | ||
634 | BEGIN_EVENT_TABLE(wxTextCtrl, wxControl) | |
635 | EVT_CHAR(wxTextCtrl::OnChar) | |
636 | EVT_DROP_FILES(wxTextCtrl::OnDropFiles) | |
637 | EVT_ERASE_BACKGROUND(wxTextCtrl::OnEraseBackground) | |
638 | END_EVENT_TABLE() | |
639 | ||
2049ba38 | 640 | #ifdef __WXMSW__ |
2bda0e17 KB |
641 | BEGIN_EVENT_TABLE(wxMDIParentWindow, wxFrame) |
642 | EVT_SIZE(wxMDIParentWindow::OnSize) | |
643 | EVT_ACTIVATE(wxMDIParentWindow::OnActivate) | |
644 | EVT_SYS_COLOUR_CHANGED(wxMDIParentWindow::OnSysColourChanged) | |
645 | END_EVENT_TABLE() | |
646 | ||
647 | BEGIN_EVENT_TABLE(wxMDIClientWindow, wxWindow) | |
648 | EVT_SCROLL(wxMDIClientWindow::OnScroll) | |
649 | END_EVENT_TABLE() | |
650 | #endif | |
651 | ||
652 | BEGIN_EVENT_TABLE(wxToolBarBase, wxControl) | |
653 | EVT_SCROLL(wxToolBarBase::OnScroll) | |
654 | EVT_SIZE(wxToolBarBase::OnSize) | |
655 | EVT_IDLE(wxToolBarBase::OnIdle) | |
656 | END_EVENT_TABLE() | |
657 | ||
658 | BEGIN_EVENT_TABLE(wxToolBarSimple, wxToolBarBase) | |
659 | EVT_SIZE(wxToolBarSimple::OnSize) | |
660 | EVT_PAINT(wxToolBarSimple::OnPaint) | |
661 | EVT_KILL_FOCUS(wxToolBarSimple::OnKillFocus) | |
662 | EVT_MOUSE_EVENTS(wxToolBarSimple::OnMouseEvent) | |
663 | END_EVENT_TABLE() | |
664 | ||
2049ba38 | 665 | #ifdef __WXMSW__ |
2bda0e17 KB |
666 | BEGIN_EVENT_TABLE(wxToolBarMSW, wxToolBarBase) |
667 | EVT_SIZE(wxToolBarMSW::OnSize) | |
668 | EVT_PAINT(wxToolBarMSW::OnPaint) | |
669 | EVT_MOUSE_EVENTS(wxToolBarMSW::OnMouseEvent) | |
670 | END_EVENT_TABLE() | |
671 | ||
672 | BEGIN_EVENT_TABLE(wxToolBar95, wxToolBarBase) | |
673 | EVT_SIZE(wxToolBar95::OnSize) | |
674 | EVT_PAINT(wxToolBar95::OnPaint) | |
675 | EVT_KILL_FOCUS(wxToolBar95::OnKillFocus) | |
676 | EVT_MOUSE_EVENTS(wxToolBar95::OnMouseEvent) | |
677 | EVT_SYS_COLOUR_CHANGED(wxToolBar95::OnSysColourChanged) | |
678 | END_EVENT_TABLE() | |
679 | #endif | |
680 | ||
681 | BEGIN_EVENT_TABLE(wxGenericGrid, wxPanel) | |
682 | EVT_SIZE(wxGenericGrid::OnSize) | |
683 | EVT_PAINT(wxGenericGrid::OnPaint) | |
684 | EVT_MOUSE_EVENTS(wxGenericGrid::OnMouseEvent) | |
685 | EVT_TEXT(wxGRID_TEXT_CTRL, wxGenericGrid::OnText) | |
686 | EVT_COMMAND_SCROLL(wxGRID_HSCROLL, wxGenericGrid::OnGridScroll) | |
687 | EVT_COMMAND_SCROLL(wxGRID_VSCROLL, wxGenericGrid::OnGridScroll) | |
688 | END_EVENT_TABLE() | |
689 | ||
690 | BEGIN_EVENT_TABLE(wxControl, wxWindow) | |
691 | EVT_ERASE_BACKGROUND(wxControl::OnEraseBackground) | |
692 | END_EVENT_TABLE() | |
693 | ||
2049ba38 | 694 | #if !defined(__WXMSW__) || USE_GENERIC_DIALOGS_IN_MSW |
2bda0e17 KB |
695 | BEGIN_EVENT_TABLE(wxGenericMessageDialog, wxDialog) |
696 | EVT_BUTTON(wxID_YES, wxGenericMessageDialog::OnYes) | |
697 | EVT_BUTTON(wxID_NO, wxGenericMessageDialog::OnNo) | |
698 | EVT_BUTTON(wxID_CANCEL, wxGenericMessageDialog::OnCancel) | |
699 | END_EVENT_TABLE() | |
700 | ||
701 | BEGIN_EVENT_TABLE(wxGenericColourDialog, wxDialog) | |
702 | EVT_BUTTON(wxID_ADD_CUSTOM, wxGenericColourDialog::OnAddCustom) | |
703 | EVT_SLIDER(wxID_RED_SLIDER, wxGenericColourDialog::OnRedSlider) | |
704 | EVT_SLIDER(wxID_GREEN_SLIDER, wxGenericColourDialog::OnGreenSlider) | |
705 | EVT_SLIDER(wxID_BLUE_SLIDER, wxGenericColourDialog::OnBlueSlider) | |
706 | EVT_PAINT(wxGenericColourDialog::OnPaint) | |
707 | EVT_MOUSE_EVENTS(wxGenericColourDialog::OnMouseEvent) | |
708 | END_EVENT_TABLE() | |
709 | ||
710 | BEGIN_EVENT_TABLE(wxGenericFontDialog, wxDialog) | |
711 | EVT_CHECKBOX(wxID_FONT_UNDERLINE, wxGenericFontDialog::OnChangeFont) | |
712 | EVT_CHOICE(wxID_FONT_STYLE, wxGenericFontDialog::OnChangeFont) | |
713 | EVT_CHOICE(wxID_FONT_WEIGHT, wxGenericFontDialog::OnChangeFont) | |
714 | EVT_CHOICE(wxID_FONT_FAMILY, wxGenericFontDialog::OnChangeFont) | |
715 | EVT_CHOICE(wxID_FONT_COLOUR, wxGenericFontDialog::OnChangeFont) | |
716 | EVT_CHOICE(wxID_FONT_SIZE, wxGenericFontDialog::OnChangeFont) | |
717 | EVT_PAINT(wxGenericFontDialog::OnPaint) | |
718 | END_EVENT_TABLE() | |
719 | ||
720 | BEGIN_EVENT_TABLE(wxGenericPrintDialog, wxDialog) | |
721 | EVT_BUTTON(wxID_OK, wxGenericPrintDialog::OnOK) | |
722 | EVT_BUTTON(wxPRINTID_SETUP, wxGenericPrintDialog::OnSetup) | |
723 | EVT_RADIOBOX(wxPRINTID_RANGE, wxGenericPrintDialog::OnRange) | |
724 | END_EVENT_TABLE() | |
725 | ||
726 | #endif | |
727 | ||
728 | BEGIN_EVENT_TABLE(wxTextEntryDialog, wxDialog) | |
729 | EVT_BUTTON(wxID_OK, wxTextEntryDialog::OnOK) | |
730 | END_EVENT_TABLE() | |
731 | ||
732 | BEGIN_EVENT_TABLE(wxSingleChoiceDialog, wxDialog) | |
733 | EVT_BUTTON(wxID_OK, wxSingleChoiceDialog::OnOK) | |
734 | END_EVENT_TABLE() | |
735 | ||
736 | #include "wx/prntbase.h" | |
737 | ||
738 | BEGIN_EVENT_TABLE(wxPrintAbortDialog, wxDialog) | |
739 | EVT_BUTTON(wxID_CANCEL, wxPrintAbortDialog::OnCancel) | |
740 | END_EVENT_TABLE() | |
741 | ||
742 | BEGIN_EVENT_TABLE(wxPreviewControlBar, wxWindow) | |
743 | EVT_BUTTON(wxID_PREVIEW_CLOSE, wxPreviewControlBar::OnClose) | |
744 | EVT_BUTTON(wxID_PREVIEW_PRINT, wxPreviewControlBar::OnPrint) | |
745 | EVT_BUTTON(wxID_PREVIEW_PREVIOUS, wxPreviewControlBar::OnPrevious) | |
746 | EVT_BUTTON(wxID_PREVIEW_NEXT, wxPreviewControlBar::OnNext) | |
747 | EVT_CHOICE(wxID_PREVIEW_ZOOM, wxPreviewControlBar::OnZoom) | |
748 | END_EVENT_TABLE() | |
749 | ||
750 | #endif | |
751 | ||
752 | ||
753 | const wxSize wxDefaultSize(-1, -1); | |
754 | const wxPoint wxDefaultPosition(-1, -1); |