home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / palette / pal.rc < prev    next >
Encoding:
Text File  |  1994-01-16  |  8.9 KB  |  273 lines

  1. //Microsoft App Studio 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 "afxres.h"
  11.  
  12. /////////////////////////////////////////////////////////////////////////////////////
  13. #undef APSTUDIO_READONLY_SYMBOLS
  14.  
  15. #ifdef APSTUDIO_INVOKED
  16. //////////////////////////////////////////////////////////////////////////////
  17. //
  18. // TEXTINCLUDE
  19. //
  20.  
  21. 1 TEXTINCLUDE DISCARDABLE 
  22. BEGIN
  23.     "resource.h\0"
  24. END
  25.  
  26. 2 TEXTINCLUDE DISCARDABLE 
  27. BEGIN
  28.     "#include ""afxres.h""\r\n"
  29.     "\0"
  30. END
  31.  
  32. 3 TEXTINCLUDE DISCARDABLE 
  33. BEGIN
  34.     //"#include ""res\\pal.rc2""  // non-App Studio edited resources\r\n"
  35.     // Let's change this line because there is no 'res' subdirectory.
  36.     "#include ""pal.rc2""  // non-App Studio edited resources\r\n"
  37.     "\r\n"
  38.     "#include ""afxres.rc""  // Standard components\r\n"
  39.     "#include ""afxprint.rc""  // printing/print preview resources\r\n"
  40.     "\0"
  41. END
  42.  
  43. /////////////////////////////////////////////////////////////////////////////////////
  44. #endif    // APSTUDIO_INVOKED
  45.  
  46.  
  47. //////////////////////////////////////////////////////////////////////////////
  48. //
  49. // Icon
  50. //
  51.  
  52. //IDR_MAINFRAME           ICON    DISCARDABLE     "RES\\PAL.ICO"
  53. // Let's change this line because there is no 'RES' subdirectory.
  54.   IDR_MAINFRAME           ICON    DISCARDABLE     "PALETTE.ICO"
  55.  
  56. //////////////////////////////////////////////////////////////////////////////
  57. //
  58. // Bitmap
  59. //
  60.  
  61. //IDR_MAINFRAME           BITMAP  MOVEABLE PURE   "RES\\TOOLBAR.BMP"
  62. // Let's change this line because there is no 'RES' subdirectory.
  63. IDR_MAINFRAME           BITMAP  MOVEABLE PURE   "TOOLBAR.BMP"
  64.  
  65. //////////////////////////////////////////////////////////////////////////////
  66. //
  67. // Accelerator
  68. //
  69.  
  70. IDR_MAINFRAME ACCELERATORS PRELOAD MOVEABLE PURE 
  71. BEGIN
  72.     "N",            ID_FILE_NEW,            VIRTKEY,CONTROL
  73.     "O",            ID_FILE_OPEN,           VIRTKEY,CONTROL
  74.     "S",            ID_FILE_SAVE,           VIRTKEY,CONTROL
  75.     "P",            ID_FILE_PRINT,          VIRTKEY,CONTROL
  76.     "Z",            ID_EDIT_UNDO,           VIRTKEY,CONTROL
  77.     "X",            ID_EDIT_CUT,            VIRTKEY,CONTROL
  78.     "C",            ID_EDIT_COPY,           VIRTKEY,CONTROL
  79.     "V",            ID_EDIT_PASTE,          VIRTKEY,CONTROL
  80.     VK_BACK,        ID_EDIT_UNDO,           VIRTKEY,ALT
  81.     VK_DELETE,      ID_EDIT_CUT,            VIRTKEY,SHIFT
  82.     VK_INSERT,      ID_EDIT_COPY,           VIRTKEY,CONTROL
  83.     VK_INSERT,      ID_EDIT_PASTE,          VIRTKEY,SHIFT
  84.     VK_F6,          ID_NEXT_PANE,           VIRTKEY 
  85.     VK_F6,          ID_PREV_PANE,           VIRTKEY,SHIFT
  86. END
  87.  
  88.  
  89. //////////////////////////////////////////////////////////////////////////////
  90. //
  91. // Dialog
  92. //
  93.  
  94. IDD_ABOUTBOX DIALOG DISCARDABLE  34, 22, 217, 55
  95. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  96. CAPTION "About PAL"
  97. FONT 8, "MS Sans Serif"
  98. BEGIN
  99.     ICON            IDR_MAINFRAME,IDC_STATIC,11,17,20,20
  100.     LTEXT           "PAL Application Version 1.0",IDC_STATIC,40,10,119,8
  101.     LTEXT           "Copyright \251 1993",IDC_STATIC,40,25,119,8
  102.     DEFPUSHBUTTON   "OK",IDOK,176,6,32,14,WS_GROUP
  103. END
  104.  
  105.  
  106. //////////////////////////////////////////////////////////////////////////////
  107. //
  108. // String Table
  109. //
  110.  
  111. STRINGTABLE PRELOAD DISCARDABLE 
  112. BEGIN
  113.     //IDR_MAINFRAME           "PAL Windows Application\nPal\nPAL Document"
  114.     // The above is the default application window name. Let's change
  115.     // it so that is similar to the C version of Palette.  
  116.       IDR_MAINFRAME           "Palette \n \nPAL Document"
  117.  
  118. END
  119.  
  120. STRINGTABLE PRELOAD DISCARDABLE 
  121. BEGIN
  122.     AFX_IDS_APP_TITLE       "PAL Windows Application"
  123.     AFX_IDS_IDLEMESSAGE     "Ready"
  124. END
  125.  
  126. STRINGTABLE DISCARDABLE 
  127. BEGIN
  128.     ID_INDICATOR_EXT        "EXT"
  129.     ID_INDICATOR_CAPS       "CAP"
  130.     ID_INDICATOR_NUM        "NUM"
  131.     ID_INDICATOR_SCRL       "SCRL"
  132.     ID_INDICATOR_OVR        "OVR"
  133.     ID_INDICATOR_REC        "REC"
  134. END
  135.  
  136. STRINGTABLE DISCARDABLE 
  137. BEGIN
  138.     ID_FILE_NEW             "Create a new document"
  139.     ID_FILE_OPEN            "Open an existing document"
  140.     ID_FILE_CLOSE           "Close the active document"
  141.     ID_FILE_SAVE            "Save the active document"
  142.     ID_FILE_SAVE_AS         "Save the active document with a new name"
  143.     ID_FILE_PAGE_SETUP      "Change the printing options"
  144.     ID_FILE_PRINT_SETUP     "Change the printer and printing options"
  145.     ID_FILE_PRINT           "Print the active document"
  146.     ID_FILE_PRINT_PREVIEW   "Display full pages"
  147. END
  148.  
  149. STRINGTABLE DISCARDABLE 
  150. BEGIN
  151.     ID_APP_ABOUT            "Display program information, version number and copyright"
  152.     ID_APP_EXIT             "Quit the application; prompts to save documents"
  153. END
  154.  
  155. STRINGTABLE DISCARDABLE 
  156. BEGIN
  157.     ID_FILE_MRU_FILE1       "Open this document"
  158.     ID_FILE_MRU_FILE2       "Open this document"
  159.     ID_FILE_MRU_FILE3       "Open this document"
  160.     ID_FILE_MRU_FILE4       "Open this document"
  161. END
  162.  
  163. STRINGTABLE DISCARDABLE 
  164. BEGIN
  165.     ID_NEXT_PANE            "Switch to the next window pane"
  166.     ID_PREV_PANE            "Switch back to the previous window pane"
  167. END
  168.  
  169. STRINGTABLE DISCARDABLE 
  170. BEGIN
  171.     ID_EDIT_CLEAR           "Erase the selection"
  172.     ID_EDIT_CLEAR_ALL       "Erase everything"
  173.     ID_EDIT_COPY            "Copy the selection and put it on the Clipboard"
  174.     ID_EDIT_CUT             "Cut the selection and put it on the Clipboard"
  175.     ID_EDIT_FIND            "Find the specified text"
  176.     ID_EDIT_PASTE           "Insert Clipboard contents"
  177.     ID_EDIT_REPEAT          "Repeat the last action"
  178.     ID_EDIT_REPLACE         "Replace specific text with different text"
  179.     ID_EDIT_SELECT_ALL      "Select the entire document"
  180.     ID_EDIT_UNDO            "Undo the last action"
  181.     ID_EDIT_REDO            "Redo the previously undone action"
  182. END
  183.  
  184. STRINGTABLE DISCARDABLE 
  185. BEGIN
  186.     ID_VIEW_TOOLBAR         "Show or hide the toolbar"
  187.     ID_VIEW_STATUS_BAR      "Show or hide the status bar"
  188. END
  189.  
  190. STRINGTABLE DISCARDABLE 
  191. BEGIN
  192.     AFX_IDS_SCSIZE          "Change the window size"
  193.     AFX_IDS_SCMOVE          "Change the window position"
  194.     AFX_IDS_SCMINIMIZE      "Reduce the window to an icon"
  195.     AFX_IDS_SCMAXIMIZE      "Enlarge the window to full size"
  196.     AFX_IDS_SCNEXTWINDOW    "Switch to the next document window"
  197.     AFX_IDS_SCPREVWINDOW    "Switch to the previous document window"
  198.     AFX_IDS_SCCLOSE         "Close the active window and prompts to save the documents"
  199. END
  200.  
  201. STRINGTABLE DISCARDABLE 
  202. BEGIN
  203.     AFX_IDS_SCRESTORE       "Restore the window to normal size"
  204.     AFX_IDS_SCTASKLIST      "Activate Task List"
  205. END
  206.  
  207.  
  208. //////////////////////////////////////////////////////////////////////////////
  209. //
  210. // Menu
  211. //
  212.  
  213. IDR_MAINFRAME MENU PRELOAD DISCARDABLE 
  214. BEGIN
  215.     POPUP "&File"
  216.     BEGIN
  217.         MENUITEM "&New\tCtrl+N",                ID_FILE_NEW
  218.         MENUITEM "&Open...\tCtrl+O",            ID_FILE_OPEN
  219.         MENUITEM "&Save\tCtrl+S",               ID_FILE_SAVE
  220.         MENUITEM "Save &As...",                 ID_FILE_SAVE_AS
  221.         MENUITEM SEPARATOR
  222.         MENUITEM "&Print...\tCtrl+P",           ID_FILE_PRINT
  223.         MENUITEM "Print Pre&view",              ID_FILE_PRINT_PREVIEW
  224.         MENUITEM "P&rint Setup...",             ID_FILE_PRINT_SETUP
  225.         MENUITEM SEPARATOR
  226.         MENUITEM "Recent File",                 ID_FILE_MRU_FILE1, GRAYED
  227.         MENUITEM SEPARATOR
  228.         MENUITEM "E&xit",                       ID_APP_EXIT
  229.     END
  230.     POPUP "&Edit"
  231.     BEGIN
  232.         MENUITEM "&Undo\tCtrl+Z",               ID_EDIT_UNDO
  233.         MENUITEM SEPARATOR
  234.         MENUITEM "Cu&t\tCtrl+X",                ID_EDIT_CUT
  235.         MENUITEM "&Copy\tCtrl+C",               ID_EDIT_COPY
  236.         MENUITEM "&Paste\tCtrl+V",              ID_EDIT_PASTE
  237.     END
  238.     POPUP "&View"
  239.     BEGIN
  240.         MENUITEM "&Toolbar",                    ID_VIEW_TOOLBAR
  241.         MENUITEM "&Status Bar",                 ID_VIEW_STATUS_BAR
  242.     END
  243.     POPUP "&Help"
  244.     BEGIN
  245.         MENUITEM "&About DOLLSING...",          ID_APP_ABOUT
  246.     END
  247. END
  248.  
  249.  
  250. //////////////////////////////////////////////////////////////////////////////
  251. //
  252. // Cursor
  253. //
  254.  
  255. CURSOR                  CURSOR  DISCARDABLE     "PALETTE.CUR"
  256.  
  257. #ifndef APSTUDIO_INVOKED
  258. ////////////////////////////////////////////////////////////////////////////////
  259. //
  260. // Generated from the TEXTINCLUDE 3 resource.
  261. //
  262. // Let's change this line because there is no 'RES' subdirectory.
  263.  
  264. //#include "res\pal.rc2"  // non-App Studio edited resources
  265. #include "pal.rc2"  // non-App Studio edited resources
  266.  
  267. #include "afxres.rc"  // Standard components
  268. #include "afxprint.rc"  // printing/print preview resources
  269.  
  270. /////////////////////////////////////////////////////////////////////////////////////
  271. #endif    // not APSTUDIO_INVOKED
  272.  
  273.