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