home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / debug / tracebox / trbrowse.rc < prev   
Encoding:
Text File  |  1996-10-29  |  3.2 KB  |  96 lines

  1. /************************************************************
  2. / Problem Determination  - Trace Queue Browser
  3. /
  4. / Copyright (C) 1994, Law, Leong, Love, Olson, Tsuji.
  5. / Copyright (c) 1997 John Wiley & Sons, Inc. 
  6. / All Rights Reserved.
  7. ************************************************************/
  8. #include "trbrowse.h"
  9.  
  10. #ifdef IC_PM   /* os2 resources */
  11.  
  12. ICON   WND_MAIN   ".\\os2\\osfindr.ico"
  13.  
  14. /***************************************************************************
  15. // Menu bar for main window - used by IMenuBar Class                       *
  16. ***************************************************************************/
  17. MENU WND_MAIN
  18.   BEGIN
  19.     SUBMENU        "~File"               , MI_FILE
  20.       BEGIN
  21.         MENUITEM   "E~xit"               , MI_EXIT
  22.       END
  23.     SUBMENU        "~Selected"           , MI_SELECTED
  24.       BEGIN
  25.         MENUITEM   "Cu~t"                , MI_CUT
  26.         MENUITEM   "~Copy"               , MI_COPY
  27.         MENUITEM   "Cle~ar all"          , MI_CLEAR
  28.         MENUITEM   "~Select all"         , MI_SELECTALL
  29.         MENUITEM   "Dese~lect all"       , MI_DESELECTALL
  30.       END
  31.     SUBMENU        "~View"               , MI_VIEW
  32.       BEGIN
  33.         MENUITEM   "~Include..."         , MI_INCLUDE
  34.         MENUITEM   "Include ~all"        , MI_INCLUDEALL
  35.         MENUITEM   "Input ~filter..."    , MI_INPUTFILTER
  36.         MENUITEM   "Auto~scroll"         , MI_AUTOSCROLL
  37.       END
  38.     MENUITEM       "S~top"               , MI_START
  39.     SUBMENU        "~Help"               , MI_HELP
  40.       BEGIN
  41.         MENUITEM   "~Product Information", MI_ABOUT
  42.       END
  43.   END
  44.  
  45. STRINGTABLE
  46.   BEGIN
  47.      WND_MAIN     , "Trace Browser"
  48.      ABOUT_TEXT   , "Trace monitor program\015- Copyright (C) 1994,1996 Law, Leong, Love, Olson, Tsuji."
  49.      START_TEXT   , "S~tart"
  50.      STOP_TEXT    , "S~top"
  51.   END
  52.  
  53. #else    /* Windows resources */
  54.  
  55. WND_MAIN          ICON       ".\win\osfindr.ico"
  56.  
  57. WND_MAIN  MENUEX
  58.   BEGIN
  59.     POPUP         "&File"                    ,  MI_FILE
  60.       BEGIN
  61.         MENUITEM  "E&xit"                    ,  MI_EXIT
  62.       END
  63.     POPUP         "&Selected"                ,  MI_SELECTED
  64.       BEGIN
  65.         MENUITEM  "Cu&t"                     ,  MI_CUT
  66.         MENUITEM  "&Copy"                    ,  MI_COPY
  67.         MENUITEM  "Cle&ar all"               ,  MI_CLEAR
  68.         MENUITEM  "&Select all"              ,  MI_SELECTALL
  69.         MENUITEM  "Dese&lect all"            ,  MI_DESELECTALL
  70.       END
  71.     POPUP         "&View"                    ,  MI_VIEW
  72.       BEGIN
  73.         MENUITEM  "&Include..."              ,  MI_INCLUDE
  74.         MENUITEM  "Include &all"             ,  MI_INCLUDEALL
  75.         MENUITEM  "Input &filter..."         ,  MI_INPUTFILTER
  76.         MENUITEM  "Auto&scroll"              ,  MI_AUTOSCROLL
  77.       END
  78.     MENUITEM      "S&top"                    ,  MI_START
  79.     POPUP         "&Help"                    ,  MI_HELP
  80.       BEGIN
  81.         MENUITEM  "&Product Information"     ,  MI_ABOUT
  82.       END
  83.   END
  84.  
  85. STRINGTABLE
  86.   BEGIN
  87.     WND_MAIN     , "Trace Browser"
  88.     ABOUT_TEXT   , "Trace monitor program\015- Copyright (C) 1994,1996 Law, Leong, Love, Olson, Tsuji."
  89.     START_TEXT   , "S&tart"
  90.     STOP_TEXT    , "S&top"
  91.   END
  92.  
  93. #endif
  94.  
  95. rcinclude "filtdlg.rc"
  96.