with more expected semantics.
- wxPORTRAIT and wxLANDSCAPE are now elements of wxPrintOrientation enum and
wxPrintData::SetOrientation(int) takes wxPrintOrientation and not int.
-
+- Second parameter of wxSlider::SetTickFreq(int n, int pos) is deprecated,
+ simply remove it from your code and use wxSlider::SetTickFreq(int n) as it
+ was never used anyhow.
Major new features in this release
----------------------------------
virtual int GetThumbLength() const;
// copied from (wxSliderCocoa.h)
- virtual void SetTickFreq(int n, int pos);
virtual int GetTickFreq() const;
- virtual void ClearTicks() { SetTickFreq(0, 0); }
+ virtual void ClearTicks() { SetTickFreq(0); }
virtual void SetTickPos(int pos);
+protected:
+ // Platform-specific implementation of SetTickFreq
+ virtual void DoSetTickFreq(int freq);
};
#endif
int GetMax() const { return m_rangeMax; }
// Win32-specific slider methods
- void SetTickFreq(int n, int pos);
int GetTickFreq() const { return m_tickFreq; }
void SetPageSize(int pageSize);
int GetPageSize() const;
// of dragging the thumb or scrolling the mouse wheel
bool m_isDragging;
+ // Platform-specific implementation of SetTickFreq
+ virtual void DoSetTickFreq(int freq);
+
DECLARE_DYNAMIC_CLASS_NO_COPY(wxSlider)
};
);
void SetThumbLength(int nLen) ;
void SetTick(int ntickPos) ;
- void SetTickFreq( int n
- ,int nPos
- );
//
// IMPLEMENTATION
,int nHeight
,int nSizeFlags = wxSIZE_AUTO
);
+
+ // Platform-specific implementation of SetTickFreq
+ virtual void DoSetTickFreq(int freq);
+
private:
DECLARE_DYNAMIC_CLASS(wxSlider)
}; // end of CLASS wxSlider
void SetMax(int maxValue) { SetRange(m_rangeMin, maxValue); }
// For trackbars only
- void SetTickFreq(int n, int pos);
inline int GetTickFreq() const { return m_tickFreq; }
void SetPageSize(int pageSize);
int GetPageSize() const ;
virtual void TriggerScrollEvent( wxEventType scrollEvent ) ;
protected:
+ // Platform-specific implementation of SetTickFreq
+ virtual void DoSetTickFreq(int freq);
+
virtual wxSize DoGetBestSize() const;
virtual void DoSetSize(int x, int y, int w, int h, int sizeFlags);
virtual void DoMoveWindow(int x, int y, int w, int h);
int GetMax() const;
// For trackbars only
- void SetTickFreq(int n, int pos);
int GetTickFreq() const;
void SetPageSize(int pageSize);
int GetPageSize() const;
bool SendScrollEvent(WXEVENTPTR event);
protected:
+ // Platform-specific implementation of SetTickFreq
+ virtual void DoSetTickFreq(int freq);
virtual wxSize DoGetBestSize() const;
// warning: most of subsequent methods are currently only implemented in
// wxMSW under Win95 and are silently ignored on other platforms
- virtual void SetTickFreq(int WXUNUSED(n), int WXUNUSED(pos)) { }
+ void SetTickFreq(int freq) { DoSetTickFreq(freq); }
virtual int GetTickFreq() const { return 0; }
virtual void ClearTicks() { }
virtual void SetTick(int WXUNUSED(tickPos)) { }
virtual int GetSelStart() const { return GetMax(); }
virtual void SetSelection(int WXUNUSED(min), int WXUNUSED(max)) { }
+#ifdef WXWIN_COMPATIBILITY_2_8
+ wxDEPRECATED_INLINE( void SetTickFreq(int freq, int), DoSetTickFreq(freq); )
+#endif
+
protected:
+ // Platform-specific implementation of SetTickFreq
+ virtual void DoSetTickFreq(int WXUNUSED(freq)) { /* unsupported by default */ }
// choose the default border for this window
virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; }
virtual void SetThumbLength(int lenPixels);
virtual int GetThumbLength() const;
- virtual void SetTickFreq(int n, int WXUNUSED(dummy) = 0);
virtual int GetTickFreq() const { return m_tickFreq; }
// wxUniv-specific methods
INVALID_THUMB_VALUE = -0xffff
};
+ // Platform-specific implementation of SetTickFreq
+ virtual void DoSetTickFreq(int freq);
+
// overridden base class virtuals
virtual wxSize DoGetBestClientSize() const;
virtual void DoDraw(wxControlRenderer *renderer);
@param n
Frequency. For example, if the frequency is set to two, a tick mark is
displayed for every other increment in the slider's range.
- @param pos
- Position. Must be greater than zero. @todo: what is this for?
@onlyfor{wxmsw}
@see GetTickFreq()
*/
- virtual void SetTickFreq(int n, int pos);
+ virtual void SetTickFreq(int n);
/**
Sets the slider position.
m_slider = new wxSlider( panel, ID_SLIDER, 0, 0, 200,
wxDefaultPosition, wxSize(155,wxDefaultCoord),
wxSL_AUTOTICKS | wxSL_LABELS);
- m_slider->SetTickFreq(40, 0);
+ m_slider->SetTickFreq(40);
sz->Add( m_slider, 0, wxALL, 10 );
m_gaugeVert = new wxGauge( panel, wxID_ANY, 100,
return;
}
- m_slider->SetTickFreq(freq, 0 /* unused */);
+ m_slider->SetTickFreq(freq);
}
void SliderWidgetsPage::DoSetThumbLen()
// minValue > maxValue not handled, tickMarks set to 0
if ( style & wxSL_AUTOTICKS )
tickMarks = ((maxValue - minValue >= 0) ? (maxValue - minValue) : 0);
- // arg2 needed a value, doesnt do anything
- SetTickFreq(tickMarks,1);
+ SetTickFreq(tickMarks);
return true;
}
return [GetNSSlider() maxValue];
}
-void wxSlider::SetTickFreq(int n, int pos)
+void wxSlider::DoSetTickFreq(int n)
{
const int numTicks = (n > 0) ? ((GetMax() - GetMin()) / n) + 1 : 0;
[GetNSSlider() setNumberOfTickMarks:numTicks];
}
}
-void wxSlider::SetTickFreq(int n, int pos)
+void wxSlider::DoSetTickFreq(int n)
{
m_tickFreq = n;
- ::SendMessage( GetHwnd(), TBM_SETTICFREQ, (WPARAM) n, (LPARAM) pos );
+ ::SendMessage( GetHwnd(), TBM_SETTICFREQ, (WPARAM) n, (LPARAM) 0 );
}
void wxSlider::SetPageSize(int pageSize)
} // end of wxSlider::SetTick
// For trackbars only
-void wxSlider::SetTickFreq( int n, int WXUNUSED(nPos) )
+void wxSlider::DoSetTickFreq( int n )
{
SLDCDATA vSlData;
WNDPARAMS vWndParams;
}
// For trackbars only
-void wxSlider::SetTickFreq(int n, int WXUNUSED(pos))
+void wxSlider::DoSetTickFreq(int n)
{
// TODO
m_tickFreq = n;
// unsupported feature
}
-void wxSlider::SetTickFreq(int WXUNUSED(n), int WXUNUSED(pos))
+void wxSlider::DoSetTickFreq(int WXUNUSED(n))
{
// unsupported feature
}
// wxSlider ticks
// ----------------------------------------------------------------------------
-void wxSlider::SetTickFreq(int n, int WXUNUSED(dummy))
+void wxSlider::DoSetTickFreq(int n)
{
wxCHECK_RET (n > 0, wxT("invalid slider tick frequency"));
if( HasParam(wxT("tickfreq")))
{
- control->SetTickFreq(GetLong(wxT("tickfreq")), 0);
+ control->SetTickFreq(GetLong(wxT("tickfreq")));
}
if( HasParam(wxT("pagesize")))
{