65.9K
CodeProject is changing. Read more.
Home

Round Slider Control

starIconstarIconstarIconstarIcon
emptyStarIcon
starIcon

4.91/5 (15 votes)

Mar 17, 2000

viewsIcon

137663

downloadIcon

6071

A round slider control to allow users to adjust an angle or similar values

  • Download demo project - 82 Kb
  • Download source files - 7 Kb
  • Sample Image - RoundSliderCtrl.jpg

    I needed a round slider control to let my users enter an angle. I thought this could be useful to others, so I wrote a general class for it using some of the functions from Chris Maunder's CRoundButton class.

    To use, simply add a slider to your dialog. Enlarge it until it covers an approximately square area.

    In your dialog class, associate a control variable (say m_rscMySlider), with the slider. If you have told class wizard about CRoundSliderCtrl, you will be able to select it when you define the control variable. If not, just go for CSliderCtrl and manually edit the definition in your dialog header file, changing CSliderCtrl to CRoundSliderCtrl. If you do not like using DDX then you can just subclass the control.

    In OnInitDialog() you would call SetRange(), SetPos(), etc. to customize the look and feel of the round slider control. The full API of the control is as follows:

    	// You may use '%ld' to show the slider value. Default: "%ld°"
    	virtual void SetText(const CString& strNewText);
    	virtual CString GetText() const;
    
    	// Default: 7, Minimum: 5
    	virtual void SetKnobRadius(const int nNewKnobRadius);
    	virtual int GetKnobRadius() const;
    
    	virtual void SetDragByKnobOnly(const bool bDragByKnobOnly);
    	virtual bool GetDragByKnobOnly() const;
    
    	// 0-359, 0 = Top, 90 = Right, 180 = Bottom, 270 = Left
    	virtual void SetZero(const int nZero);
    	virtual int GetZero() const;
    
    	// CW/CCW
    	virtual void SetInverted(const bool bNewInverted = true);
    	virtual bool GetInverted() const;
    
    	virtual void SetRadioButtonStyle(const bool bNewRadioButtonStyle = true);
    	virtual bool GetRadioButtonStyle() const;
    
    	virtual void SetDialColor(const COLORREF crBkgnd);
    	virtual void SetKnobColor(const COLORREF crBkgnd);
    	virtual void SetTextColor(const COLORREF crText);
    
    	virtual void SetFontBold(const bool bSet = true);
    	virtual void SetFontUnderline(const bool bSet = true);
    	virtual void SetFontItalic(const bool bSet = true);
    	virtual void SetFontSize(const int nSize);
    	virtual void SetFontName(const CString& strFont);