ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/proj/trunk/VTBFileUtil2/Chooser.h
Revision: 266
Committed: 2003-08-17T16:39:32-07:00 (21 years, 10 months ago) by douglas
Content type: text/x-c
File size: 559 byte(s)
Log Message:
Much better for Chooser. IndividualClient works pretty well.

File Contents

# User Rev Content
1 douglas 263 // Vance Thrift and Biller File Utility 2
2     //
3     // Douglas Thrift
4     //
5 douglas 266 // $Id: Chooser.h,v 1.3 2003/08/17 23:39:32 douglas Exp $
6 douglas 263
7     #ifndef _Chooser_h_
8     #define _Chooser_h_
9    
10     #include "VTBFileUtil2.h"
11    
12     class Chooser
13     {
14     private:
15     bool shortcut;
16     Mode choice;
17 douglas 266 unsigned number;
18     static unsigned count;
19     static map<unsigned, Chooser*> choosers;
20     static map<HWND, Chooser*> windows;
21 douglas 263 void desktop(void);
22     public:
23 douglas 266 Chooser();
24     ~Chooser();
25 douglas 263 Mode choose(HWND parent = NULL);
26 douglas 266 static INT_PTR CALLBACK window(HWND dialog, UINT msg, WPARAM w, LPARAM l);
27 douglas 263 };
28    
29     #endif // _Chooser_h_