]>
Commit | Line | Data |
---|---|---|
78d14f80 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: xh_dlg.cpp | |
b5d6954b | 3 | // Purpose: XRC resource for dialogs |
78d14f80 VS |
4 | // Author: Vaclav Slavik |
5 | // Created: 2000/03/05 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) 2000 Vaclav Slavik | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifdef __GNUG__ | |
12 | #pragma implementation "xh_dlg.h" | |
13 | #endif | |
14 | ||
15 | // For compilers that support precompilation, includes "wx.h". | |
16 | #include "wx/wxprec.h" | |
17 | ||
18 | #ifdef __BORLANDC__ | |
19 | #pragma hdrstop | |
20 | #endif | |
21 | ||
22 | #include "wx/xrc/xh_dlg.h" | |
23 | #include "wx/dialog.h" | |
24 | #include "wx/log.h" | |
25 | #include "wx/intl.h" | |
26 | ||
27 | ||
28 | wxDialogXmlHandler::wxDialogXmlHandler() : wxXmlResourceHandler() | |
29 | { | |
30 | ADD_STYLE(wxSTAY_ON_TOP); | |
31 | ADD_STYLE(wxCAPTION); | |
32 | ADD_STYLE(wxDEFAULT_DIALOG_STYLE); | |
33 | ADD_STYLE(wxTHICK_FRAME); | |
34 | ADD_STYLE(wxSYSTEM_MENU); | |
35 | ADD_STYLE(wxRESIZE_BORDER); | |
36 | ADD_STYLE(wxRESIZE_BOX); | |
37 | ADD_STYLE(wxDIALOG_MODAL); | |
38 | ADD_STYLE(wxDIALOG_MODELESS); | |
39 | ||
40 | ADD_STYLE(wxNO_3D); | |
41 | ADD_STYLE(wxTAB_TRAVERSAL); | |
42 | ADD_STYLE(wxWS_EX_VALIDATE_RECURSIVELY); | |
43 | ADD_STYLE(wxCLIP_CHILDREN); | |
44 | AddWindowStyles(); | |
45 | } | |
46 | ||
47 | ||
48 | ||
49 | wxObject *wxDialogXmlHandler::DoCreateResource() | |
50 | { | |
51 | wxDialog *dlg = wxDynamicCast(m_instance, wxDialog); | |
52 | ||
b5d6954b | 53 | wxASSERT_MSG(dlg, _("XRC resource: Cannot create dialog without instance.")); |
78d14f80 VS |
54 | |
55 | dlg->Create(m_parentAsWindow, | |
56 | GetID(), | |
57 | GetText(wxT("title")), | |
58 | wxDefaultPosition, wxDefaultSize, | |
59 | GetStyle(wxT("style"), wxDEFAULT_DIALOG_STYLE), | |
60 | GetName()); | |
61 | dlg->SetClientSize(GetSize()); | |
62 | dlg->Move(GetPosition()); | |
63 | SetupWindow(dlg); | |
64 | ||
65 | CreateChildren(dlg); | |
66 | ||
1489a2c0 | 67 | if (GetBool(wxT("centered"), FALSE)) |
78d14f80 VS |
68 | dlg->Centre(); |
69 | ||
70 | return dlg; | |
71 | } | |
72 | ||
73 | ||
74 | ||
75 | bool wxDialogXmlHandler::CanHandle(wxXmlNode *node) | |
76 | { | |
77 | return IsOfClass(node, wxT("wxDialog")); | |
78 | } | |
79 | ||
80 |