]>
Commit | Line | Data |
---|---|---|
78d14f80 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: xh_bmpbt.cpp | |
b5d6954b | 3 | // Purpose: XRC resource for bitmap buttons |
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 | ///////////////////////////////////////////////////////////////////////////// | |
f80ea77b | 10 | |
c575e45a | 11 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
78d14f80 VS |
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 | ||
621be1ec | 22 | #if wxUSE_XRC |
a1e4ec87 | 23 | |
78d14f80 | 24 | #include "wx/xrc/xh_bmpbt.h" |
d8418952 | 25 | #include "wx/bmpbuttn.h" |
78d14f80 | 26 | |
854e189f VS |
27 | IMPLEMENT_DYNAMIC_CLASS(wxBitmapButtonXmlHandler, wxXmlResourceHandler) |
28 | ||
f80ea77b WS |
29 | wxBitmapButtonXmlHandler::wxBitmapButtonXmlHandler() |
30 | : wxXmlResourceHandler() | |
78d14f80 | 31 | { |
544fee32 VS |
32 | XRC_ADD_STYLE(wxBU_AUTODRAW); |
33 | XRC_ADD_STYLE(wxBU_LEFT); | |
34 | XRC_ADD_STYLE(wxBU_RIGHT); | |
35 | XRC_ADD_STYLE(wxBU_TOP); | |
36 | XRC_ADD_STYLE(wxBU_BOTTOM); | |
d8e1aa86 | 37 | XRC_ADD_STYLE(wxBU_EXACTFIT); |
78d14f80 VS |
38 | AddWindowStyles(); |
39 | } | |
40 | ||
78d14f80 | 41 | wxObject *wxBitmapButtonXmlHandler::DoCreateResource() |
f80ea77b | 42 | { |
544fee32 VS |
43 | XRC_MAKE_INSTANCE(button, wxBitmapButton) |
44 | ||
45 | button->Create(m_parentAsWindow, | |
46 | GetID(), | |
abda7717 | 47 | GetBitmap(wxT("bitmap"), wxART_BUTTON), |
544fee32 VS |
48 | GetPosition(), GetSize(), |
49 | GetStyle(wxT("style"), wxBU_AUTODRAW), | |
50 | wxDefaultValidator, | |
51 | GetName()); | |
52 | if (GetBool(wxT("default"), 0)) | |
53 | button->SetDefault(); | |
78d14f80 | 54 | SetupWindow(button); |
f80ea77b | 55 | |
78d14f80 VS |
56 | if (!GetParamValue(wxT("selected")).IsEmpty()) |
57 | button->SetBitmapSelected(GetBitmap(wxT("selected"))); | |
58 | if (!GetParamValue(wxT("focus")).IsEmpty()) | |
59 | button->SetBitmapFocus(GetBitmap(wxT("focus"))); | |
60 | if (!GetParamValue(wxT("disabled")).IsEmpty()) | |
61 | button->SetBitmapDisabled(GetBitmap(wxT("disabled"))); | |
f80ea77b | 62 | |
78d14f80 VS |
63 | return button; |
64 | } | |
65 | ||
78d14f80 VS |
66 | bool wxBitmapButtonXmlHandler::CanHandle(wxXmlNode *node) |
67 | { | |
68 | return IsOfClass(node, wxT("wxBitmapButton")); | |
69 | } | |
a1e4ec87 | 70 | |
621be1ec | 71 | #endif // wxUSE_XRC |