Click here to Skip to main content
Licence 
First Posted 30 Nov 2000
Views 69,879
Bookmarked 56 times

Time to Complete Progress Control

By | 30 Nov 2000 | Article
A progress control that tells the user how long an operation has left to complete
  • Download source files - 3 Kb
  • Download demo project - 22 Kb

    Sample Image - screenshot.gif

    Introduction

    Progress bars are great for giving feedback to the user during lengthy operations. However, sometimes a percentage completion is not enough, so I came up with this little class to display an estimation of the length of time remaining to complete the operation.

    The class uses a simple linear time calculation to predict the estimated time remaining. For example, if the progress is at 10% complete and it has taken 5 seconds so far, then it predicts that it will take another 45 seconds to get to 100%

    The prediction is repeated every time the control is drawn, therefore assuming that the progress percentage is accurate, then the prediction should be reasonably so too.

    TProgressTimeToComplete is provided ready to go and can be used as a direct replacement for the MFC CProgressCtrl class. The start time is taken from when the class is instantiated, but can be reset if the control is instantiated long before the processing by calling the ResetStartTime() member function.

    There is one virtual function that can be overloaded in order to customise the display. GetRemainingText is called to format the text string which is written over the top of the progress bar. There are two parameters given the percentage complete and the estimated time to complete - in seconds. The default implementation of the function looks like this:

    CString TProgressTimeToComplete::GetRemainingText(double lfPercent, 
        double lfSecsRemaining)
    {
        CString str;
        int     nSeconds = (int)fmod(lfSecsRemaining, 60.0);
    
        if (lfSecsRemaining < 60)
        {
            if (nSeconds < 1)
                str = "Less than a second";
            else
                str.Format("%d second%s remaining", nSeconds, 
                     nSeconds==1? "":"s");
        }
        else
        {
            int nMinutes = (int)(lfSecsRemaining/60.0);
            str.Format("%d minute%s, %d second%s remaining", 
                 nMinutes, nMinutes==1? "":"s",
                 nSeconds, nSeconds==1? "":"s");
        }
    
        return str;
    }
    

    Features

    • Horizontal and Vertical progress bars are supported
    • Smooth and Blocked progress bars are supported
    • Expandable for custom text formatting
    • Interchangable with MFC's CProgressCtrl
    • It's free !

    Notes

    The progress control uses Keith Rule's memory DC class for smooth painting.

    Enjoy !

  • 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

    Craig Henderson

    Other
    Centrix Software
    United Kingdom United Kingdom

    Member

    Follow on Twitter Follow on Twitter
    Craig graduated with a B.SC. Honours in Computing for Real Time Systems from the University of the West of England, Bristol in 1995 after completing an HND in Computing in 1993.

    Sign Up to vote   Poor Excellent
    Add a reason or comment to your vote: x
    Votes of 3 or less require a comment

    Comments and Discussions

     
    You must Sign In to use this message board. (secure sign-in)
     
    Search this forum  
     FAQ
        Noise  Layout  Per page   
      Refresh
    GeneralMy Thanks as well PinmemberMike Gaskey14:32 11 Jul '06  
    GeneralMFC Pinmember장종석3:55 15 Jun '02  
    GeneralThanks! PinmemberKevin Pinkerton2:32 10 Jul '01  

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

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

    Permalink | Advertise | Privacy | Mobile
    Web02 | 2.5.120517.1 | Last Updated 1 Dec 2000
    Article Copyright 2000 by Craig Henderson
    Everything else Copyright © CodeProject, 1999-2012
    Terms of Use
    Layout: fixed | fluid