Click here to Skip to main content
15,881,882 members
Articles / Desktop Programming / MFC
Article

Gradient Progress Control

Rate me:
Please Sign up or sign in to vote.
4.69/5 (9 votes)
7 Jun 2000 102.5K   5.9K   47   7
Subclasses the standard CProgressCtrl to allow for gradient fills. Supports vertical progress controls as well.
  • Download demo project - 47 Kb
  • Download source files - 6 Kb
  • Sample Image - GradientProgressCtrl.jpg

    Introduction

    This is a simple class to display a gradient fill progress control. It works just like the normal progress control. The main enhancements are that you can define the start and end colors and toggle the percentage caption's visibility. It supports both horizontal and vertical progress control styles. The sample application shows both types of controls on a single dialog-based application.

    The control can be incorporated into a project like any other CProgressCtrl-derived control. Either create the control manually, subclass an existing CProgressCtrl, or use the ClassWizard to DDX_control it. The actual code for the progress control is located in GradientProgressCtrl.h and GradientProgressCtrl.cpp. Most of the work happens in the DrawGradient(...) function, which also uses Keith Rule's CMemDC class. The sample project also uses Chris Maunder's ColourPicker. Both of these classes are included in the sample project and can be downloaded elsewhere at this site.

    It is derived from CProgressCtrl so all standard CProgressCtrl functions are available. Additional functions are listed below.

    Please let me know of any problems or improvements. Thanks and good luck.


    Member Set Functions

    void SetTextColor(const COLORREF& color)    // Set the percentage text color
    void SetBkColor(const COLORREF& color)      // Set background color
    void SetStartColor(const COLORREF& color)   // Set starting color
    void SetEndColor(const COLORREF& color)     // Set ending color
    void ShowPercent(BOOL bShowPercent = TRUE)  // Show the percent caption?
    

    Member Get Functions

    const COLORREF  GetTextColor(void)
    const COLORREF  GetBkColor(void)
    const COLORREF  GetStartColor(void)
    const COLORREF  GetEndColor(void)
    const BOOL  GetShowPercent()
    

    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


    Written By
    Web Developer
    United States United States
    This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

    Comments and Discussions

     
    BugCompile Errors Pin
    C3D125-Feb-13 1:19
    professionalC3D125-Feb-13 1:19 
    GeneralThank you... Very helpful! Pin
    Destiny77718-Nov-11 15:29
    Destiny77718-Nov-11 15:29 
    QuestionStatic border on WinXP? Pin
    One Stone21-Feb-05 22:43
    One Stone21-Feb-05 22:43 
    GeneralOn VisualC++.Net Pin
    Tanki9514-Nov-04 14:33
    Tanki9514-Nov-04 14:33 
    GeneralA gradual StepIt() Pin
    Benjamin Ng7-Aug-00 20:20
    Benjamin Ng7-Aug-00 20:20 
    GeneralRe: Vertical filling Pin
    sunsam10-Mar-03 12:09
    sunsam10-Mar-03 12:09 
    GeneralRe: A gradual StepIt() Pin
    dunniu19-Nov-13 15:33
    dunniu19-Nov-13 15:33 

    General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

    Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.