home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / ioc / tbar1 / tbar1.rc < prev    next >
Encoding:
Text File  |  1996-02-22  |  2.3 KB  |  54 lines

  1. //********************************************************************
  2. // This file was produced using Visual Age C++ IRCC
  3. //
  4. //
  5. //
  6. //  This file was read from tbar1.rcx  (OS/2 .rc file)  and converted to 
  7. //    Windows .rc file.
  8. //********************************************************************
  9. #include <icconst.h>
  10. #include "tbar1.h"
  11. ID_MAIN_WINDOW    ICON       tbar1.ico
  12.  
  13. ID_MAIN_WINDOW  MENUEX  
  14.   BEGIN
  15.     POPUP     "&Edit"                    ,  ID_EDIT
  16.       BEGIN
  17.         MENUITEM  "&Copy"                    ,  IC_ID_COPY
  18.         MENUITEM  "Cu&t"                     ,  IC_ID_CUT
  19.         MENUITEM  "&Paste"                   ,  IC_ID_PASTE
  20.       END
  21.     POPUP     "&Toolbar"                 ,  ID_TOOLBAR
  22.       BEGIN
  23.         MENUITEM  "Show &bitmaps only"       ,  ID_SHOWBITMAPS
  24.         MENUITEM  "Show &text only"          ,  ID_SHOWTEXT
  25.         MENUITEM  "Show text &and bitmaps"       ,  ID_SHOWTEXTANDBITMAPS
  26.         MENUITEM  SEPARATOR
  27.         MENUITEM  "Top"                      ,  ID_TOOLBAR_TOP
  28.         MENUITEM  "Bottom"                   ,  ID_TOOLBAR_BOTTOM
  29.         MENUITEM  "Left"                     ,  ID_TOOLBAR_LEFT
  30.         MENUITEM  "Right"                    ,  ID_TOOLBAR_RIGHT
  31.         MENUITEM  "Floating"                 ,  ID_TOOLBAR_FLOATING
  32.       END
  33.   END
  34.  
  35. STRINGTABLE    PRELOAD
  36.   BEGIN
  37.     STR_TOOLBAR                   ,    "Toolbar"
  38.     ID_MAIN_WINDOW                ,    "Tool Bar Sample 1"
  39.     IC_ID_CUT                     ,    "Cut"
  40.     IC_ID_COPY                    ,    "Copy"
  41.     IC_ID_PASTE                   ,    "Paste"
  42.     IC_ID_BOLD                    ,    "Bold"
  43.     IC_ID_ITALIC                  ,    "Italic"
  44.     IC_ID_UNDERSCORE              ,    "Underscore"
  45.     ID_FONTCOMBO                  ,    "Select font"
  46.     OFFSET_INFOTEXT+IC_ID_CUT     ,    "Removes the marked text and places it on the clipboard."
  47.     OFFSET_INFOTEXT+IC_ID_COPY    ,    "Copies the marked text to the clipboard."
  48.     OFFSET_INFOTEXT+IC_ID_PASTE   ,    "Pastes the text from the clipboard at the cursor."
  49.     OFFSET_INFOTEXT+IC_ID_BOLD    ,    "Changes the text to Bold."
  50.     OFFSET_INFOTEXT+IC_ID_ITALIC  ,    "Changes the text to Italic."
  51.     OFFSET_INFOTEXT+IC_ID_UNDERSCORE,    "Changes the text to Underscore."
  52.     OFFSET_INFOTEXT+ID_FONTCOMBO  ,    "Combo-box to select a new font."
  53.   END
  54.