Files correlati : Commento : Spostamento in libraries delle librerie esterne di Campo per una maggiore pulizia e organizzazione git-svn-id: svn://10.65.10.50/branches/R_10_00@24150 c028cbd2-c16b-5b4b-a496-9718f37d4682
67 lines
1.8 KiB
C++
67 lines
1.8 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/xrc/xh_radbt.cpp
|
|
// Purpose: XRC resource for wxRadioButton
|
|
// Author: Bob Mitchell
|
|
// Created: 2000/03/21
|
|
// RCS-ID: $Id: xh_radbt.cpp 39567 2006-06-05 16:46:15Z ABX $
|
|
// Copyright: (c) 2000 Bob Mitchell and Verant Interactive
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#if wxUSE_XRC && wxUSE_RADIOBTN
|
|
|
|
#include "wx/xrc/xh_radbt.h"
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/radiobut.h"
|
|
#endif
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxRadioButtonXmlHandler, wxXmlResourceHandler)
|
|
|
|
wxRadioButtonXmlHandler::wxRadioButtonXmlHandler()
|
|
: wxXmlResourceHandler()
|
|
{
|
|
XRC_ADD_STYLE(wxRB_GROUP);
|
|
XRC_ADD_STYLE(wxRB_SINGLE);
|
|
AddWindowStyles();
|
|
}
|
|
|
|
wxObject *wxRadioButtonXmlHandler::DoCreateResource()
|
|
{
|
|
/* BOBM - implementation note.
|
|
* once the wxBitmapRadioButton is implemented.
|
|
* look for a bitmap property. If not null,
|
|
* make it a wxBitmapRadioButton instead of the
|
|
* normal radio button.
|
|
*/
|
|
|
|
XRC_MAKE_INSTANCE(control, wxRadioButton)
|
|
|
|
control->Create(m_parentAsWindow,
|
|
GetID(),
|
|
GetText(wxT("label")),
|
|
GetPosition(), GetSize(),
|
|
GetStyle(),
|
|
wxDefaultValidator,
|
|
GetName());
|
|
|
|
control->SetValue(GetBool(wxT("value"), 0));
|
|
SetupWindow(control);
|
|
|
|
return control;
|
|
}
|
|
|
|
bool wxRadioButtonXmlHandler::CanHandle(wxXmlNode *node)
|
|
{
|
|
return IsOfClass(node, wxT("wxRadioButton"));
|
|
}
|
|
|
|
#endif // wxUSE_XRC && wxUSE_RADIOBTN
|