#ifndef _SLIDER95_H_
#define _SLIDER95_H_
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma interface "slider95.h"
#endif
const wxValidator& validator = wxDefaultValidator,
const wxString& name = wxSliderNameStr);
- virtual int GetValue() const ;
+ virtual int GetValue() const;
virtual void SetValue(int);
- void GetSize(int *x, int *y) 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 SetTickFreq(int n, int pos);
int GetTickFreq() const { return m_tickFreq; }
void SetPageSize(int pageSize);
- int GetPageSize() const ;
- void ClearSel() ;
- void ClearTicks() ;
+ int GetPageSize() const;
+ void ClearSel();
+ void ClearTicks();
void SetLineSize(int lineSize);
- int GetLineSize() const ;
- int GetSelEnd() const ;
- int GetSelStart() const ;
+ int GetLineSize() const;
+ int GetSelEnd() const;
+ int GetSelStart() const;
void SetSelection(int minPos, int maxPos);
- void SetThumbLength(int len) ;
- int GetThumbLength() const ;
- void SetTick(int tickPos) ;
+ void SetThumbLength(int len);
+ int GetThumbLength() const;
+ void SetTick(int tickPos);
// IMPLEMENTATION
WXHWND GetStaticMin() const { return m_staticMin; }
int m_lineSize;
int m_tickFreq;
+ virtual void DoGetSize(int *width, int *height) const;
+
virtual void DoSetSize(int x, int y,
int width, int height,
int sizeFlags = wxSIZE_AUTO);
- DECLARE_DYNAMIC_CLASS(wxSlider95)
+ virtual wxSize DoGetBestSize() const;
+
+ DECLARE_DYNAMIC_CLASS_NO_COPY(wxSlider95)
};
#endif