Click here to Skip to main content
6,292,426 members and growing! (9,544 online)
Email Password   helpLost your password?
Desktop Development » Miscellaneous » General     Intermediate

A class to combine Slider Control and Progress Bar windows

By Cem KARACA

An article on how to combine Slider Controls and Progress bar into one class using custom draw.
VC6, VC7, VC7.1Win2K, WinXP, Win2003, MFC, Dev
Posted:7 Jan 2004
Views:63,184
Bookmarked:51 times
Announcements
Loading...
 
Search    
Advanced Search
printPrint   Broken Article?Report       add Share
  Discuss Discuss   Recommend Article Email
23 votes for this article.
Popularity: 5.66 Rating: 4.16 out of 5

1
1 vote, 4.3%
2
1 vote, 4.3%
3
6 votes, 26.1%
4
15 votes, 65.2%
5

ProSlider Control - ProSlider.gif

Introduction

This article describes the implementation of CProSliderCtrl class, which uses custom draw functionality of CSliderCtrl class to combine Slider Control and Progress bar in one window.

This kind of a control is especially required for streaming multimedia applications, because of its less window space requirements and its freezing capability also helps preventing unbuffered scenes to be viewed/listened.

Features

CSliderCtrl has the following features:

  • All the basic features of the standard CSliderCtrl and CProgressCtrl classes,
  • Custom draw borders, thumb, channel and progress bar,
  • Borders could be shown or hidden,
  • The colors could be changed on demand,
  • The slider thumb could be disabled (frozen),
  • Flicker free progress bar.

Background

The custom draw system heavily uses recursive functions to draw the windows' objects and uses negative exponential random numbers in order to get better colors (will be described later).

A recursive function calls itself for many times, until a control mechanism stops recursion. The prototype of this kind of functions is given below:

void Recursion(int val)
{
    // computing stuff

    val ++;
    if(val<=255)Recursion(val);
    return;
}

This is the easiest way to calculate a given color's lighter versions and also gives 3D look to the objects. You may examine the differences by commenting the recursion line inside the function in the given source code.

Since this recursive drawing function lightens the colors every time it calls itself, giving darker color values will result in better colored 3D objects. In order to generate dark colors to use in this recursive function, a negative exponential random number (nexp) generator is implemented. The simulation of the function in Matlab for the input 255 is given in the figure below:

Negative exponential of a given number

How to use CProSliderCtrl Class

The exported functions are:

 // Gets the current lower and upper limits, or range, of the progress bar 

 // control.

 void _GetRange(int& nLower, int& nUpper);

 // Sets the upper and lower limits of the progress bar control's range and

 // redraws the bar to reflect the new ranges.

 void _SetRange(short nLower, short nUpper);

 // Sets the upper and lower limits of the progress bar control's range and 

 // redraws the bar to reflect the new ranges.

 void _SetRange32(int nLower, int nUpper);

 // Sets the background color for the progress bar. 

 COLORREF _SetBkColor(COLORREF clrNew);

 // Sets the thumb color

 COLORREF _SetThumbColor(COLORREF clrNew);

 // Sets the channel color

 COLORREF _SetChColor(COLORREF clrNew);

 // Gets the current position of the progress bar.

 int _GetPos(void);

 // Advances the current position of a progress bar control by a specified 

 // increment and redraws the bar to reflect the new position.

 int _OffsetPos(int nPos);

 // Sets the current position for a progress bar control and redraws the 

 // bar to reflect the new position.

 int _SetPos(int nPos);

 // Specifies the step increment for a progress bar control.

 int _SetStep(int nStep);

 // Advances the current position for a progress bar control by the step

 // increment and redraws the bar to reflect the new position.

 int _StepIt(void);

 // De/Freezes the slider and returns the prev. state

 BOOL Freeze(void);

 // Enables/Disables borders

 HRESULT _EnableBorders(BOOL bEnable=TRUE);

 // Test if the borders are enabled or not

 BOOL _IsEnabled(void);

CProSliderCtrl Class

This class uses the function OnNMCustomdraw(NMHDR *pNMHDR, LRESULT *pResult) to handle the custom drawing tasks. When the system sends TBCD_CHANNEL message, the class draws the progress bar to the area of the slider channel.

How to use CProSliderCtrl Class in your applications

Simply add the class to your workspace and define the slider control variable as:

 // Pro Slider handle

 CProSliderCtrl m_ProSlider;

and use the functions listed above to control progress bar, the functions starting with a "_" are related to progress bar controls.

Terms of Use

This code is free to use in any kind of applications at your own risk.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Cem KARACA


Member
Electrical & Electronic Engineer.
Finished studying MS in Electrical & Electronics Eng. (2004). Founder & Manager of VeriTeknik Ltd. VeriTeknik.com
Occupation: Web Developer
Location: Turkey Turkey

Other popular Miscellaneous articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 14 of 14 (Total in Forum: 14) (Refresh)FirstPrevNext
Generaldynamically created sliders PinsussAnonymous6:10 2 Jun '05  
Generalvertical progress from bottom to top Pinmemberromansm1:08 18 Jan '05  
GeneralRe: vertical progress from bottom to top PinmemberCem KARACA23:22 18 Jan '05  
GeneralProgress bar drawing bug Pinmemberericericeric8822558:15 3 Nov '04  
Generalexcellent Pinmemberhozgur9:24 13 Jan '04  
General$25.00 PinmemberPJ Arends13:38 8 Jan '04  
GeneralRe: $25.00 PinmemberCem KARACA21:34 8 Jan '04  
GeneralProgress bar messages PinmemberPJ Arends13:30 8 Jan '04  
GeneralRe: Progress bar messages PinmemberCem KARACA21:20 8 Jan '04  
GeneralRe: Progress bar messages PinmemberDrew S15:32 12 Jan '04  
GeneralVery nice control ;) PinmemberKochise9:38 8 Jan '04  
GeneralRe: Very nice control ;) PinmemberCem KARACA10:59 8 Jan '04  
GeneralOne idea PinmemberDominik Reichl8:44 8 Jan '04  
GeneralRe: One idea PinmemberCem KARACA11:16 8 Jan '04  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 7 Jan 2004
Editor: Smitha Vijayan
Copyright 2004 by Cem KARACA
Everything else Copyright © CodeProject, 1999-2009
Web11 | Advertise on the Code Project