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
76 lines
2.0 KiB
C++
76 lines
2.0 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/xrc/xh_gauge.cpp
|
|
// Purpose: XRC resource for wxGauge
|
|
// Author: Bob Mitchell
|
|
// Created: 2000/03/21
|
|
// RCS-ID: $Id: xh_gauge.cpp 39607 2006-06-06 22:02:01Z 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_GAUGE
|
|
|
|
#include "wx/xrc/xh_gauge.h"
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/gauge.h"
|
|
#endif
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxGaugeXmlHandler, wxXmlResourceHandler)
|
|
|
|
wxGaugeXmlHandler::wxGaugeXmlHandler()
|
|
:wxXmlResourceHandler()
|
|
{
|
|
XRC_ADD_STYLE(wxGA_HORIZONTAL);
|
|
XRC_ADD_STYLE(wxGA_VERTICAL);
|
|
#if WXWIN_COMPATIBILITY_2_6
|
|
XRC_ADD_STYLE(wxGA_PROGRESSBAR);
|
|
#endif // WXWIN_COMPATIBILITY_2_6
|
|
XRC_ADD_STYLE(wxGA_SMOOTH); // windows only
|
|
AddWindowStyles();
|
|
}
|
|
|
|
wxObject *wxGaugeXmlHandler::DoCreateResource()
|
|
{
|
|
XRC_MAKE_INSTANCE(control, wxGauge)
|
|
|
|
control->Create(m_parentAsWindow,
|
|
GetID(),
|
|
GetLong(wxT("range"), wxGAUGE_DEFAULT_RANGE),
|
|
GetPosition(), GetSize(),
|
|
GetStyle(),
|
|
wxDefaultValidator,
|
|
GetName());
|
|
|
|
if( HasParam(wxT("value")))
|
|
{
|
|
control->SetValue(GetLong(wxT("value")));
|
|
}
|
|
if( HasParam(wxT("shadow")))
|
|
{
|
|
control->SetShadowWidth(GetDimension(wxT("shadow")));
|
|
}
|
|
if( HasParam(wxT("bezel")))
|
|
{
|
|
control->SetBezelFace(GetDimension(wxT("bezel")));
|
|
}
|
|
|
|
SetupWindow(control);
|
|
|
|
return control;
|
|
}
|
|
|
|
bool wxGaugeXmlHandler::CanHandle(wxXmlNode *node)
|
|
{
|
|
return IsOfClass(node, wxT("wxGauge"));
|
|
}
|
|
|
|
#endif // wxUSE_XRC && wxUSE_GAUGE
|