ab1ce969df
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39428 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
62 lines
1.5 KiB
C++
62 lines
1.5 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/xrc/xh_chckb.cpp
|
|
// Purpose: XRC resource for wxCheckBox
|
|
// Author: Bob Mitchell
|
|
// Created: 2000/03/21
|
|
// RCS-ID: $Id$
|
|
// 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
|