projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Do not allow multiple selection when dragging in the 'value' column
[wxWidgets.git]
/
src
/
xrc
/
xh_slidr.cpp
diff --git
a/src/xrc/xh_slidr.cpp
b/src/xrc/xh_slidr.cpp
index 3aa21bd9f28dd9490c57c205d08357c4dd69d5fd..9f6e07cf31c479023a3ab8b12aa98e7d5887e7ad 100644
(file)
--- a/
src/xrc/xh_slidr.cpp
+++ b/
src/xrc/xh_slidr.cpp
@@
-1,5
+1,5
@@
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
-// Name: xh_slidr.cpp
+// Name:
src/xrc/
xh_slidr.cpp
// Purpose: XRC resource for wxSlider
// Author: Bob Mitchell
// Created: 2000/03/21
// Purpose: XRC resource for wxSlider
// Author: Bob Mitchell
// Created: 2000/03/21
@@
-18,12
+18,20
@@
#if wxUSE_XRC && wxUSE_SLIDER
#include "wx/xrc/xh_slidr.h"
#if wxUSE_XRC && wxUSE_SLIDER
#include "wx/xrc/xh_slidr.h"
-#include "wx/slider.h"
+
+#ifndef WX_PRECOMP
+ #include "wx/slider.h"
+#endif
+
+static const long DEFAULT_VALUE = 0;
+static const long DEFAULT_MIN = 0;
+static const long DEFAULT_MAX = 100;
+
IMPLEMENT_DYNAMIC_CLASS(wxSliderXmlHandler, wxXmlResourceHandler)
wxSliderXmlHandler::wxSliderXmlHandler()
IMPLEMENT_DYNAMIC_CLASS(wxSliderXmlHandler, wxXmlResourceHandler)
wxSliderXmlHandler::wxSliderXmlHandler()
-
:
wxXmlResourceHandler()
+
:
wxXmlResourceHandler()
{
XRC_ADD_STYLE(wxSL_HORIZONTAL);
XRC_ADD_STYLE(wxSL_VERTICAL);
{
XRC_ADD_STYLE(wxSL_HORIZONTAL);
XRC_ADD_STYLE(wxSL_VERTICAL);
@@
-45,9
+53,9
@@
wxObject *wxSliderXmlHandler::DoCreateResource()
control->Create(m_parentAsWindow,
GetID(),
control->Create(m_parentAsWindow,
GetID(),
- GetLong(wxT("value"),
wxSL_
DEFAULT_VALUE),
- GetLong(wxT("min"),
wxSL_
DEFAULT_MIN),
- GetLong(wxT("max"),
wxSL_
DEFAULT_MAX),
+ GetLong(wxT("value"), DEFAULT_VALUE),
+ GetLong(wxT("min"), DEFAULT_MIN),
+ GetLong(wxT("max"), DEFAULT_MAX),
GetPosition(), GetSize(),
GetStyle(),
wxDefaultValidator,
GetPosition(), GetSize(),
GetStyle(),
wxDefaultValidator,