]> git.saurik.com Git - wxWidgets.git/blob - src/xrc/xh_bmpbt.cpp
moved XML classes to the core
[wxWidgets.git] / src / xrc / xh_bmpbt.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: xh_bmpbt.cpp
3 // Purpose: XRC resource for bitmap buttons
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_bmpbt.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_bmpbt.h"
23 #include <wx/bmpbuttn.h>
24
25 IMPLEMENT_DYNAMIC_CLASS(wxBitmapButtonXmlHandler, wxXmlResourceHandler)
26
27 wxBitmapButtonXmlHandler::wxBitmapButtonXmlHandler()
28 : wxXmlResourceHandler()
29 {
30 XRC_ADD_STYLE(wxBU_AUTODRAW);
31 XRC_ADD_STYLE(wxBU_LEFT);
32 XRC_ADD_STYLE(wxBU_RIGHT);
33 XRC_ADD_STYLE(wxBU_TOP);
34 XRC_ADD_STYLE(wxBU_BOTTOM);
35 AddWindowStyles();
36 }
37
38 wxObject *wxBitmapButtonXmlHandler::DoCreateResource()
39 {
40 XRC_MAKE_INSTANCE(button, wxBitmapButton)
41
42 button->Create(m_parentAsWindow,
43 GetID(),
44 GetBitmap(wxT("bitmap")),
45 GetPosition(), GetSize(),
46 GetStyle(wxT("style"), wxBU_AUTODRAW),
47 wxDefaultValidator,
48 GetName());
49 if (GetBool(wxT("default"), 0))
50 button->SetDefault();
51 SetupWindow(button);
52
53 if (!GetParamValue(wxT("selected")).IsEmpty())
54 button->SetBitmapSelected(GetBitmap(wxT("selected")));
55 if (!GetParamValue(wxT("focus")).IsEmpty())
56 button->SetBitmapFocus(GetBitmap(wxT("focus")));
57 if (!GetParamValue(wxT("disabled")).IsEmpty())
58 button->SetBitmapDisabled(GetBitmap(wxT("disabled")));
59
60 return button;
61 }
62
63 bool wxBitmapButtonXmlHandler::CanHandle(wxXmlNode *node)
64 {
65 return IsOfClass(node, wxT("wxBitmapButton"));
66 }