git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4707
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
class wxSlider: public wxControl
{
class wxSlider: public wxControl
{
- DECLARE_DYNAMIC_CLASS(wxSlider)
-
- public:
- wxSlider(void);
inline wxSlider( wxWindow *parent, wxWindowID id,
int value, int minValue, int maxValue,
const wxPoint& pos = wxDefaultPosition,
inline wxSlider( wxWindow *parent, wxWindowID id,
int value, int minValue, int maxValue,
const wxPoint& pos = wxDefaultPosition,
{
Create( parent, id, value, minValue, maxValue, pos, size, style, validator, name );
}
{
Create( parent, id, value, minValue, maxValue, pos, size, style, validator, name );
}
bool Create(wxWindow *parent, wxWindowID id,
int value, int minValue, int maxValue,
const wxPoint& pos = wxDefaultPosition,
bool Create(wxWindow *parent, wxWindowID id,
int value, int minValue, int maxValue,
const wxPoint& pos = wxDefaultPosition,
long style = wxSL_HORIZONTAL,
const wxValidator& validator = wxDefaultValidator,
const wxString& name = wxSliderNameStr );
long style = wxSL_HORIZONTAL,
const wxValidator& validator = wxDefaultValidator,
const wxString& name = wxSliderNameStr );
- virtual int GetValue(void) const;
+ virtual int GetValue() const;
virtual void SetValue( int );
void SetRange( int minValue, int maxValue );
virtual void SetValue( int );
void SetRange( int minValue, int maxValue );
- int GetMin(void) const;
- int GetMax(void) const;
+ int GetMin() const;
+ int GetMax() const;
void SetTickFreq( int n, int pos );
void SetTickFreq( int n, int pos );
- int GetTickFreq(void) const;
+ int GetTickFreq() const;
void SetPageSize( int pageSize );
void SetPageSize( int pageSize );
- int GetPageSize(void) const;
- void ClearSel(void);
- void ClearTicks(void);
+ int GetPageSize() const;
+ void ClearSel();
+ void ClearTicks();
void SetLineSize( int lineSize );
void SetLineSize( int lineSize );
- int GetLineSize(void) const;
- int GetSelEnd(void) const;
- int GetSelStart(void) const;
+ int GetLineSize() const;
+ int GetSelEnd() const;
+ int GetSelStart() const;
void SetSelection( int minPos, int maxPos );
void SetThumbLength( int len );
void SetSelection( int minPos, int maxPos );
void SetThumbLength( int len );
- int GetThumbLength(void) const;
+ int GetThumbLength() const;
void SetTick( int tickPos );
void SetTick( int tickPos );
+ // implementation
+ // --------------
bool IsOwnGtkWindow( GdkWindow *window );
void ApplyWidgetStyle();
bool IsOwnGtkWindow( GdkWindow *window );
void ApplyWidgetStyle();
GtkAdjustment *m_adjust;
float m_oldPos;
GtkAdjustment *m_adjust;
float m_oldPos;
+private:
+ DECLARE_DYNAMIC_CLASS(wxSlider)
+#include "wx/defs.h"
+
+#if wxUSE_SPINBTN
+
+#include "wx/control.h"
+
//-----------------------------------------------------------------------------
// wxSpinButton
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// wxSpinButton
//-----------------------------------------------------------------------------
DECLARE_DYNAMIC_CLASS(wxSpinButton)
};
DECLARE_DYNAMIC_CLASS(wxSpinButton)
};
+#endif
+ // wxUSE_SPINBTN
+
#endif
// __GTKSPINBUTTH__
#endif
// __GTKSPINBUTTH__
+#include "wx/defs.h"
+
+#if wxUSE_SPINCTRL
+
+#include "wx/control.h"
+
//-----------------------------------------------------------------------------
// wxSpinCtrl
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// wxSpinCtrl
//-----------------------------------------------------------------------------
virtual int GetMax() const;
// implementation
virtual int GetMax() const;
// implementation
void OnChar( wxKeyEvent &event );
bool IsOwnGtkWindow( GdkWindow *window );
void OnChar( wxKeyEvent &event );
bool IsOwnGtkWindow( GdkWindow *window );
+#endif
+ // wxUSE_SPINCTRL
+
#endif
// __GTKSPINCTRLH__
#endif
// __GTKSPINCTRLH__
class wxSlider: public wxControl
{
class wxSlider: public wxControl
{
- DECLARE_DYNAMIC_CLASS(wxSlider)
-
- public:
- wxSlider(void);
inline wxSlider( wxWindow *parent, wxWindowID id,
int value, int minValue, int maxValue,
const wxPoint& pos = wxDefaultPosition,
inline wxSlider( wxWindow *parent, wxWindowID id,
int value, int minValue, int maxValue,
const wxPoint& pos = wxDefaultPosition,
{
Create( parent, id, value, minValue, maxValue, pos, size, style, validator, name );
}
{
Create( parent, id, value, minValue, maxValue, pos, size, style, validator, name );
}
bool Create(wxWindow *parent, wxWindowID id,
int value, int minValue, int maxValue,
const wxPoint& pos = wxDefaultPosition,
bool Create(wxWindow *parent, wxWindowID id,
int value, int minValue, int maxValue,
const wxPoint& pos = wxDefaultPosition,
long style = wxSL_HORIZONTAL,
const wxValidator& validator = wxDefaultValidator,
const wxString& name = wxSliderNameStr );
long style = wxSL_HORIZONTAL,
const wxValidator& validator = wxDefaultValidator,
const wxString& name = wxSliderNameStr );
- virtual int GetValue(void) const;
+ virtual int GetValue() const;
virtual void SetValue( int );
void SetRange( int minValue, int maxValue );
virtual void SetValue( int );
void SetRange( int minValue, int maxValue );
- int GetMin(void) const;
- int GetMax(void) const;
+ int GetMin() const;
+ int GetMax() const;
void SetTickFreq( int n, int pos );
void SetTickFreq( int n, int pos );
- int GetTickFreq(void) const;
+ int GetTickFreq() const;
void SetPageSize( int pageSize );
void SetPageSize( int pageSize );
- int GetPageSize(void) const;
- void ClearSel(void);
- void ClearTicks(void);
+ int GetPageSize() const;
+ void ClearSel();
+ void ClearTicks();
void SetLineSize( int lineSize );
void SetLineSize( int lineSize );
- int GetLineSize(void) const;
- int GetSelEnd(void) const;
- int GetSelStart(void) const;
+ int GetLineSize() const;
+ int GetSelEnd() const;
+ int GetSelStart() const;
void SetSelection( int minPos, int maxPos );
void SetThumbLength( int len );
void SetSelection( int minPos, int maxPos );
void SetThumbLength( int len );
- int GetThumbLength(void) const;
+ int GetThumbLength() const;
void SetTick( int tickPos );
void SetTick( int tickPos );
+ // implementation
+ // --------------
bool IsOwnGtkWindow( GdkWindow *window );
void ApplyWidgetStyle();
bool IsOwnGtkWindow( GdkWindow *window );
void ApplyWidgetStyle();
GtkAdjustment *m_adjust;
float m_oldPos;
GtkAdjustment *m_adjust;
float m_oldPos;
+private:
+ DECLARE_DYNAMIC_CLASS(wxSlider)
+#include "wx/defs.h"
+
+#if wxUSE_SPINBTN
+
+#include "wx/control.h"
+
//-----------------------------------------------------------------------------
// wxSpinButton
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// wxSpinButton
//-----------------------------------------------------------------------------
DECLARE_DYNAMIC_CLASS(wxSpinButton)
};
DECLARE_DYNAMIC_CLASS(wxSpinButton)
};
+#endif
+ // wxUSE_SPINBTN
+
#endif
// __GTKSPINBUTTH__
#endif
// __GTKSPINBUTTH__
+#include "wx/defs.h"
+
+#if wxUSE_SPINCTRL
+
+#include "wx/control.h"
+
//-----------------------------------------------------------------------------
// wxSpinCtrl
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// wxSpinCtrl
//-----------------------------------------------------------------------------
virtual int GetMax() const;
// implementation
virtual int GetMax() const;
// implementation
void OnChar( wxKeyEvent &event );
bool IsOwnGtkWindow( GdkWindow *window );
void OnChar( wxKeyEvent &event );
bool IsOwnGtkWindow( GdkWindow *window );
+#endif
+ // wxUSE_SPINCTRL
+
#endif
// __GTKSPINCTRLH__
#endif
// __GTKSPINCTRLH__