source: trunk/Utilities/Miscellaneous/TreeViewIcon/TreeViewIcon.rc @ 937

Last change on this file since 937 was 275, checked in by roman, 10 years ago
File size: 7.8 KB
Line 
1// Microsoft Visual C++ generated resource script.
2//
3#include "resource.h"
4
5#define APSTUDIO_READONLY_SYMBOLS
6/////////////////////////////////////////////////////////////////////////////
7//
8// Generated from the TEXTINCLUDE 2 resource.
9//
10#include "atlres.h"
11
12/////////////////////////////////////////////////////////////////////////////
13#undef APSTUDIO_READONLY_SYMBOLS
14
15/////////////////////////////////////////////////////////////////////////////
16// English (United States) resources
17
18#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
19LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
20#pragma code_page(1252)
21
22#ifdef APSTUDIO_INVOKED
23/////////////////////////////////////////////////////////////////////////////
24//
25// TEXTINCLUDE
26//
27
281 TEXTINCLUDE
29BEGIN
30    "resource.h\0"
31END
32
332 TEXTINCLUDE
34BEGIN
35    "#include ""atlres.h""\r\n"
36    "\0"
37END
38
393 TEXTINCLUDE
40BEGIN
41    "\0"
42END
43
44#endif    // APSTUDIO_INVOKED
45
46
47/////////////////////////////////////////////////////////////////////////////
48//
49// Icon
50//
51
52// Icon with lowest ID value placed first to ensure application icon
53// remains consistent on all systems.
54IDR_MAINFRAME           ICON                    "TreeViewIcon.ico"
55
56/////////////////////////////////////////////////////////////////////////////
57//
58// Dialog
59//
60
61IDD_ABOUTBOX DIALOG 0, 0, 187, 102
62STYLE DS_SETFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
63CAPTION "About"
64FONT 8, "MS Shell Dlg"
65BEGIN
66    DEFPUSHBUTTON   "OK",IDOK,130,81,50,14
67    CTEXT           "TreeViewIcon Application v1.0\n\n(c) Copyright 2014",IDC_STATIC,25,57,78,32
68    ICON            IDR_MAINFRAME,IDC_STATIC,55,26,18,20
69    GROUPBOX        "",IDC_STATIC,7,7,115,88
70END
71
72IDD_MAINDLG DIALOGEX 0, 0, 287, 92
73STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_CAPTION | WS_SYSMENU
74CAPTION "TreeViewIcon"
75FONT 8, "MS Shell Dlg", 0, 0, 0x0
76BEGIN
77    DEFPUSHBUTTON   "OK",IDOK,230,7,50,14
78    PUSHBUTTON      "Cancel",IDCANCEL,230,24,50,14
79    CONTROL         "",IDC_TREE1,"SysTreeView32",WS_BORDER | WS_HSCROLL | WS_TABSTOP,7,7,190,78
80END
81
82
83/////////////////////////////////////////////////////////////////////////////
84//
85// DESIGNINFO
86//
87
88#ifdef APSTUDIO_INVOKED
89GUIDELINES DESIGNINFO
90BEGIN
91    IDD_ABOUTBOX, DIALOG
92    BEGIN
93        LEFTMARGIN, 7
94        RIGHTMARGIN, 180
95        TOPMARGIN, 7
96        BOTTOMMARGIN, 95
97    END
98
99    IDD_MAINDLG, DIALOG
100    BEGIN
101        LEFTMARGIN, 7
102        RIGHTMARGIN, 280
103        TOPMARGIN, 7
104        BOTTOMMARGIN, 85
105    END
106END
107#endif    // APSTUDIO_INVOKED
108
109
110/////////////////////////////////////////////////////////////////////////////
111//
112// Accelerator
113//
114
115IDR_MAINFRAME ACCELERATORS
116BEGIN
117    "N",            ID_FILE_NEW,            VIRTKEY, CONTROL
118    "O",            ID_FILE_OPEN,           VIRTKEY, CONTROL
119    "S",            ID_FILE_SAVE,           VIRTKEY, CONTROL
120    "P",            ID_FILE_PRINT,          VIRTKEY, CONTROL
121    "Z",            ID_EDIT_UNDO,           VIRTKEY, CONTROL
122    "X",            ID_EDIT_CUT,            VIRTKEY, CONTROL
123    "C",            ID_EDIT_COPY,           VIRTKEY, CONTROL
124    "V",            ID_EDIT_PASTE,          VIRTKEY, CONTROL
125    VK_BACK,        ID_EDIT_UNDO,           VIRTKEY, ALT
126    VK_DELETE,      ID_EDIT_CUT,            VIRTKEY, SHIFT
127    VK_INSERT,      ID_EDIT_COPY,           VIRTKEY, CONTROL
128    VK_INSERT,      ID_EDIT_PASTE,          VIRTKEY, SHIFT
129    VK_F6,          ID_NEXT_PANE,           VIRTKEY
130    VK_F6,          ID_PREV_PANE,           VIRTKEY, SHIFT
131END
132
133
134/////////////////////////////////////////////////////////////////////////////
135//
136// Version
137//
138
139VS_VERSION_INFO VERSIONINFO
140 FILEVERSION  1, 0, 0, 6
141 PRODUCTVERSION 1,0,0,1
142 FILEFLAGSMASK 0x3fL
143#ifdef _DEBUG
144 FILEFLAGS 0x1L
145#else
146 FILEFLAGS 0x0L
147#endif
148 FILEOS 0x4L
149 FILETYPE 0x2L
150 FILESUBTYPE 0x0L
151BEGIN
152    BLOCK "StringFileInfo"
153    BEGIN
154        BLOCK "040904B0"
155        BEGIN
156            VALUE "FileDescription", "TreeViewIcon Module"
157            VALUE "FileVersion",  "1, 0, 0, 6\0"
158            VALUE "InternalName", "TreeViewIcon"
159            VALUE "LegalCopyright", "Copyright 2014"
160            VALUE "OriginalFilename", "TreeViewIcon.exe"
161            VALUE "ProductName", "TreeViewIcon Module"
162            VALUE "ProductVersion", "1, 0, 0, 1"
163        END
164    END
165    BLOCK "VarFileInfo"
166    BEGIN
167        VALUE "Translation", 0x409, 1200
168    END
169END
170
171
172/////////////////////////////////////////////////////////////////////////////
173//
174// String Table
175//
176
177STRINGTABLE
178BEGIN
179    IDR_MAINFRAME           "TreeViewIcon"
180END
181
182STRINGTABLE
183BEGIN
184    ID_FILE_NEW             "Create a new document\nNew"
185    ID_FILE_OPEN            "Open an existing document\nOpen"
186    ID_FILE_CLOSE           "Close the active document\nClose"
187    ID_FILE_SAVE            "Save the active document\nSave"
188    ID_FILE_SAVE_AS         "Save the active document with a new name\nSave As"
189    ID_FILE_PAGE_SETUP      "Change the printing options\nPage Setup"
190    ID_FILE_PRINT_SETUP     "Change the printer and printing options\nPrint Setup"
191    ID_FILE_PRINT           "Print the active document\nPrint"
192    ID_FILE_PRINT_PREVIEW   "Display full pages\nPrint Preview"
193END
194
195STRINGTABLE
196BEGIN
197    ID_APP_ABOUT            "Display program information, version number and copyright\nAbout"
198    ID_APP_EXIT             "Quit the application; prompts to save documents\nExit"
199END
200
201STRINGTABLE
202BEGIN
203    ID_NEXT_PANE            "Switch to the next window pane\nNext Pane"
204    ID_PREV_PANE            "Switch back to the previous window pane\nPrevious Pane"
205END
206
207STRINGTABLE
208BEGIN
209    ID_WINDOW_NEW           "Open another window for the active document\nNew Window"
210    ID_WINDOW_ARRANGE       "Arrange icons at the bottom of the window\nArrange Icons"
211    ID_WINDOW_CASCADE       "Arrange windows so they overlap\nCascade Windows"
212    ID_WINDOW_TILE_HORZ     "Arrange windows as non-overlapping tiles\nTile Windows"
213    ID_WINDOW_TILE_VERT     "Arrange windows as non-overlapping tiles\nTile Windows"
214    ID_WINDOW_SPLIT         "Split the active window into panes\nSplit"
215END
216
217STRINGTABLE
218BEGIN
219    ID_EDIT_CLEAR           "Erase the selection\nErase"
220    ID_EDIT_CLEAR_ALL       "Erase everything\nErase All"
221    ID_EDIT_COPY            "Copy the selection and put it on the Clipboard\nCopy"
222    ID_EDIT_CUT             "Cut the selection and put it on the Clipboard\nCut"
223    ID_EDIT_FIND            "Find the specified text\nFind"
224    ID_EDIT_PASTE           "Insert Clipboard contents\nPaste"
225    ID_EDIT_REPEAT          "Repeat the last action\nRepeat"
226    ID_EDIT_REPLACE         "Replace specific text with different text\nReplace"
227    ID_EDIT_SELECT_ALL      "Select the entire document\nSelect All"
228    ID_EDIT_UNDO            "Undo the last action\nUndo"
229    ID_EDIT_REDO            "Redo the previously undone action\nRedo"
230END
231
232STRINGTABLE
233BEGIN
234    ATL_IDS_SCSIZE          "Change the window size"
235    ATL_IDS_SCMOVE          "Change the window position"
236    ATL_IDS_SCMINIMIZE      "Reduce the window to an icon"
237    ATL_IDS_SCMAXIMIZE      "Enlarge the window to full size"
238    ATL_IDS_SCNEXTWINDOW    "Switch to the next document window"
239    ATL_IDS_SCPREVWINDOW    "Switch to the previous document window"
240    ATL_IDS_SCCLOSE         "Close the active window and prompts to save the documents"
241END
242
243STRINGTABLE
244BEGIN
245    ATL_IDS_SCRESTORE       "Restore the window to normal size"
246    ATL_IDS_SCTASKLIST      "Activate Task List"
247    ATL_IDS_MDICHILD        "Activate this window"
248END
249
250STRINGTABLE
251BEGIN
252    ATL_IDS_IDLEMESSAGE     "Ready"
253END
254
255STRINGTABLE
256BEGIN
257    ATL_IDS_MRU_FILE        "Open this document"
258END
259
260#endif    // English (United States) resources
261/////////////////////////////////////////////////////////////////////////////
262
263
Note: See TracBrowser for help on using the repository browser.