dsrc isn't necessary for this repo
[client-tools.git] / src / external / 3rd / application / UiBuilder / FeatureLog.cpp
blob2984605a92a34e4f47590de892a1fbcbaee4f2a4
1 #include "FirstUiBuilder.h"
3 #include "resource.h"
4 #include "UITypes.h"
6 const char *ModificationLog = "August 2, 2000\r\n" \
7 "-------------------------------------\r\n\r\n" \
8 "Much optimization of text\r\n" \
9 "\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" \
18 "\r\n" \
19 "July 31, 2000\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" \
24 "\r\n" \
25 "July 28, 2000\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" \
35 "\r\n" \
36 "July 27, 2000\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 )
51 UI_UNREF (lParam);
53 switch( uMsg )
55 case WM_INITDIALOG:
56 SetDlgItemText( hwndDlg, IDC_MODIFICATION_LOG, ModificationLog );
57 return TRUE;
59 case WM_CLOSE:
60 // Equivalent to pressing cancel
61 EndDialog( hwndDlg, 0 );
62 return 0;
64 case WM_COMMAND:
65 if( LOWORD( wParam ) == IDOK )
66 EndDialog( hwndDlg, 0 );
67 else if( LOWORD( wParam ) == IDCANCEL )
68 EndDialog( hwndDlg, 0 );
70 return 0;
72 default:
73 return 0;