added TRUE default value for Show() argument
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15888 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -43,16 +43,14 @@ public:
|
|||||||
const wxValidator& validator = wxDefaultValidator,
|
const wxValidator& validator = wxDefaultValidator,
|
||||||
const wxString& name = wxSliderNameStr);
|
const wxString& name = wxSliderNameStr);
|
||||||
|
|
||||||
virtual int GetValue() const ;
|
virtual int GetValue() const;
|
||||||
virtual void SetValue(int);
|
virtual void SetValue(int);
|
||||||
|
|
||||||
virtual void DoGetSize(int *width, int *height) const;
|
|
||||||
|
|
||||||
void GetSize(int *w, int *h) const;
|
void GetSize(int *w, int *h) const;
|
||||||
|
|
||||||
void GetPosition(int *x, int *y) const;
|
void GetPosition(int *x, int *y) const;
|
||||||
|
|
||||||
bool Show(bool show);
|
bool Show(bool show = TRUE);
|
||||||
|
|
||||||
void SetRange(int minValue, int maxValue);
|
void SetRange(int minValue, int maxValue);
|
||||||
|
|
||||||
@@ -63,17 +61,17 @@ public:
|
|||||||
void SetTickFreq(int n, int pos);
|
void SetTickFreq(int n, int pos);
|
||||||
int GetTickFreq() const { return m_tickFreq; }
|
int GetTickFreq() const { return m_tickFreq; }
|
||||||
void SetPageSize(int pageSize);
|
void SetPageSize(int pageSize);
|
||||||
int GetPageSize() const ;
|
int GetPageSize() const;
|
||||||
void ClearSel() ;
|
void ClearSel();
|
||||||
void ClearTicks() ;
|
void ClearTicks();
|
||||||
void SetLineSize(int lineSize);
|
void SetLineSize(int lineSize);
|
||||||
int GetLineSize() const ;
|
int GetLineSize() const;
|
||||||
int GetSelEnd() const ;
|
int GetSelEnd() const;
|
||||||
int GetSelStart() const ;
|
int GetSelStart() const;
|
||||||
void SetSelection(int minPos, int maxPos);
|
void SetSelection(int minPos, int maxPos);
|
||||||
void SetThumbLength(int len) ;
|
void SetThumbLength(int len);
|
||||||
int GetThumbLength() const ;
|
int GetThumbLength() const;
|
||||||
void SetTick(int tickPos) ;
|
void SetTick(int tickPos);
|
||||||
|
|
||||||
// IMPLEMENTATION
|
// IMPLEMENTATION
|
||||||
WXHWND GetStaticMin() const { return m_staticMin; }
|
WXHWND GetStaticMin() const { return m_staticMin; }
|
||||||
@@ -97,6 +95,8 @@ protected:
|
|||||||
int m_lineSize;
|
int m_lineSize;
|
||||||
int m_tickFreq;
|
int m_tickFreq;
|
||||||
|
|
||||||
|
virtual void DoGetSize(int *width, int *height) const;
|
||||||
|
|
||||||
virtual void DoSetSize(int x, int y,
|
virtual void DoSetSize(int x, int y,
|
||||||
int width, int height,
|
int width, int height,
|
||||||
int sizeFlags = wxSIZE_AUTO);
|
int sizeFlags = wxSIZE_AUTO);
|
||||||
|
Reference in New Issue
Block a user