]>
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 | ///////////////////////////////////////////////////////////////////////////// | |
92e898b0 | 10 | |
78d14f80 VS |
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 | ||
854e189f | 27 | IMPLEMENT_DYNAMIC_CLASS(wxDialogXmlHandler, wxXmlResourceHandler) |
78d14f80 VS |
28 | |
29 | wxDialogXmlHandler::wxDialogXmlHandler() : wxXmlResourceHandler() | |
30 | { | |
544fee32 VS |
31 | XRC_ADD_STYLE(wxSTAY_ON_TOP); |
32 | XRC_ADD_STYLE(wxCAPTION); | |
33 | XRC_ADD_STYLE(wxDEFAULT_DIALOG_STYLE); | |
34 | XRC_ADD_STYLE(wxTHICK_FRAME); | |
35 | XRC_ADD_STYLE(wxSYSTEM_MENU); | |
36 | XRC_ADD_STYLE(wxRESIZE_BORDER); | |
37 | XRC_ADD_STYLE(wxRESIZE_BOX); | |
79132cd3 | 38 | XRC_ADD_STYLE(wxCLOSE_BOX); |
544fee32 VS |
39 | XRC_ADD_STYLE(wxDIALOG_MODAL); |
40 | XRC_ADD_STYLE(wxDIALOG_MODELESS); | |
7161de85 | 41 | XRC_ADD_STYLE(wxDIALOG_NO_PARENT); |
544fee32 VS |
42 | |
43 | XRC_ADD_STYLE(wxNO_3D); | |
44 | XRC_ADD_STYLE(wxTAB_TRAVERSAL); | |
45 | XRC_ADD_STYLE(wxWS_EX_VALIDATE_RECURSIVELY); | |
2b5f62a0 VZ |
46 | XRC_ADD_STYLE(wxMAXIMIZE_BOX); |
47 | XRC_ADD_STYLE(wxMINIMIZE_BOX); | |
78d14f80 | 48 | |
78d14f80 VS |
49 | AddWindowStyles(); |
50 | } | |
51 | ||
78d14f80 | 52 | wxObject *wxDialogXmlHandler::DoCreateResource() |
92e898b0 RD |
53 | { |
54 | XRC_MAKE_INSTANCE(dlg, wxDialog); | |
55 | ||
78d14f80 VS |
56 | dlg->Create(m_parentAsWindow, |
57 | GetID(), | |
58 | GetText(wxT("title")), | |
59 | wxDefaultPosition, wxDefaultSize, | |
60 | GetStyle(wxT("style"), wxDEFAULT_DIALOG_STYLE), | |
61 | GetName()); | |
544fee32 | 62 | |
f2588180 VS |
63 | if (HasParam(wxT("size"))) |
64 | dlg->SetClientSize(GetSize()); | |
65 | if (HasParam(wxT("pos"))) | |
66 | dlg->Move(GetPosition()); | |
544fee32 | 67 | |
78d14f80 VS |
68 | SetupWindow(dlg); |
69 | ||
70 | CreateChildren(dlg); | |
92e898b0 | 71 | |
f80ea77b | 72 | if (GetBool(wxT("centered"), false)) |
78d14f80 | 73 | dlg->Centre(); |
92e898b0 | 74 | |
78d14f80 VS |
75 | return dlg; |
76 | } | |
77 | ||
78d14f80 VS |
78 | bool wxDialogXmlHandler::CanHandle(wxXmlNode *node) |
79 | { | |
80 | return IsOfClass(node, wxT("wxDialog")); | |
81 | } |