]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: src/xrc/xh_frame.cpp | |
3 | // Purpose: XRC resource for dialogs | |
4 | // Author: Vaclav Slavik & Aleks. | |
5 | // Created: 2000/03/05 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) 2000 Vaclav Slavik | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | // For compilers that support precompilation, includes "wx.h". | |
12 | #include "wx/wxprec.h" | |
13 | ||
14 | #ifdef __BORLANDC__ | |
15 | #pragma hdrstop | |
16 | #endif | |
17 | ||
18 | #if wxUSE_XRC | |
19 | ||
20 | #include "wx/xrc/xh_frame.h" | |
21 | ||
22 | #ifndef WX_PRECOMP | |
23 | #include "wx/intl.h" | |
24 | #endif | |
25 | ||
26 | #include "wx/frame.h" | |
27 | #include "wx/dialog.h" // to get wxDEFAULT_DIALOG_STYLE | |
28 | #include "wx/log.h" | |
29 | ||
30 | IMPLEMENT_DYNAMIC_CLASS(wxFrameXmlHandler, wxXmlResourceHandler) | |
31 | ||
32 | wxFrameXmlHandler::wxFrameXmlHandler() : wxXmlResourceHandler() | |
33 | { | |
34 | XRC_ADD_STYLE(wxSTAY_ON_TOP); | |
35 | XRC_ADD_STYLE(wxCAPTION); | |
36 | XRC_ADD_STYLE(wxDEFAULT_DIALOG_STYLE); | |
37 | XRC_ADD_STYLE(wxDEFAULT_FRAME_STYLE); | |
38 | #if WXWIN_COMPATIBILITY_2_6 | |
39 | XRC_ADD_STYLE(wxTHICK_FRAME); | |
40 | #endif // WXWIN_COMPATIBILITY_2_6 | |
41 | XRC_ADD_STYLE(wxSYSTEM_MENU); | |
42 | XRC_ADD_STYLE(wxRESIZE_BORDER); | |
43 | #if WXWIN_COMPATIBILITY_2_6 | |
44 | XRC_ADD_STYLE(wxRESIZE_BOX); | |
45 | #endif // WXWIN_COMPATIBILITY_2_6 | |
46 | XRC_ADD_STYLE(wxCLOSE_BOX); | |
47 | ||
48 | XRC_ADD_STYLE(wxFRAME_NO_TASKBAR); | |
49 | XRC_ADD_STYLE(wxFRAME_SHAPED); | |
50 | XRC_ADD_STYLE(wxFRAME_TOOL_WINDOW); | |
51 | XRC_ADD_STYLE(wxFRAME_FLOAT_ON_PARENT); | |
52 | XRC_ADD_STYLE(wxMAXIMIZE_BOX); | |
53 | XRC_ADD_STYLE(wxMINIMIZE_BOX); | |
54 | XRC_ADD_STYLE(wxSTAY_ON_TOP); | |
55 | ||
56 | #if WXWIN_COMPATIBILITY_2_6 | |
57 | XRC_ADD_STYLE(wxNO_3D); | |
58 | #endif // WXWIN_COMPATIBILITY_2_6 | |
59 | XRC_ADD_STYLE(wxTAB_TRAVERSAL); | |
60 | XRC_ADD_STYLE(wxWS_EX_VALIDATE_RECURSIVELY); | |
61 | XRC_ADD_STYLE(wxFRAME_EX_METAL); | |
62 | XRC_ADD_STYLE(wxFRAME_EX_CONTEXTHELP); | |
63 | ||
64 | AddWindowStyles(); | |
65 | } | |
66 | ||
67 | wxObject *wxFrameXmlHandler::DoCreateResource() | |
68 | { | |
69 | XRC_MAKE_INSTANCE(frame, wxFrame); | |
70 | ||
71 | frame->Create(m_parentAsWindow, | |
72 | GetID(), | |
73 | GetText(wxT("title")), | |
74 | wxDefaultPosition, wxDefaultSize, | |
75 | GetStyle(wxT("style"), wxDEFAULT_FRAME_STYLE), | |
76 | GetName()); | |
77 | ||
78 | if (HasParam(wxT("size"))) | |
79 | frame->SetClientSize(GetSize(wxT("size"), frame)); | |
80 | if (HasParam(wxT("pos"))) | |
81 | frame->Move(GetPosition()); | |
82 | if (HasParam(wxT("icon"))) | |
83 | frame->SetIcon(GetIcon(wxT("icon"), wxART_FRAME_ICON)); | |
84 | ||
85 | SetupWindow(frame); | |
86 | ||
87 | CreateChildren(frame); | |
88 | ||
89 | if (GetBool(wxT("centered"), false)) | |
90 | frame->Centre(); | |
91 | ||
92 | return frame; | |
93 | } | |
94 | ||
95 | bool wxFrameXmlHandler::CanHandle(wxXmlNode *node) | |
96 | { | |
97 | return IsOfClass(node, wxT("wxFrame")); | |
98 | } | |
99 | ||
100 | #endif // wxUSE_XRC |