]> git.saurik.com Git - wxWidgets.git/blame - contrib/src/xrc/xh_bmpbt.cpp
Regenerated makefiles for 2.5.2
[wxWidgets.git] / contrib / src / xrc / xh_bmpbt.cpp
CommitLineData
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/////////////////////////////////////////////////////////////////////////////
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
854e189f
VS
25IMPLEMENT_DYNAMIC_CLASS(wxBitmapButtonXmlHandler, wxXmlResourceHandler)
26
78d14f80
VS
27wxBitmapButtonXmlHandler::wxBitmapButtonXmlHandler()
28: wxXmlResourceHandler()
29{
544fee32
VS
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);
d8e1aa86 35 XRC_ADD_STYLE(wxBU_EXACTFIT);
78d14f80
VS
36 AddWindowStyles();
37}
38
78d14f80
VS
39wxObject *wxBitmapButtonXmlHandler::DoCreateResource()
40{
544fee32
VS
41 XRC_MAKE_INSTANCE(button, wxBitmapButton)
42
43 button->Create(m_parentAsWindow,
44 GetID(),
45 GetBitmap(wxT("bitmap")),
46 GetPosition(), GetSize(),
47 GetStyle(wxT("style"), wxBU_AUTODRAW),
48 wxDefaultValidator,
49 GetName());
50 if (GetBool(wxT("default"), 0))
51 button->SetDefault();
78d14f80
VS
52 SetupWindow(button);
53
54 if (!GetParamValue(wxT("selected")).IsEmpty())
55 button->SetBitmapSelected(GetBitmap(wxT("selected")));
56 if (!GetParamValue(wxT("focus")).IsEmpty())
57 button->SetBitmapFocus(GetBitmap(wxT("focus")));
58 if (!GetParamValue(wxT("disabled")).IsEmpty())
59 button->SetBitmapDisabled(GetBitmap(wxT("disabled")));
60
61 return button;
62}
63
78d14f80
VS
64bool wxBitmapButtonXmlHandler::CanHandle(wxXmlNode *node)
65{
66 return IsOfClass(node, wxT("wxBitmapButton"));
67}