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
62 lines
1.7 KiB
C++
62 lines
1.7 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/xrc/xh_chckb.cpp
|
|
// Purpose: XRC resource for wxCheckBox
|
|
// Author: Bob Mitchell
|
|
// Created: 2000/03/21
|
|
// RCS-ID: $Id: xh_chckb.cpp 39428 2006-05-29 08:13:19Z 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_CHECKBOX
|
|
|
|
#include "wx/xrc/xh_chckb.h"
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/checkbox.h"
|
|
#endif
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxCheckBoxXmlHandler, wxXmlResourceHandler)
|
|
|
|
wxCheckBoxXmlHandler::wxCheckBoxXmlHandler()
|
|
: wxXmlResourceHandler()
|
|
{
|
|
XRC_ADD_STYLE(wxCHK_2STATE);
|
|
XRC_ADD_STYLE(wxCHK_3STATE);
|
|
XRC_ADD_STYLE(wxCHK_ALLOW_3RD_STATE_FOR_USER);
|
|
XRC_ADD_STYLE(wxALIGN_RIGHT);
|
|
AddWindowStyles();
|
|
}
|
|
|
|
wxObject *wxCheckBoxXmlHandler::DoCreateResource()
|
|
{
|
|
XRC_MAKE_INSTANCE(control, wxCheckBox)
|
|
|
|
control->Create(m_parentAsWindow,
|
|
GetID(),
|
|
GetText(wxT("label")),
|
|
GetPosition(), GetSize(),
|
|
GetStyle(),
|
|
wxDefaultValidator,
|
|
GetName());
|
|
|
|
control->SetValue(GetBool( wxT("checked")));
|
|
SetupWindow(control);
|
|
|
|
return control;
|
|
}
|
|
|
|
bool wxCheckBoxXmlHandler::CanHandle(wxXmlNode *node)
|
|
{
|
|
return IsOfClass(node, wxT("wxCheckBox"));
|
|
}
|
|
|
|
#endif // wxUSE_XRC && wxUSE_CHECKBOX
|