home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / sdktools / winnt / perfmon / perfmon.rc < prev    next >
Encoding:
Text File  |  1997-10-05  |  2.7 KB  |  109 lines

  1. /*****************************************************************************
  2.  *
  3.  *  Perfmon.rc - This is the menu and string resource module.
  4.  *
  5.  *  Microsoft Confidential
  6.  *  Copyright (c) 1992-1997 Microsoft Corporation
  7.  *
  8.  *
  9.  ****************************************************************************/
  10.  
  11. //=============================//
  12. // Includes                    //
  13. //=============================//
  14.  
  15. #include "dlgids.h"
  16. #include "menuids.h"
  17. #include "strids.h"
  18. #include "perfmrc.h"
  19. #include <windows.h>
  20.  
  21.  
  22. //=============================//
  23. // Icons                       //
  24. //=============================//
  25.  
  26. #ifdef ADVANCED_PERFMON
  27. idIcon ICON PRELOAD perfmon.ico
  28. #else
  29. idIcon ICON PRELOAD perfmetr.ico
  30. #endif
  31.  
  32. //=============================//
  33. // Dialogs                     //
  34. //=============================//
  35.  
  36.  
  37. // #include "abort.dlg"
  38. #include "addline.dlg"
  39. #include "addlog.dlg"
  40. #include "alrtdisp.dlg"
  41. #include "alrtoptn.dlg"
  42. #include "datasrc.dlg"
  43. #include "logdisp.dlg"
  44. #include "logoptns.dlg"
  45. #include "rptoptns.dlg"
  46. #include "timefrm.dlg"
  47. #include "export.dlg"
  48.  
  49. #include "pmrc.dlg"
  50. #include "chosecom.dlg"
  51.  
  52. //=============================//
  53. // Menus                       //
  54. //=============================//
  55.  
  56. #include "menus.rc"
  57.  
  58.  
  59. //=============================//
  60. // Bitmap                      //
  61. //=============================//
  62.  
  63.  
  64. idBitmapToolbar                 BITMAP PRELOAD perfmon.bmp
  65. idBitmapAlertStatus             BITMAP PRELOAD alerts.bmp
  66. idBitmapLogStatus               BITMAP PRELOAD logs.bmp
  67.  
  68.  
  69. //=============================//
  70. // Strings                     //
  71. //=============================//
  72.  
  73.  
  74. #include "helpline.rc"
  75. #include "strings.rc"
  76.  
  77.  
  78. //=============================//
  79. // Accelerators                //
  80. //=============================//
  81.  
  82.  
  83. idAccelerators ACCELERATORS
  84. begin
  85.    "^C",        IDM_VIEWCHART
  86. #ifdef ADVANCED_PERFMON
  87.    "^A",        IDM_VIEWALERT
  88.    "^L",        IDM_VIEWLOG
  89.    "^R",        IDM_VIEWREPORT
  90.    "^W",        IDM_FILESAVEWORKSPACE
  91.    "^B",        IDM_OPTIONSBOOKMARK
  92.    "^E",        IDM_EDITTIMEWINDOW
  93.    "^G",        IDM_OPTIONSLEGENDONOFF
  94. #endif
  95.    VK_F1,       IDM_HELPCONTENTS,     VIRTKEY
  96.    "^U",        IDM_TOOLBARREFRESH
  97.    "^M",        IDM_OPTIONSDISPLAYMENU
  98.    "^T",        IDM_OPTIONSDISPLAYTOOL
  99.    "^S",        IDM_OPTIONSDISPLAYSTATUS
  100.    "^P",        IDM_OPTIONSDISPLAYONTOP
  101.    VK_F12,      IDM_FILEOPENFILE,     VIRTKEY,  CONTROL
  102.    VK_F12,      IDM_FILESAVEFILE,     VIRTKEY,  SHIFT
  103.    VK_F12,      IDM_FILESAVEASFILE,   VIRTKEY
  104.    "^H",        IDM_CHARTHIGHLIGHTON
  105.    "^I",        IDM_TOOLBARADD
  106.    "^O",        IDM_TOOLBAROPTIONS
  107.    VK_DELETE,   IDM_TOOLBARDELETE,    VIRTKEY
  108. end
  109.