ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/proj/trunk/VTBFileUtil2/VTBFileUtil2.h
Revision: 277
Committed: 2003-08-24T00:31:45-07:00 (21 years, 10 months ago) by douglas
Content type: text/x-c
File size: 1993 byte(s)
Log Message:
Did work.

File Contents

# User Rev Content
1 douglas 255 // Vance Thrift and Biller File Utility 2
2     //
3     // Douglas Thrift
4     //
5 douglas 277 // $Id: VTBFileUtil2.h,v 1.11 2003/08/24 07:31:45 douglas Exp $
6 douglas 255
7     #ifndef _VTBFileUtil_h_
8     #define _VTBFileUtil_h_
9    
10     #ifdef _DEBUG
11     #pragma warning(disable:4786)
12     #endif // _DEBUG
13    
14     #include <iostream>
15     #include <string>
16     #include <sstream>
17     #include <cctype>
18     #include <vector>
19 douglas 265 #include <set>
20     #include <map>
21 douglas 259 #include <cstdlib>
22 douglas 255
23     #include <windows.h>
24 douglas 277 #include <windowsx.h>
25 douglas 257 #include <commctrl.h>
26 douglas 264 #include <objbase.h>
27     #include <shlobj.h>
28 douglas 271 #include <shlwapi.h>
29 douglas 255
30 douglas 262 #include "resource.h"
31    
32 douglas 255 using namespace std;
33    
34 douglas 262 enum Mode { none, disc, scan };
35     struct Gui
36     {
37     HINSTANCE instance;
38     HICON icon;
39 douglas 277 int show;
40 douglas 262 };
41    
42 douglas 255 extern bool debug;
43     extern string program;
44     extern string programName;
45 douglas 256 extern string programVersion;
46 douglas 262 extern Gui gui;
47 douglas 255
48 douglas 259 void usage(HWND parent = NULL);
49     void version(HWND parent = NULL);
50 douglas 264 inline string toAnsi(const wstring& wide)
51     {
52     LPSTR buffer = new CHAR[wide.length() + 1];
53    
54     WideCharToMultiByte(CP_ACP, 0, wide.c_str(), wide.length() + 1, buffer,
55     wide.length() + 1, NULL, NULL);
56    
57     return buffer;
58     }
59     inline wstring toWide(const string& ansi)
60     {
61     LPWSTR buffer = new WCHAR[ansi.length() + 1];
62    
63     MultiByteToWideChar(CP_ACP, 0, ansi.c_str(), ansi.length() + 1, buffer,
64     ansi.length() + 1);
65    
66     return buffer;
67     }
68 douglas 256 inline void center(HWND window)
69     {
70     RECT rect, dialog, desktop;
71 douglas 255
72 douglas 256 GetWindowRect(GetDesktopWindow(), &desktop);
73     GetWindowRect(window, &dialog);
74     CopyRect(&rect, &desktop);
75    
76     OffsetRect(&dialog, -dialog.left, -dialog.top);
77     OffsetRect(&rect, -rect.left, -rect.top);
78     OffsetRect(&rect, -dialog.right, -dialog.bottom);
79    
80     SetWindowPos(window, HWND_TOP, desktop.left + (rect.right / 2), desktop.top
81     + (rect.bottom / 2), 0, 0, SWP_NOSIZE);
82     }
83 douglas 269 inline void error(void)
84     {
85     LPVOID message;
86 douglas 256
87 douglas 269 FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER |
88     FORMAT_MESSAGE_FROM_SYSTEM, NULL, GetLastError(), 0,
89     LPTSTR(&message), 0, NULL);
90     MessageBox(NULL, LPCTSTR(message), programName.c_str(), MB_ICONERROR);
91     LocalFree(message);
92     }
93    
94 douglas 255 #endif // _VTBFileUtil_h_