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