]> git.saurik.com Git - wxWidgets.git/blob - contrib/src/xml/xh_bmpbt.cpp
added new controls: wxBitmapButton, wxCalendarCtrl, wxListCtrl, wxScrollBar, wxStatic...
[wxWidgets.git] / contrib / src / xml / xh_bmpbt.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: xh_bmpbt.cpp
3 // Purpose: XML 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/xml/xh_bmpbt.h"
23 #include <wx/bmpbuttn.h>
24
25 wxBitmapButtonXmlHandler::wxBitmapButtonXmlHandler()
26 : wxXmlResourceHandler()
27 {
28 ADD_STYLE(wxBU_AUTODRAW);
29 ADD_STYLE(wxBU_LEFT);
30 ADD_STYLE(wxBU_RIGHT);
31 ADD_STYLE(wxBU_TOP);
32 ADD_STYLE(wxBU_BOTTOM);
33 AddWindowStyles();
34 }
35
36
37 wxObject *wxBitmapButtonXmlHandler::DoCreateResource()
38 {
39 wxBitmapButton *button = new wxBitmapButton(m_ParentAsWindow,
40 GetID(),
41 GetBitmap(_T("bitmap"), GetSize()),
42 //GetBitmap(_T("bitmap")),
43 GetPosition(), GetSize(),
44 GetStyle(_T("style"), wxBU_AUTODRAW),
45 wxDefaultValidator,
46 GetName());
47 if (GetBool(_T("default"), 0) == 1) button->SetDefault();
48 SetupWindow(button);
49
50 return button;
51 }
52
53
54
55 bool wxBitmapButtonXmlHandler::CanHandle(wxXmlNode *node)
56 {
57 return node->GetName() == _T("bitmapbutton");
58 }
59
60