]> git.saurik.com Git - wxWidgets.git/blob - src/xrc/xh_bttn.cpp
more options for JPEG and TIFF handlers (slightly modified patch 1044470)
[wxWidgets.git] / src / xrc / xh_bttn.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: xh_bttn.cpp
3 // Purpose: XRC resource for buttons
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 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
12 #pragma implementation "xh_bttn.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 #if wxUSE_XRC
23
24 #include "wx/xrc/xh_bttn.h"
25 #include "wx/button.h"
26
27 IMPLEMENT_DYNAMIC_CLASS(wxButtonXmlHandler, wxXmlResourceHandler)
28
29 wxButtonXmlHandler::wxButtonXmlHandler()
30 : wxXmlResourceHandler()
31 {
32 XRC_ADD_STYLE(wxBU_LEFT);
33 XRC_ADD_STYLE(wxBU_RIGHT);
34 XRC_ADD_STYLE(wxBU_TOP);
35 XRC_ADD_STYLE(wxBU_BOTTOM);
36 XRC_ADD_STYLE(wxBU_EXACTFIT);
37 AddWindowStyles();
38 }
39
40 wxObject *wxButtonXmlHandler::DoCreateResource()
41 {
42 XRC_MAKE_INSTANCE(button, wxButton)
43
44 button->Create(m_parentAsWindow,
45 GetID(),
46 GetText(wxT("label")),
47 GetPosition(), GetSize(),
48 GetStyle(),
49 wxDefaultValidator,
50 GetName());
51
52 if (GetBool(wxT("default"), 0))
53 button->SetDefault();
54 SetupWindow(button);
55
56 return button;
57 }
58
59 bool wxButtonXmlHandler::CanHandle(wxXmlNode *node)
60 {
61 return IsOfClass(node, wxT("wxButton"));
62 }
63
64 #endif // wxUSE_XRC