]>
Commit | Line | Data |
---|---|---|
78d14f80 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: xh_stbox.cpp | |
b5d6954b | 3 | // Purpose: XRC resource for wxStaticLine |
78d14f80 VS |
4 | // Author: Brian Gavin |
5 | // Created: 2000/09/09 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) 2000 Brian Gavin | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifdef __GNUG__ | |
12 | #pragma implementation "xh_stlin.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_stlin.h" | |
23 | #include "wx/statline.h" | |
24 | ||
25 | #if wxUSE_STATLINE | |
26 | ||
854e189f VS |
27 | IMPLEMENT_DYNAMIC_CLASS(wxStaticLineXmlHandler, wxXmlResourceHandler) |
28 | ||
78d14f80 VS |
29 | wxStaticLineXmlHandler::wxStaticLineXmlHandler() |
30 | : wxXmlResourceHandler() | |
31 | { | |
544fee32 VS |
32 | XRC_ADD_STYLE(wxLI_HORIZONTAL); |
33 | XRC_ADD_STYLE(wxLI_VERTICAL); | |
78d14f80 VS |
34 | AddWindowStyles(); |
35 | } | |
36 | ||
37 | wxObject *wxStaticLineXmlHandler::DoCreateResource() | |
38 | { | |
544fee32 | 39 | XRC_MAKE_INSTANCE(line, wxStaticLine) |
f2588180 VS |
40 | |
41 | line->Create(m_parentAsWindow, | |
42 | GetID(), | |
43 | GetPosition(), GetSize(), | |
44 | GetStyle(wxT("style"), wxLI_HORIZONTAL), | |
45 | GetName()); | |
46 | ||
78d14f80 VS |
47 | SetupWindow(line); |
48 | ||
49 | return line; | |
50 | } | |
51 | ||
78d14f80 VS |
52 | bool wxStaticLineXmlHandler::CanHandle(wxXmlNode *node) |
53 | { | |
54 | return IsOfClass(node, wxT("wxStaticLine")); | |
55 | } | |
56 | ||
57 | #endif |