]>
Commit | Line | Data |
---|---|---|
b008b592 VS |
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 | { | |
ab708d5d | 39 | wxBitmapButton *button = new wxBitmapButton(m_parentAsWindow, |
b008b592 | 40 | GetID(), |
a559d708 | 41 | GetBitmap(wxT("bitmap")), |
b008b592 | 42 | GetPosition(), GetSize(), |
a559d708 | 43 | GetStyle(wxT("style"), wxBU_AUTODRAW), |
b008b592 VS |
44 | wxDefaultValidator, |
45 | GetName()); | |
a559d708 | 46 | if (GetBool(wxT("default"), 0) == 1) button->SetDefault(); |
b008b592 VS |
47 | SetupWindow(button); |
48 | ||
a559d708 VS |
49 | if (!GetParamValue(wxT("selected")).IsEmpty()) |
50 | button->SetBitmapSelected(GetBitmap(wxT("selected"))); | |
51 | if (!GetParamValue(wxT("focus")).IsEmpty()) | |
52 | button->SetBitmapFocus(GetBitmap(wxT("focus"))); | |
53 | if (!GetParamValue(wxT("disabled")).IsEmpty()) | |
54 | button->SetBitmapDisabled(GetBitmap(wxT("disabled"))); | |
d7716e1e | 55 | |
b008b592 VS |
56 | return button; |
57 | } | |
58 | ||
59 | ||
60 | ||
61 | bool wxBitmapButtonXmlHandler::CanHandle(wxXmlNode *node) | |
62 | { | |
a559d708 | 63 | return IsOfClass(node, wxT("wxBitmapButton")); |
b008b592 VS |
64 | } |
65 | ||
66 |