2 |
|
// |
3 |
|
// Douglas Thrift |
4 |
|
// |
5 |
< |
// $Id: VTBFileUtil2.h,v 1.1 2003/08/16 00:12:57 douglas Exp $ |
5 |
> |
// $Id: VTBFileUtil2.h,v 1.5 2003/08/16 23:09:14 douglas Exp $ |
6 |
|
|
7 |
|
#ifndef _VTBFileUtil_h_ |
8 |
|
#define _VTBFileUtil_h_ |
16 |
|
#include <sstream> |
17 |
|
#include <cctype> |
18 |
|
#include <vector> |
19 |
+ |
#include <cstdlib> |
20 |
|
|
21 |
|
#include <windows.h> |
22 |
+ |
#include <commctrl.h> |
23 |
+ |
|
24 |
+ |
#include "resource.h" |
25 |
|
|
26 |
|
using namespace std; |
27 |
|
|
28 |
+ |
enum Mode { none, disc, scan }; |
29 |
+ |
struct Gui |
30 |
+ |
{ |
31 |
+ |
HINSTANCE instance; |
32 |
+ |
HICON icon; |
33 |
+ |
UINT_PTR tips; |
34 |
+ |
}; |
35 |
+ |
|
36 |
|
extern bool debug; |
37 |
|
extern string program; |
38 |
|
extern string programName; |
39 |
< |
extern unsigned programVersion; |
39 |
> |
extern string programVersion; |
40 |
> |
extern Gui gui; |
41 |
|
|
42 |
< |
void usage(void); |
43 |
< |
void version(void); |
42 |
> |
void usage(HWND parent = NULL); |
43 |
> |
void version(HWND parent = NULL); |
44 |
> |
inline void center(HWND window) |
45 |
> |
{ |
46 |
> |
RECT rect, dialog, desktop; |
47 |
> |
|
48 |
> |
GetWindowRect(GetDesktopWindow(), &desktop); |
49 |
> |
GetWindowRect(window, &dialog); |
50 |
> |
CopyRect(&rect, &desktop); |
51 |
> |
|
52 |
> |
OffsetRect(&dialog, -dialog.left, -dialog.top); |
53 |
> |
OffsetRect(&rect, -rect.left, -rect.top); |
54 |
> |
OffsetRect(&rect, -dialog.right, -dialog.bottom); |
55 |
> |
|
56 |
> |
SetWindowPos(window, HWND_TOP, desktop.left + (rect.right / 2), desktop.top |
57 |
> |
+ (rect.bottom / 2), 0, 0, SWP_NOSIZE); |
58 |
> |
} |
59 |
> |
void tooltip(HWND tool, const string& tip); |
60 |
|
|
61 |
|
#endif // _VTBFileUtil_h_ |