ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/proj/trunk/VTBFileUtil2/VTBFileUtil2.h
(Generate patch)

Comparing trunk/VTBFileUtil2/VTBFileUtil2.h (file contents):
Revision 255 by douglas, 2003-08-15T17:12:57-07:00 vs.
Revision 256 by douglas, 2003-08-15T21:56:17-07:00

# Line 2 | Line 2
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.2 2003/08/16 04:56:17 douglas Exp $
6  
7   #ifndef _VTBFileUtil_h_
8   #define _VTBFileUtil_h_
# Line 24 | Line 24 | using namespace std;
24   extern bool debug;
25   extern string program;
26   extern string programName;
27 < extern unsigned programVersion;
27 > extern string programVersion;
28  
29 < void usage(void);
30 < void version(void);
29 > void usage(HINSTANCE instance, HWND parent = NULL);
30 > void version(HINSTANCE instance, HWND parent = NULL);
31 > inline void center(HWND window)
32 > {
33 >        RECT rect, dialog, desktop;
34 >
35 >        GetWindowRect(GetDesktopWindow(), &desktop);
36 >        GetWindowRect(window, &dialog);
37 >        CopyRect(&rect, &desktop);
38 >
39 >        OffsetRect(&dialog, -dialog.left, -dialog.top);
40 >        OffsetRect(&rect, -rect.left, -rect.top);
41 >        OffsetRect(&rect, -dialog.right, -dialog.bottom);
42 >
43 >        SetWindowPos(window, HWND_TOP, desktop.left + (rect.right / 2), desktop.top
44 >                + (rect.bottom / 2), 0, 0, SWP_NOSIZE);
45 > }
46  
47   #endif // _VTBFileUtil_h_

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines