home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / VSCPPv8.zip / VACPP / IBMCPP / samples / IOC / TBAR1 / TBAR1.RC < prev    next >
Text File  |  1995-05-01  |  2KB  |  47 lines

  1. #include <os2.h>
  2. #include <icconst.h>
  3. #include "tbar1.h"
  4.  
  5. ICON ID_MAIN_WINDOW tbar1.ico
  6.  
  7. MENU ID_MAIN_WINDOW
  8. BEGIN
  9.   SUBMENU "~Edit",          ID_EDIT
  10.   BEGIN
  11.     MENUITEM "~Copy",       IC_ID_COPY
  12.     MENUITEM "Cu~t",        IC_ID_CUT
  13.     MENUITEM "~Paste",      IC_ID_PASTE
  14.   END
  15.   SUBMENU "~Toolbar",       ID_TOOLBAR
  16.   BEGIN
  17.     MENUITEM "Show ~bitmaps only",     ID_SHOWBITMAPS
  18.     MENUITEM "Show ~text only",        ID_SHOWTEXT
  19.     MENUITEM "Show text ~and bitmaps", ID_SHOWTEXTANDBITMAPS
  20.     MENUITEM SEPARATOR
  21.     MENUITEM "Top",                    ID_TOOLBAR_TOP
  22.     MENUITEM "Bottom",                 ID_TOOLBAR_BOTTOM
  23.     MENUITEM "Left",                   ID_TOOLBAR_LEFT
  24.     MENUITEM "Right",                  ID_TOOLBAR_RIGHT
  25.     MENUITEM "Floating",               ID_TOOLBAR_FLOATING
  26.   END
  27. END
  28.  
  29. STRINGTABLE PRELOAD
  30. BEGIN
  31.   IC_ID_CUT                       , "Cut"
  32.   IC_ID_COPY                      , "Copy"
  33.   IC_ID_PASTE                     , "Paste"
  34.   IC_ID_BOLD                      , "Bold"
  35.   IC_ID_ITALIC                    , "Italic"
  36.   IC_ID_UNDERSCORE                , "Underscore"
  37.   ID_FONTCOMBO                    , "Select font"
  38.   OFFSET_INFOTEXT+IC_ID_CUT       , "Removes the marked text and places it on the clipboard."
  39.   OFFSET_INFOTEXT+IC_ID_COPY      , "Copies the marked text to the clipboard."
  40.   OFFSET_INFOTEXT+IC_ID_PASTE     , "Pastes the text from the clipboard at the cursor."
  41.   OFFSET_INFOTEXT+IC_ID_BOLD      , "Changes the text to Bold."
  42.   OFFSET_INFOTEXT+IC_ID_ITALIC    , "Changes the text to Italic."
  43.   OFFSET_INFOTEXT+IC_ID_UNDERSCORE, "Changes the text to Underscore."
  44.   OFFSET_INFOTEXT+ID_FONTCOMBO    , "Combo-box to select a new font."
  45. END
  46.  
  47.