]>
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 | |
c575e45a | 11 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
78d14f80 VS |
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 | ||
621be1ec | 22 | #if wxUSE_XRC |
a1e4ec87 | 23 | |
78d14f80 VS |
24 | #include "wx/xrc/xh_dlg.h" |
25 | #include "wx/dialog.h" | |
26 | #include "wx/log.h" | |
27 | #include "wx/intl.h" | |
28 | ||
854e189f | 29 | IMPLEMENT_DYNAMIC_CLASS(wxDialogXmlHandler, wxXmlResourceHandler) |
78d14f80 VS |
30 | |
31 | wxDialogXmlHandler::wxDialogXmlHandler() : wxXmlResourceHandler() | |
32 | { | |
544fee32 VS |
33 | XRC_ADD_STYLE(wxSTAY_ON_TOP); |
34 | XRC_ADD_STYLE(wxCAPTION); | |
35 | XRC_ADD_STYLE(wxDEFAULT_DIALOG_STYLE); | |
36 | XRC_ADD_STYLE(wxTHICK_FRAME); | |
37 | XRC_ADD_STYLE(wxSYSTEM_MENU); | |
38 | XRC_ADD_STYLE(wxRESIZE_BORDER); | |
39 | XRC_ADD_STYLE(wxRESIZE_BOX); | |
79132cd3 | 40 | XRC_ADD_STYLE(wxCLOSE_BOX); |
544fee32 VS |
41 | XRC_ADD_STYLE(wxDIALOG_MODAL); |
42 | XRC_ADD_STYLE(wxDIALOG_MODELESS); | |
7161de85 | 43 | XRC_ADD_STYLE(wxDIALOG_NO_PARENT); |
544fee32 VS |
44 | |
45 | XRC_ADD_STYLE(wxNO_3D); | |
46 | XRC_ADD_STYLE(wxTAB_TRAVERSAL); | |
47 | XRC_ADD_STYLE(wxWS_EX_VALIDATE_RECURSIVELY); | |
2b5f62a0 VZ |
48 | XRC_ADD_STYLE(wxMAXIMIZE_BOX); |
49 | XRC_ADD_STYLE(wxMINIMIZE_BOX); | |
78d14f80 | 50 | |
78d14f80 VS |
51 | AddWindowStyles(); |
52 | } | |
53 | ||
78d14f80 | 54 | wxObject *wxDialogXmlHandler::DoCreateResource() |
92e898b0 RD |
55 | { |
56 | XRC_MAKE_INSTANCE(dlg, wxDialog); | |
57 | ||
78d14f80 VS |
58 | dlg->Create(m_parentAsWindow, |
59 | GetID(), | |
60 | GetText(wxT("title")), | |
61 | wxDefaultPosition, wxDefaultSize, | |
62 | GetStyle(wxT("style"), wxDEFAULT_DIALOG_STYLE), | |
63 | GetName()); | |
544fee32 | 64 | |
f2588180 VS |
65 | if (HasParam(wxT("size"))) |
66 | dlg->SetClientSize(GetSize()); | |
67 | if (HasParam(wxT("pos"))) | |
68 | dlg->Move(GetPosition()); | |
8b34993d VS |
69 | if (HasParam(wxT("icon"))) |
70 | dlg->SetIcon(GetIcon(wxT("icon"), wxART_FRAME_ICON)); | |
544fee32 | 71 | |
78d14f80 VS |
72 | SetupWindow(dlg); |
73 | ||
74 | CreateChildren(dlg); | |
92e898b0 | 75 | |
f80ea77b | 76 | if (GetBool(wxT("centered"), false)) |
78d14f80 | 77 | dlg->Centre(); |
92e898b0 | 78 | |
78d14f80 VS |
79 | return dlg; |
80 | } | |
81 | ||
78d14f80 VS |
82 | bool wxDialogXmlHandler::CanHandle(wxXmlNode *node) |
83 | { | |
84 | return IsOfClass(node, wxT("wxDialog")); | |
85 | } | |
a1e4ec87 | 86 | |
621be1ec | 87 | #endif // wxUSE_XRC |