1 #include "FirstUiBuilder.h"
6 const char *ModificationLog
= "August 2, 2000\r\n" \
7 "-------------------------------------\r\n\r\n" \
8 "Much optimization of text\r\n" \
10 "August 1, 2000\r\n" \
11 "-------------------------------------\r\n\r\n" \
12 "Added ability to lock down objects to prevent inadvertantly\r\n" \
13 "moving or sizing them with the mouse.\r\n\r\n" \
14 "Added ability to import other objects.\r\n\r\n" \
15 "Added ability to delete objects using the delete key.\r\n" \
16 "Implemented default extension (.ui).\r\n" \
17 "Added verification dialog whenever a workspace is closed.\r\n" \
20 "-------------------------------------\r\n\r\n" \
21 "Added support for assigning default properties to new objects.\r\n" \
22 "Defaults are saved in the file defaults.cfg.\r\n" \
23 "Implemented better handling of <include> in the editor.\r\n" \
26 "-------------------------------------\r\n\r\n" \
27 "Added alignment buttons to the user interface window.\r\n" \
28 "Controls are aligned relative to the last control you clicked on.\r\n\r\n" \
29 "Added add & remove property buttons to the object inspector window.\r\n\r\n" \
30 "Added support for opening files using drag and drop.\r\n\r\n" \
31 "Made the cursor change to reflect state of the SHIFT and CTRL keys when selecting.\r\n" \
32 "Fixed some crash bugs relating to switching the size of the active page.\r\n" \
33 "Made changes to the object structure update the page tab control as well.\r\n" \
34 "Fixed various focus issues causes by bad calls to SetWindowPos.\r\n" \
37 "-------------------------------------\r\n\r\n" \
38 "Added support for having multiple object in the selection.\r\n" \
39 "Use Shift + Click to add items to the selection.\r\n" \
40 "Use Ctrl + Click to remove items from the selection.\r\n\r\n" \
41 "Added color key and vertex alpha to the editor.\r\n" \
42 "Color keys work only on DDS textures.\r\n\r\n" \
43 "Changed the way images are searched for.\r\n" \
44 "When refering to an image on disk, do not use an extension\r\n" \
45 "as the code will seach first for .DDS files and then\r\n" \
46 "for .bmp files\r\n" \
47 "\r\n\r\n\r\n- End -";
49 BOOL CALLBACK
ModificationLogDlgProc( HWND hwndDlg
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
56 SetDlgItemText( hwndDlg
, IDC_MODIFICATION_LOG
, ModificationLog
);
60 // Equivalent to pressing cancel
61 EndDialog( hwndDlg
, 0 );
65 if( LOWORD( wParam
) == IDOK
)
66 EndDialog( hwndDlg
, 0 );
67 else if( LOWORD( wParam
) == IDCANCEL
)
68 EndDialog( hwndDlg
, 0 );