TWR
T windows api WRapper
 All Classes Functions
TwrProgress.h
1 #ifndef TWRPROGRESS_H
2 #define TWRPROGRESS_H
3 
4 #include <commctrl.h>
5 #include "TwrWnd.h"
6 
7 class TwrProgress : public TwrWnd {
8 
9 public:
10  TwrProgress();
11  TwrProgress(HWND newHwnd);
12 
13  void setRange(unsigned int min, unsigned int max);
14  void setStep(int step);
15  void setPos(int pos);
16  void stepIt(void);
17 };
18 
19 #endif