Click here to Skip to main content
Click here to Skip to main content

Progress Cell for Grid Control.

By , 10 May 2004
 

Demo Piccie

Introduction

For a recent project, I needed to monitor the progress of a variable number of long tasks. This could be from none to hundreds in the extreme case. After abandoning the idea of creating / hiding / destroying an army of actual progress controls, I hit on the idea of creating a cell type for Chris Maunder's grid control. I already knew how to use it from multiple projects. I knew it had the flexibility I needed, so it was just a case of rolling up my sleeves and writing a new CGridCell...

Using the code

Using the code should not be too tough. Just add the header to your CPP file:

#include "GridCellProgress.h"

and use the cell type as you would any other grid cell type.

    CGridCellProgress *pProg;
    for (int n = 0; n < 10; n++)
        m_Grid.SetCellType (n, 0, RUNTIME_CLASS(CGridCellProgress));

    pProg = (CGridCellProgress *)m_Grid.GetCell (0,0);
    pProg->SetText ("One");
    pProg->SetPos (0);

New Cell Methods

I like to think these new cell method names are pretty self explanatory. (Yes, I'm lazy.)

    virtual    BOOL    EnablePercentage (BOOL bEnable);
    virtual    BOOL    EnablePathCompaction (BOOL bEnable);

    virtual    void    SetRange(int nLower, int nUpper);
    virtual    void    SetLower(int nLower);
    virtual    void    SetUpper(int nUpper);
    virtual    void    SetPos    (int nPos);
    virtual void    SetColor(COLORREF clr);

    virtual    void    GetRange(int &nLower, int &nUpper);
    virtual    int    GetLower();
    virtual    int    GetUpper();
    virtual    int    GetPos    ();
    virtual COLORREF GetColor();

Notes

This was tested against v2.24 of the grid control, and includes that in the sample project. From the Grid Controls page, there is a v2.25 now available. There shouldn't be any difficulty with the new version. Similarly, I haven't tested this on ME, Win 2K3, Longhorn etc. I don't anticipate problems, but you never know! I've been caught out assuming before...

I have also used Color instead of spelling it properly as Colour. I find myself typing American for SDK functions etc, and properly for my own variables. As the new cell functions imitate those of CProgressCtrl, I thought I'd better imitate the spelling too.

Acknowledgements

There are two obvious people to thank:

  • Chris Maunder for his excellent Grid control class, which I have used many times.
  • Secondly, Keith Rule for his neat and tidy CMemDC class. While I haven't used it directly here, Chris does, and I have used it elsewhere to good effect.

History

  • 2004 May 11th - First released into the wild.

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

Iain Clarke, Warrior Programmer
Software Developer (Senior)
Sweden Sweden
Member
I have now moved to Sweden for love, and recently married a lovely Swede.
 

-----------------
I started programming on BBC micros (6502) when I was six and never quite stopped even while I was supposed to be studying physics and uni.
 
I've been working for ~13 years writing software for machine control and data analysis. I now work on financial transaction transformation software, for a Software company in Gamlastan, Stockholm.
Look at my articles to see my excellent coding skills. I'm modest too!

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.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralUse in vmmemberpietro7719 May '04 - 0:12 
Hi!
I'm using the grid inj virtual mode with database.Is it possible to use your cell type in vm?
GeneralRe: Use in vmmemberIain Clarke19 May '04 - 1:10 

I've not actually used VM before, so I couldn't give you a straight answer. Looking at the CGridCtrl's
article, and a quick peek at the souce, I don't think VM is compatible with any cell types. I could
be wrong though.
 
If I am wrong, and my cell type needs a change or two, let me know and I'll update the code.
 
Good luck!
 
Iain.

GeneralRe: Use in vmmemberIain Clarke19 May '04 - 1:31 

I've had a further look at virtual mode, and I'm *really* sure that virtual mode only works with
the default cell type. Look at:
CGridCtrl::GetCell (...) and
CGridCtrl::GetDefaultCell (...).
 
That said, you could use CGridCtrl::SetDefaultCellType (RUNTIME_CLASS(CGridCellProgress)), and
enhance the cell type to notify and ask for the progress information at each cell position. If you set the
position to min, and disable percentages, then it behaves like a normal cell.
 
I hope that helped a little more,
 
Iain.

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130523.1 | Last Updated 11 May 2004
Article Copyright 2004 by Iain Clarke, Warrior Programmer
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid