projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fixed: clicking on links in the help view did nothing
[wxWidgets.git]
/
src
/
xrc
/
xh_gauge.cpp
diff --git
a/src/xrc/xh_gauge.cpp
b/src/xrc/xh_gauge.cpp
index b49257895e624da39ffd13f165b6e0f90ea6d776..9d63af74d0e6f70406d0ba6608e999f4bda58a24 100644
(file)
--- a/
src/xrc/xh_gauge.cpp
+++ b/
src/xrc/xh_gauge.cpp
@@
-1,5
+1,5
@@
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
-// Name: xh_gauge.cpp
+// Name:
src/xrc/
xh_gauge.cpp
// Purpose: XRC resource for wxGauge
// Author: Bob Mitchell
// Created: 2000/03/21
// Purpose: XRC resource for wxGauge
// Author: Bob Mitchell
// Created: 2000/03/21
@@
-7,10
+7,6
@@
// Copyright: (c) 2000 Bob Mitchell and Verant Interactive
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// Copyright: (c) 2000 Bob Mitchell and Verant Interactive
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-
-#ifdef __GNUG__
-#pragma implementation "xh_gauge.h"
-#endif
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
@@
-19,56
+15,61
@@
#pragma hdrstop
#endif
#pragma hdrstop
#endif
+#if wxUSE_XRC && wxUSE_GAUGE
+
#include "wx/xrc/xh_gauge.h"
#include "wx/xrc/xh_gauge.h"
-#include "wx/gauge.h"
-#if wxUSE_GAUGE
+#ifndef WX_PRECOMP
+ #include "wx/gauge.h"
+#endif
-wxGaugeXmlHandler::wxGaugeXmlHandler()
-: wxXmlResourceHandler()
+IMPLEMENT_DYNAMIC_CLASS(wxGaugeXmlHandler, wxXmlResourceHandler)
+
+wxGaugeXmlHandler::wxGaugeXmlHandler()
+ :wxXmlResourceHandler()
{
{
- ADD_STYLE( wxGA_HORIZONTAL );
- ADD_STYLE( wxGA_VERTICAL );
- ADD_STYLE( wxGA_PROGRESSBAR );
- ADD_STYLE( wxGA_SMOOTH ); // windows only
+ 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()
AddWindowStyles();
}
wxObject *wxGaugeXmlHandler::DoCreateResource()
-{
- wxGauge *control = new wxGauge(m_parentAsWindow,
- GetID(),
- GetLong( wxT("range"), wxGAUGE_DEFAULT_RANGE),
- GetPosition(), GetSize(),
- GetStyle(),
- wxDefaultValidator,
- GetName()
- );
+{
+ XRC_MAKE_INSTANCE(control, wxGauge)
- if( HasParam( wxT("value") ))
+ 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")
));
+ control->SetValue(
GetLong(wxT("value")
));
}
}
- if( HasParam(
wxT("shadow")
))
+ if( HasParam(
wxT("shadow")
))
{
{
- control->SetShadowWidth(
GetDimension( wxT("shadow")
));
+ control->SetShadowWidth(
GetDimension(wxT("shadow")
));
}
}
- if( HasParam(
wxT("bezel")
))
+ if( HasParam(
wxT("bezel")
))
{
{
- control->SetBezelFace(
GetDimension( wxT("bezel")
));
+ control->SetBezelFace(
GetDimension(wxT("bezel")
));
}
SetupWindow(control);
}
SetupWindow(control);
-
+
return control;
}
return control;
}
-
-
bool wxGaugeXmlHandler::CanHandle(wxXmlNode *node)
{
return IsOfClass(node, wxT("wxGauge"));
}
bool wxGaugeXmlHandler::CanHandle(wxXmlNode *node)
{
return IsOfClass(node, wxT("wxGauge"));
}
-
-#endif // wxUSE_GAUGE
+#endif // wxUSE_XRC && wxUSE_GAUGE