ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/proj/trunk/VTBFileUtil2/ScanUtility.h
Revision: 271
Committed: 2003-08-19T22:49:34-07:00 (21 years, 10 months ago) by douglas
Content type: text/x-c
File size: 827 byte(s)
Log Message:
Start page of ScanUtility pretty much works.

File Contents

# User Rev Content
1 douglas 260 // Vance Thrift and Biller File Utility 2
2     //
3     // Douglas Thrift
4     //
5 douglas 271 // $Id: ScanUtility.h,v 1.5 2003/08/20 05:49:34 douglas Exp $
6 douglas 260
7     #ifndef _ScanUtility_h_
8     #define _ScanUtility_h_
9    
10     #include "IndividualClient.h"
11    
12     class ScanUtility
13     {
14     private:
15 douglas 271 PROPSHEETPAGE wizard[5];
16 douglas 268 char* title;
17 douglas 271 string scanDir;
18     bool scanEnv;
19     string saveDir;
20     bool saveEnv;
21 douglas 268 unsigned number;
22     static unsigned count;
23     static map<unsigned, ScanUtility*> utilities;
24     static map<HWND, ScanUtility*> windows;
25 douglas 269 void loadDirs(void);
26     void saveDirs(void);
27     void setScanDir(HWND parent = NULL);
28     void setSaveDir(HWND parent = NULL);
29 douglas 271 static int CALLBACK browse(HWND dialog, UINT msg, LPARAM l, LPARAM d);
30 douglas 268 static INT_PTR CALLBACK start(HWND dialog, UINT msg, WPARAM w, LPARAM l);
31 douglas 260 public:
32 douglas 268 ScanUtility();
33     ~ScanUtility();
34 douglas 265 void run(void);
35 douglas 260 };
36    
37     #endif // _ScanUtility_h_