ChunkView.rc 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. //Microsoft Developer Studio generated resource script.
  2. //
  3. #include "resource.h"
  4. #define APSTUDIO_READONLY_SYMBOLS
  5. /////////////////////////////////////////////////////////////////////////////
  6. //
  7. // Generated from the TEXTINCLUDE 2 resource.
  8. //
  9. #include "afxres.h"
  10. /////////////////////////////////////////////////////////////////////////////
  11. #undef APSTUDIO_READONLY_SYMBOLS
  12. /////////////////////////////////////////////////////////////////////////////
  13. // English (U.S.) resources
  14. #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
  15. #ifdef _WIN32
  16. LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
  17. #pragma code_page(1252)
  18. #endif //_WIN32
  19. #ifdef APSTUDIO_INVOKED
  20. /////////////////////////////////////////////////////////////////////////////
  21. //
  22. // TEXTINCLUDE
  23. //
  24. 1 TEXTINCLUDE DISCARDABLE
  25. BEGIN
  26. "resource.h\0"
  27. END
  28. 2 TEXTINCLUDE DISCARDABLE
  29. BEGIN
  30. "#include ""afxres.h""\r\n"
  31. "\0"
  32. END
  33. 3 TEXTINCLUDE DISCARDABLE
  34. BEGIN
  35. "#define _AFX_NO_SPLITTER_RESOURCES\r\n"
  36. "#define _AFX_NO_OLE_RESOURCES\r\n"
  37. "#define _AFX_NO_TRACKER_RESOURCES\r\n"
  38. "#define _AFX_NO_PROPERTY_RESOURCES\r\n"
  39. "\r\n"
  40. "#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)\r\n"
  41. "#ifdef _WIN32\r\n"
  42. "LANGUAGE 9, 1\r\n"
  43. "#pragma code_page(1252)\r\n"
  44. "#endif //_WIN32\r\n"
  45. "#include ""res\\ChunkView.rc2"" // non-Microsoft Visual C++ edited resources\r\n"
  46. "#include ""afxres.rc"" // Standard components\r\n"
  47. "#endif\r\n"
  48. "\0"
  49. END
  50. #endif // APSTUDIO_INVOKED
  51. /////////////////////////////////////////////////////////////////////////////
  52. //
  53. // Icon
  54. //
  55. // Icon with lowest ID value placed first to ensure application icon
  56. // remains consistent on all systems.
  57. IDR_MAINFRAME ICON DISCARDABLE "res\\ChunkView.ico"
  58. IDR_CHUNKVTYPE ICON DISCARDABLE "res\\ChunkViewDoc.ico"
  59. /////////////////////////////////////////////////////////////////////////////
  60. //
  61. // Bitmap
  62. //
  63. IDR_MAINFRAME BITMAP MOVEABLE PURE "res\\Toolbar.bmp"
  64. /////////////////////////////////////////////////////////////////////////////
  65. //
  66. // Toolbar
  67. //
  68. IDR_MAINFRAME TOOLBAR DISCARDABLE 24, 24
  69. BEGIN
  70. BUTTON ID_FILE_OPEN
  71. SEPARATOR
  72. BUTTON ID_DISPLAY_HEX
  73. BUTTON ID_DISPLAY_MICROCHUNKS
  74. SEPARATOR
  75. BUTTON ID_WORDMODE_BYTE
  76. BUTTON ID_WORDMODE_SHORT
  77. BUTTON ID_WORDMODE_LONG
  78. END
  79. /////////////////////////////////////////////////////////////////////////////
  80. //
  81. // Menu
  82. //
  83. IDR_MAINFRAME MENU PRELOAD DISCARDABLE
  84. BEGIN
  85. POPUP "&File"
  86. BEGIN
  87. MENUITEM "&Open...\tCtrl+O", ID_FILE_OPEN
  88. MENUITEM SEPARATOR
  89. MENUITEM "Recent File", ID_FILE_MRU_FILE1, GRAYED
  90. MENUITEM SEPARATOR
  91. MENUITEM "E&xit", ID_APP_EXIT
  92. END
  93. POPUP "&View"
  94. BEGIN
  95. MENUITEM "&Toolbar", ID_VIEW_TOOLBAR
  96. MENUITEM "&Status Bar", ID_VIEW_STATUS_BAR
  97. END
  98. POPUP "&Help"
  99. BEGIN
  100. MENUITEM "&About ChunkView...", ID_APP_ABOUT
  101. END
  102. END
  103. /////////////////////////////////////////////////////////////////////////////
  104. //
  105. // Accelerator
  106. //
  107. IDR_MAINFRAME ACCELERATORS PRELOAD MOVEABLE PURE
  108. BEGIN
  109. "N", ID_FILE_NEW, VIRTKEY, CONTROL
  110. "O", ID_FILE_OPEN, VIRTKEY, CONTROL
  111. "S", ID_FILE_SAVE, VIRTKEY, CONTROL
  112. "Z", ID_EDIT_UNDO, VIRTKEY, CONTROL
  113. "X", ID_EDIT_CUT, VIRTKEY, CONTROL
  114. "C", ID_EDIT_COPY, VIRTKEY, CONTROL
  115. "V", ID_EDIT_PASTE, VIRTKEY, CONTROL
  116. VK_BACK, ID_EDIT_UNDO, VIRTKEY, ALT
  117. VK_DELETE, ID_EDIT_CUT, VIRTKEY, SHIFT
  118. VK_INSERT, ID_EDIT_COPY, VIRTKEY, CONTROL
  119. VK_INSERT, ID_EDIT_PASTE, VIRTKEY, SHIFT
  120. VK_F6, ID_NEXT_PANE, VIRTKEY
  121. VK_F6, ID_PREV_PANE, VIRTKEY, SHIFT
  122. END
  123. /////////////////////////////////////////////////////////////////////////////
  124. //
  125. // Dialog
  126. //
  127. IDD_ABOUTBOX DIALOG DISCARDABLE 0, 0, 235, 55
  128. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  129. CAPTION "About ChunkView"
  130. FONT 8, "MS Sans Serif"
  131. BEGIN
  132. ICON IDR_MAINFRAME,IDC_STATIC,11,17,20,20
  133. LTEXT "ChunkView Version 1.0",IDC_STATIC,40,10,119,8,
  134. SS_NOPREFIX
  135. LTEXT "Copyright (C) 1999",IDC_STATIC,40,25,119,8
  136. DEFPUSHBUTTON "OK",IDOK,178,7,50,14,WS_GROUP
  137. END
  138. #ifndef _MAC
  139. /////////////////////////////////////////////////////////////////////////////
  140. //
  141. // Version
  142. //
  143. VS_VERSION_INFO VERSIONINFO
  144. FILEVERSION 1,0,0,1
  145. PRODUCTVERSION 1,0,0,1
  146. FILEFLAGSMASK 0x3fL
  147. #ifdef _DEBUG
  148. FILEFLAGS 0x1L
  149. #else
  150. FILEFLAGS 0x0L
  151. #endif
  152. FILEOS 0x4L
  153. FILETYPE 0x1L
  154. FILESUBTYPE 0x0L
  155. BEGIN
  156. BLOCK "StringFileInfo"
  157. BEGIN
  158. BLOCK "040904B0"
  159. BEGIN
  160. VALUE "CompanyName", "\0"
  161. VALUE "FileDescription", "ChunkView MFC Application\0"
  162. VALUE "FileVersion", "1, 0, 0, 1\0"
  163. VALUE "InternalName", "ChunkView\0"
  164. VALUE "LegalCopyright", "Copyright (C) 1999\0"
  165. VALUE "LegalTrademarks", "\0"
  166. VALUE "OriginalFilename", "ChunkView.EXE\0"
  167. VALUE "ProductName", "ChunkView Application\0"
  168. VALUE "ProductVersion", "1, 0, 0, 1\0"
  169. END
  170. END
  171. BLOCK "VarFileInfo"
  172. BEGIN
  173. VALUE "Translation", 0x409, 1200
  174. END
  175. END
  176. #endif // !_MAC
  177. /////////////////////////////////////////////////////////////////////////////
  178. //
  179. // DESIGNINFO
  180. //
  181. #ifdef APSTUDIO_INVOKED
  182. GUIDELINES DESIGNINFO DISCARDABLE
  183. BEGIN
  184. IDD_ABOUTBOX, DIALOG
  185. BEGIN
  186. LEFTMARGIN, 7
  187. RIGHTMARGIN, 228
  188. TOPMARGIN, 7
  189. BOTTOMMARGIN, 48
  190. END
  191. END
  192. #endif // APSTUDIO_INVOKED
  193. /////////////////////////////////////////////////////////////////////////////
  194. //
  195. // String Table
  196. //
  197. STRINGTABLE PRELOAD DISCARDABLE
  198. BEGIN
  199. IDR_MAINFRAME "ChunkView\n\nChunkV\n\n\nChunkView.Document\nChunkV Document"
  200. END
  201. STRINGTABLE PRELOAD DISCARDABLE
  202. BEGIN
  203. AFX_IDS_APP_TITLE "ChunkView"
  204. AFX_IDS_IDLEMESSAGE "Ready"
  205. END
  206. STRINGTABLE DISCARDABLE
  207. BEGIN
  208. ID_INDICATOR_EXT "EXT"
  209. ID_INDICATOR_CAPS "CAP"
  210. ID_INDICATOR_NUM "NUM"
  211. ID_INDICATOR_SCRL "SCRL"
  212. ID_INDICATOR_OVR "OVR"
  213. ID_INDICATOR_REC "REC"
  214. END
  215. STRINGTABLE DISCARDABLE
  216. BEGIN
  217. ID_FILE_NEW "Create a new document\nNew"
  218. ID_FILE_OPEN "Open an existing document\nOpen"
  219. ID_FILE_CLOSE "Close the active document\nClose"
  220. ID_FILE_SAVE "Save the active document\nSave"
  221. ID_FILE_SAVE_AS "Save the active document with a new name\nSave As"
  222. END
  223. STRINGTABLE DISCARDABLE
  224. BEGIN
  225. ID_APP_ABOUT "Display program information, version number and copyright\nAbout"
  226. ID_APP_EXIT "Quit the application; prompts to save documents\nExit"
  227. END
  228. STRINGTABLE DISCARDABLE
  229. BEGIN
  230. ID_FILE_MRU_FILE1 "Open this document"
  231. ID_FILE_MRU_FILE2 "Open this document"
  232. ID_FILE_MRU_FILE3 "Open this document"
  233. ID_FILE_MRU_FILE4 "Open this document"
  234. ID_FILE_MRU_FILE5 "Open this document"
  235. ID_FILE_MRU_FILE6 "Open this document"
  236. ID_FILE_MRU_FILE7 "Open this document"
  237. ID_FILE_MRU_FILE8 "Open this document"
  238. ID_FILE_MRU_FILE9 "Open this document"
  239. ID_FILE_MRU_FILE10 "Open this document"
  240. ID_FILE_MRU_FILE11 "Open this document"
  241. ID_FILE_MRU_FILE12 "Open this document"
  242. ID_FILE_MRU_FILE13 "Open this document"
  243. ID_FILE_MRU_FILE14 "Open this document"
  244. ID_FILE_MRU_FILE15 "Open this document"
  245. ID_FILE_MRU_FILE16 "Open this document"
  246. END
  247. STRINGTABLE DISCARDABLE
  248. BEGIN
  249. ID_NEXT_PANE "Switch to the next window pane\nNext Pane"
  250. ID_PREV_PANE "Switch back to the previous window pane\nPrevious Pane"
  251. END
  252. STRINGTABLE DISCARDABLE
  253. BEGIN
  254. ID_WINDOW_SPLIT "Split the active window into panes\nSplit"
  255. END
  256. STRINGTABLE DISCARDABLE
  257. BEGIN
  258. ID_EDIT_CLEAR "Erase the selection\nErase"
  259. ID_EDIT_CLEAR_ALL "Erase everything\nErase All"
  260. ID_EDIT_COPY "Copy the selection and put it on the Clipboard\nCopy"
  261. ID_EDIT_CUT "Cut the selection and put it on the Clipboard\nCut"
  262. ID_EDIT_FIND "Find the specified text\nFind"
  263. ID_EDIT_PASTE "Insert Clipboard contents\nPaste"
  264. ID_EDIT_REPEAT "Repeat the last action\nRepeat"
  265. ID_EDIT_REPLACE "Replace specific text with different text\nReplace"
  266. ID_EDIT_SELECT_ALL "Select the entire document\nSelect All"
  267. ID_EDIT_UNDO "Undo the last action\nUndo"
  268. ID_EDIT_REDO "Redo the previously undone action\nRedo"
  269. END
  270. STRINGTABLE DISCARDABLE
  271. BEGIN
  272. ID_VIEW_TOOLBAR "Show or hide the toolbar\nToggle ToolBar"
  273. ID_VIEW_STATUS_BAR "Show or hide the status bar\nToggle StatusBar"
  274. END
  275. STRINGTABLE DISCARDABLE
  276. BEGIN
  277. AFX_IDS_SCSIZE "Change the window size"
  278. AFX_IDS_SCMOVE "Change the window position"
  279. AFX_IDS_SCMINIMIZE "Reduce the window to an icon"
  280. AFX_IDS_SCMAXIMIZE "Enlarge the window to full size"
  281. AFX_IDS_SCNEXTWINDOW "Switch to the next document window"
  282. AFX_IDS_SCPREVWINDOW "Switch to the previous document window"
  283. AFX_IDS_SCCLOSE "Close the active window and prompts to save the documents"
  284. END
  285. STRINGTABLE DISCARDABLE
  286. BEGIN
  287. AFX_IDS_SCRESTORE "Restore the window to normal size"
  288. AFX_IDS_SCTASKLIST "Activate Task List"
  289. END
  290. STRINGTABLE DISCARDABLE
  291. BEGIN
  292. ID_DISPLAY_HEX "Set the display mode to HEX"
  293. ID_DISPLAY_MICROCHUNKS "Set the display mode to micro chunks"
  294. ID_WORDMODE_LONG "Display hex data as longs"
  295. ID_WORDMODE_SHORT "Display hex data as 16bit values"
  296. ID_WORDMODE_BYTE "Display hex data as bytes"
  297. END
  298. #endif // English (U.S.) resources
  299. /////////////////////////////////////////////////////////////////////////////
  300. #ifndef APSTUDIO_INVOKED
  301. /////////////////////////////////////////////////////////////////////////////
  302. //
  303. // Generated from the TEXTINCLUDE 3 resource.
  304. //
  305. #define _AFX_NO_SPLITTER_RESOURCES
  306. #define _AFX_NO_OLE_RESOURCES
  307. #define _AFX_NO_TRACKER_RESOURCES
  308. #define _AFX_NO_PROPERTY_RESOURCES
  309. #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
  310. #ifdef _WIN32
  311. LANGUAGE 9, 1
  312. #pragma code_page(1252)
  313. #endif //_WIN32
  314. #include "res\ChunkView.rc2" // non-Microsoft Visual C++ edited resources
  315. #include "afxres.rc" // Standard components
  316. #endif
  317. /////////////////////////////////////////////////////////////////////////////
  318. #endif // not APSTUDIO_INVOKED