DragEdit.rc
上传用户:jackiejxj
上传日期:2007-01-02
资源大小:35k
文件大小:13k
源码类别:

TreeView控件

开发平台:

Visual C++

  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. // Chinese (Taiwan) resources
  14. #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_CHT)
  15. #ifdef _WIN32
  16. LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_TRADITIONAL
  17. #pragma code_page(950)
  18. #endif //_WIN32
  19. #ifdef APSTUDIO_INVOKED
  20. /////////////////////////////////////////////////////////////////////////////
  21. //
  22. // TEXTINCLUDE
  23. //
  24. 1 TEXTINCLUDE DISCARDABLE 
  25. BEGIN
  26.     "resource.h"
  27. END
  28. 2 TEXTINCLUDE DISCARDABLE 
  29. BEGIN
  30.     "#include ""afxres.h""rn"
  31.     ""
  32. END
  33. 3 TEXTINCLUDE DISCARDABLE 
  34. BEGIN
  35.     "#define _AFX_NO_SPLITTER_RESOURCESrn"
  36.     "#define _AFX_NO_OLE_RESOURCESrn"
  37.     "#define _AFX_NO_TRACKER_RESOURCESrn"
  38.     "#define _AFX_NO_PROPERTY_RESOURCESrn"
  39.     "rn"
  40.     "#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)rn"
  41.     "#ifdef _WIN32rn"
  42.     "LANGUAGE 9, 1rn"
  43.     "#pragma code_page(1252)rn"
  44.     "#endifrn"
  45.     "#include ""res\DragEdit.rc2""  // non-Microsoft Visual C++ edited resourcesrn"
  46.     "#include ""afxres.rc""         // Standard componentsrn"
  47.     "#include ""afxprint.rc""       // printing/print preview resourcesrn"
  48.     "#endif"
  49. END
  50. #endif    // APSTUDIO_INVOKED
  51. /////////////////////////////////////////////////////////////////////////////
  52. //
  53. // Dialog
  54. //
  55. IDD_DRAGEDIT DIALOG DISCARDABLE  0, 0, 238, 186
  56. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  57. CAPTION "Test CDragEdit"
  58. FONT 10, "System"
  59. BEGIN
  60.     DEFPUSHBUTTON   "OK",IDOK,181,7,50,14
  61.     PUSHBUTTON      "Cancel",IDCANCEL,181,24,50,14
  62.     LTEXT           "Edit &1:",IDC_STATIC,7,15,22,8
  63.     EDITTEXT        IDC_EDIT1,32,13,130,80,ES_MULTILINE | ES_AUTOVSCROLL | 
  64.                     ES_AUTOHSCROLL | ES_WANTRETURN | WS_VSCROLL | WS_HSCROLL
  65.     LTEXT           "Edit &2:",IDC_STATIC,7,97,22,8
  66.     EDITTEXT        IDC_EDIT2,32,99,130,80,ES_MULTILINE | ES_AUTOVSCROLL | 
  67.                     ES_AUTOHSCROLL | ES_WANTRETURN
  68.     LTEXT           "You can drag and drop between the two CDragEdit controls and you can also drag and drop between CDragEdit control and other OLE drag-drop enabled applications.  e.g, Visual C++, WordPad, Word, ...,etc.",
  69.                     IDC_STATIC,167,46,64,133
  70. END
  71. /////////////////////////////////////////////////////////////////////////////
  72. //
  73. // DESIGNINFO
  74. //
  75. #ifdef APSTUDIO_INVOKED
  76. GUIDELINES DESIGNINFO DISCARDABLE 
  77. BEGIN
  78.     IDD_DRAGEDIT, DIALOG
  79.     BEGIN
  80.         LEFTMARGIN, 7
  81.         RIGHTMARGIN, 231
  82.         TOPMARGIN, 7
  83.         BOTTOMMARGIN, 179
  84.     END
  85. END
  86. #endif    // APSTUDIO_INVOKED
  87. #endif    // Chinese (Taiwan) resources
  88. /////////////////////////////////////////////////////////////////////////////
  89. /////////////////////////////////////////////////////////////////////////////
  90. // English (U.S.) resources
  91. #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
  92. #ifdef _WIN32
  93. LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
  94. #pragma code_page(1252)
  95. #endif //_WIN32
  96. /////////////////////////////////////////////////////////////////////////////
  97. //
  98. // Icon
  99. //
  100. // Icon with lowest ID value placed first to ensure application icon
  101. // remains consistent on all systems.
  102. IDR_MAINFRAME           ICON    DISCARDABLE     "res\DragEdit.ico"
  103. IDR_DRAGEDTYPE          ICON    DISCARDABLE     "res\DragEditDoc.ico"
  104. /////////////////////////////////////////////////////////////////////////////
  105. //
  106. // Bitmap
  107. //
  108. IDR_MAINFRAME           BITMAP  MOVEABLE PURE   "res\Toolbar.bmp"
  109. /////////////////////////////////////////////////////////////////////////////
  110. //
  111. // Toolbar
  112. //
  113. IDR_MAINFRAME TOOLBAR DISCARDABLE  16, 15
  114. BEGIN
  115.     BUTTON      ID_FILE_NEW
  116.     BUTTON      ID_FILE_OPEN
  117.     BUTTON      ID_FILE_SAVE
  118.     SEPARATOR
  119.     BUTTON      ID_EDIT_CUT
  120.     BUTTON      ID_EDIT_COPY
  121.     BUTTON      ID_EDIT_PASTE
  122.     SEPARATOR
  123.     BUTTON      ID_FILE_PRINT
  124.     BUTTON      ID_APP_ABOUT
  125. END
  126. /////////////////////////////////////////////////////////////////////////////
  127. //
  128. // Menu
  129. //
  130. IDR_MAINFRAME MENU PRELOAD DISCARDABLE 
  131. BEGIN
  132.     POPUP "&File"
  133.     BEGIN
  134.         MENUITEM "&Test CDragEdit Control",     ID_FILE_TEST
  135.         MENUITEM SEPARATOR
  136.         MENUITEM "E&xit",                       ID_APP_EXIT
  137.     END
  138.     POPUP "&View"
  139.     BEGIN
  140.         MENUITEM "&Toolbar",                    ID_VIEW_TOOLBAR
  141.         MENUITEM "&Status Bar",                 ID_VIEW_STATUS_BAR
  142.     END
  143.     POPUP "&Help"
  144.     BEGIN
  145.         MENUITEM "&About DragEdit...",          ID_APP_ABOUT
  146.     END
  147. END
  148. /////////////////////////////////////////////////////////////////////////////
  149. //
  150. // Accelerator
  151. //
  152. IDR_MAINFRAME ACCELERATORS PRELOAD MOVEABLE PURE 
  153. BEGIN
  154.     "N",            ID_FILE_NEW,            VIRTKEY, CONTROL
  155.     "O",            ID_FILE_OPEN,           VIRTKEY, CONTROL
  156.     "S",            ID_FILE_SAVE,           VIRTKEY, CONTROL
  157.     "P",            ID_FILE_PRINT,          VIRTKEY, CONTROL
  158.     "Z",            ID_EDIT_UNDO,           VIRTKEY, CONTROL
  159.     "X",            ID_EDIT_CUT,            VIRTKEY, CONTROL
  160.     "C",            ID_EDIT_COPY,           VIRTKEY, CONTROL
  161.     "V",            ID_EDIT_PASTE,          VIRTKEY, CONTROL
  162.     VK_BACK,        ID_EDIT_UNDO,           VIRTKEY, ALT
  163.     VK_DELETE,      ID_EDIT_CUT,            VIRTKEY, SHIFT
  164.     VK_INSERT,      ID_EDIT_COPY,           VIRTKEY, CONTROL
  165.     VK_INSERT,      ID_EDIT_PASTE,          VIRTKEY, SHIFT
  166.     VK_F6,          ID_NEXT_PANE,           VIRTKEY 
  167.     VK_F6,          ID_PREV_PANE,           VIRTKEY, SHIFT
  168. END
  169. /////////////////////////////////////////////////////////////////////////////
  170. //
  171. // Dialog
  172. //
  173. IDD_ABOUTBOX DIALOG DISCARDABLE  0, 0, 217, 81
  174. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  175. CAPTION "About DragEdit"
  176. FONT 8, "MS Sans Serif"
  177. BEGIN
  178.     ICON            IDR_MAINFRAME,IDC_STATIC,11,17,21,23
  179.     LTEXT           "DragEdit Version 1.0",IDC_STATIC,40,10,119,8,
  180.                     SS_NOPREFIX
  181.     LTEXT           "Copyright (C) 1997",IDC_STATIC,40,25,119,8
  182.     DEFPUSHBUTTON   "OK",IDOK,178,7,32,14,WS_GROUP
  183.     LTEXT           "Author:Sam LunrnE-Mail:ysl@springsoft.com.tw",
  184.                     IDC_STATIC,41,41,169,33
  185. END
  186. #ifndef _MAC
  187. /////////////////////////////////////////////////////////////////////////////
  188. //
  189. // Version
  190. //
  191. VS_VERSION_INFO VERSIONINFO
  192.  FILEVERSION 1,0,0,1
  193.  PRODUCTVERSION 1,0,0,1
  194.  FILEFLAGSMASK 0x3fL
  195. #ifdef _DEBUG
  196.  FILEFLAGS 0x1L
  197. #else
  198.  FILEFLAGS 0x0L
  199. #endif
  200.  FILEOS 0x4L
  201.  FILETYPE 0x1L
  202.  FILESUBTYPE 0x0L
  203. BEGIN
  204.     BLOCK "StringFileInfo"
  205.     BEGIN
  206.         BLOCK "040904B0"
  207.         BEGIN
  208.             VALUE "CompanyName", ""
  209.             VALUE "FileDescription", "DragEdit MFC Application"
  210.             VALUE "FileVersion", "1, 0, 0, 1"
  211.             VALUE "InternalName", "DragEdit"
  212.             VALUE "LegalCopyright", "Copyright (C) 1997"
  213.             VALUE "LegalTrademarks", ""
  214.             VALUE "OriginalFilename", "DragEdit.EXE"
  215.             VALUE "ProductName", "DragEdit Application"
  216.             VALUE "ProductVersion", "1, 0, 0, 1"
  217.         END
  218.     END
  219.     BLOCK "VarFileInfo"
  220.     BEGIN
  221.         VALUE "Translation", 0x409, 1200
  222.     END
  223. END
  224. #endif    // !_MAC
  225. /////////////////////////////////////////////////////////////////////////////
  226. //
  227. // DESIGNINFO
  228. //
  229. #ifdef APSTUDIO_INVOKED
  230. GUIDELINES DESIGNINFO DISCARDABLE 
  231. BEGIN
  232.     IDD_ABOUTBOX, DIALOG
  233.     BEGIN
  234.         LEFTMARGIN, 7
  235.         RIGHTMARGIN, 210
  236.         TOPMARGIN, 7
  237.         BOTTOMMARGIN, 74
  238.     END
  239. END
  240. #endif    // APSTUDIO_INVOKED
  241. /////////////////////////////////////////////////////////////////////////////
  242. //
  243. // String Table
  244. //
  245. STRINGTABLE PRELOAD DISCARDABLE 
  246. BEGIN
  247.     IDR_MAINFRAME           "DragEditnnDragEdnnnDragEdit.DocumentnDragEd Document"
  248. END
  249. STRINGTABLE PRELOAD DISCARDABLE 
  250. BEGIN
  251.     AFX_IDS_APP_TITLE       "DragEdit"
  252.     AFX_IDS_IDLEMESSAGE     "Ready"
  253. END
  254. STRINGTABLE DISCARDABLE 
  255. BEGIN
  256.     ID_INDICATOR_EXT        "EXT"
  257.     ID_INDICATOR_CAPS       "CAP"
  258.     ID_INDICATOR_NUM        "NUM"
  259.     ID_INDICATOR_SCRL       "SCRL"
  260.     ID_INDICATOR_OVR        "OVR"
  261.     ID_INDICATOR_REC        "REC"
  262. END
  263. STRINGTABLE DISCARDABLE 
  264. BEGIN
  265.     ID_FILE_NEW             "Create a new documentnNew"
  266.     ID_FILE_OPEN            "Open an existing documentnOpen"
  267.     ID_FILE_CLOSE           "Close the active documentnClose"
  268.     ID_FILE_SAVE            "Save the active documentnSave"
  269.     ID_FILE_SAVE_AS         "Save the active document with a new namenSave As"
  270.     ID_FILE_PAGE_SETUP      "Change the printing optionsnPage Setup"
  271.     ID_FILE_PRINT_SETUP     "Change the printer and printing optionsnPrint Setup"
  272.     ID_FILE_PRINT           "Print the active documentnPrint"
  273.     ID_FILE_PRINT_PREVIEW   "Display full pagesnPrint Preview"
  274. END
  275. STRINGTABLE DISCARDABLE 
  276. BEGIN
  277.     ID_APP_ABOUT            "Display program information, version number and copyrightnAbout"
  278.     ID_APP_EXIT             "Quit the application; prompts to save documentsnExit"
  279. END
  280. STRINGTABLE DISCARDABLE 
  281. BEGIN
  282.     ID_FILE_MRU_FILE1       "Open this document"
  283.     ID_FILE_MRU_FILE2       "Open this document"
  284.     ID_FILE_MRU_FILE3       "Open this document"
  285.     ID_FILE_MRU_FILE4       "Open this document"
  286.     ID_FILE_MRU_FILE5       "Open this document"
  287.     ID_FILE_MRU_FILE6       "Open this document"
  288.     ID_FILE_MRU_FILE7       "Open this document"
  289.     ID_FILE_MRU_FILE8       "Open this document"
  290.     ID_FILE_MRU_FILE9       "Open this document"
  291.     ID_FILE_MRU_FILE10      "Open this document"
  292.     ID_FILE_MRU_FILE11      "Open this document"
  293.     ID_FILE_MRU_FILE12      "Open this document"
  294.     ID_FILE_MRU_FILE13      "Open this document"
  295.     ID_FILE_MRU_FILE14      "Open this document"
  296.     ID_FILE_MRU_FILE15      "Open this document"
  297.     ID_FILE_MRU_FILE16      "Open this document"
  298. END
  299. STRINGTABLE DISCARDABLE 
  300. BEGIN
  301.     ID_NEXT_PANE            "Switch to the next window panenNext Pane"
  302.     ID_PREV_PANE            "Switch back to the previous window panenPrevious Pane"
  303. END
  304. STRINGTABLE DISCARDABLE 
  305. BEGIN
  306.     ID_WINDOW_SPLIT         "Split the active window into panesnSplit"
  307. END
  308. STRINGTABLE DISCARDABLE 
  309. BEGIN
  310.     ID_EDIT_CLEAR           "Erase the selectionnErase"
  311.     ID_EDIT_CLEAR_ALL       "Erase everythingnErase All"
  312.     ID_EDIT_COPY            "Copy the selection and put it on the ClipboardnCopy"
  313.     ID_EDIT_CUT             "Cut the selection and put it on the ClipboardnCut"
  314.     ID_EDIT_FIND            "Find the specified textnFind"
  315.     ID_EDIT_PASTE           "Insert Clipboard contentsnPaste"
  316.     ID_EDIT_REPEAT          "Repeat the last actionnRepeat"
  317.     ID_EDIT_REPLACE         "Replace specific text with different textnReplace"
  318.     ID_EDIT_SELECT_ALL      "Select the entire documentnSelect All"
  319.     ID_EDIT_UNDO            "Undo the last actionnUndo"
  320.     ID_EDIT_REDO            "Redo the previously undone actionnRedo"
  321. END
  322. STRINGTABLE DISCARDABLE 
  323. BEGIN
  324.     ID_VIEW_TOOLBAR         "Show or hide the toolbarnToggle ToolBar"
  325.     ID_VIEW_STATUS_BAR      "Show or hide the status barnToggle StatusBar"
  326. END
  327. STRINGTABLE DISCARDABLE 
  328. BEGIN
  329.     AFX_IDS_SCSIZE          "Change the window size"
  330.     AFX_IDS_SCMOVE          "Change the window position"
  331.     AFX_IDS_SCMINIMIZE      "Reduce the window to an icon"
  332.     AFX_IDS_SCMAXIMIZE      "Enlarge the window to full size"
  333.     AFX_IDS_SCNEXTWINDOW    "Switch to the next document window"
  334.     AFX_IDS_SCPREVWINDOW    "Switch to the previous document window"
  335.     AFX_IDS_SCCLOSE         "Close the active window and prompts to save the documents"
  336. END
  337. STRINGTABLE DISCARDABLE 
  338. BEGIN
  339.     AFX_IDS_SCRESTORE       "Restore the window to normal size"
  340.     AFX_IDS_SCTASKLIST      "Activate Task List"
  341. END
  342. STRINGTABLE DISCARDABLE 
  343. BEGIN
  344.     AFX_IDS_PREVIEW_CLOSE   "Close print preview modenCancel Preview"
  345. END
  346. STRINGTABLE DISCARDABLE 
  347. BEGIN
  348.     ID_FILE_TEST            "Test CDragEdit Control"
  349. END
  350. #endif    // English (U.S.) resources
  351. /////////////////////////////////////////////////////////////////////////////
  352. #ifndef APSTUDIO_INVOKED
  353. /////////////////////////////////////////////////////////////////////////////
  354. //
  355. // Generated from the TEXTINCLUDE 3 resource.
  356. //
  357. #define _AFX_NO_SPLITTER_RESOURCES
  358. #define _AFX_NO_OLE_RESOURCES
  359. #define _AFX_NO_TRACKER_RESOURCES
  360. #define _AFX_NO_PROPERTY_RESOURCES
  361. #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
  362. #ifdef _WIN32
  363. LANGUAGE 9, 1
  364. #pragma code_page(1252)
  365. #endif
  366. #include "resDragEdit.rc2"  // non-Microsoft Visual C++ edited resources
  367. #include "afxres.rc"         // Standard components
  368. #include "afxprint.rc"       // printing/print preview resources
  369. #endif
  370. /////////////////////////////////////////////////////////////////////////////
  371. #endif    // not APSTUDIO_INVOKED