]> git.saurik.com Git - wxWidgets.git/blame - src/xrc/xh_bmpbt.cpp
Start() should resume the stopwatch if it is suspended
[wxWidgets.git] / 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
25wxBitmapButtonXmlHandler::wxBitmapButtonXmlHandler()
26: wxXmlResourceHandler()
27{
544fee32
VS
28 XRC_ADD_STYLE(wxBU_AUTODRAW);
29 XRC_ADD_STYLE(wxBU_LEFT);
30 XRC_ADD_STYLE(wxBU_RIGHT);
31 XRC_ADD_STYLE(wxBU_TOP);
32 XRC_ADD_STYLE(wxBU_BOTTOM);
78d14f80
VS
33 AddWindowStyles();
34}
35
78d14f80
VS
36wxObject *wxBitmapButtonXmlHandler::DoCreateResource()
37{
544fee32
VS
38 XRC_MAKE_INSTANCE(button, wxBitmapButton)
39
40 button->Create(m_parentAsWindow,
41 GetID(),
42 GetBitmap(wxT("bitmap")),
43 GetPosition(), GetSize(),
44 GetStyle(wxT("style"), wxBU_AUTODRAW),
45 wxDefaultValidator,
46 GetName());
47 if (GetBool(wxT("default"), 0))
48 button->SetDefault();
78d14f80
VS
49 SetupWindow(button);
50
51 if (!GetParamValue(wxT("selected")).IsEmpty())
52 button->SetBitmapSelected(GetBitmap(wxT("selected")));
53 if (!GetParamValue(wxT("focus")).IsEmpty())
54 button->SetBitmapFocus(GetBitmap(wxT("focus")));
55 if (!GetParamValue(wxT("disabled")).IsEmpty())
56 button->SetBitmapDisabled(GetBitmap(wxT("disabled")));
57
58 return button;
59}
60
78d14f80
VS
61bool wxBitmapButtonXmlHandler::CanHandle(wxXmlNode *node)
62{
63 return IsOfClass(node, wxT("wxBitmapButton"));
64}