DLGHELP.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:6k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /******************************************************************************
  2. *       This is a part of the Microsoft Source Code Samples. 
  3. *       Copyright (C) 1993-1997 Microsoft Corporation.
  4. *       All rights reserved. 
  5. *       This source code is only intended as a supplement to 
  6. *       Microsoft Development Tools and/or WinHelp documentation.
  7. *       See these sources for detailed information regarding the 
  8. *       Microsoft samples programs.
  9. ******************************************************************************/
  10. /****************************** Module Header *******************************
  11. * Module Name: dlghelp.h
  12. *
  13. * Contains help context id values for the dialog editor's help.
  14. *
  15. ****************************************************************************/
  16. /*
  17.  * Help for menus. ---------------------------------------------------------
  18.  */
  19. /*
  20.  * File menu.
  21.  */
  22. #define HELPID_FILE_NEWRES              100
  23. #define HELPID_FILE_OPEN                101
  24. #define HELPID_FILE_SAVE                102
  25. #define HELPID_FILE_SAVEAS              103
  26. #define HELPID_FILE_SETINCLUDE          104
  27. #define HELPID_FILE_EXIT                105
  28. #define HELPID_FILE_NEWCUST             106
  29. #define HELPID_FILE_OPENCUST            107
  30. #define HELPID_FILE_REMCUST             108
  31. /*
  32.  * Edit menu.
  33.  */
  34. #define HELPID_EDIT_RESTOREDIALOG       200
  35. #define HELPID_EDIT_CUT                 201
  36. #define HELPID_EDIT_COPY                202
  37. #define HELPID_EDIT_PASTE               203
  38. #define HELPID_EDIT_DELETE              204
  39. #define HELPID_EDIT_DUPLICATE           205
  40. #define HELPID_EDIT_SYMBOLS             206
  41. #define HELPID_EDIT_STYLES              207
  42. #define HELPID_EDIT_SIZETOTEXT          208
  43. #define HELPID_EDIT_NEWDIALOG           209
  44. #define HELPID_EDIT_SELECTDIALOG        210
  45. /*
  46.  * Arrange menu.
  47.  */
  48. #define HELPID_ARRANGE_ALIGN            400
  49. #define HELPID_ARRANGE_ALIGNLEFT        401
  50. #define HELPID_ARRANGE_ALIGNVERT        402
  51. #define HELPID_ARRANGE_ALIGNRIGHT       403
  52. #define HELPID_ARRANGE_ALIGNTOP         404
  53. #define HELPID_ARRANGE_ALIGNHORZ        405
  54. #define HELPID_ARRANGE_ALIGNBOTTOM      406
  55. #define HELPID_ARRANGE_SPACE            407
  56. #define HELPID_ARRANGE_SPACEHORZ        408
  57. #define HELPID_ARRANGE_SPACEVERT        409
  58. #define HELPID_ARRANGE_ARRSIZE          410
  59. #define HELPID_ARRANGE_ARRSIZEWIDTH     411
  60. #define HELPID_ARRANGE_ARRSIZEHEIGHT    412
  61. #define HELPID_ARRANGE_ARRPUSH          413
  62. #define HELPID_ARRANGE_ARRPUSHBOTTOM    414
  63. #define HELPID_ARRANGE_ARRPUSHRIGHT     415
  64. #define HELPID_ARRANGE_ORDERGROUP       416
  65. #define HELPID_ARRANGE_ARRSETTINGS      417
  66. /*
  67.  * Options menu.
  68.  */
  69. #define HELPID_OPTIONS_TESTMODE         500
  70. #define HELPID_OPTIONS_HEXMODE          501
  71. #define HELPID_OPTIONS_TRANSLATE        502
  72. #define HELPID_OPTIONS_USENEWKEYWORDS   503
  73. #define HELPID_OPTIONS_SHOWTOOLBOX      504
  74. /*
  75.  * Help menu.
  76.  */
  77. #define HELPID_HELP_CONTENTS            600
  78. #define HELPID_HELP_SEARCH              601
  79. #define HELPID_HELP_ABOUT               602
  80. /*
  81.  * Help for dialogs. -------------------------------------------------------
  82.  */
  83. #define HELPID_ARRSETTINGS              1000    /* Arrange.Settings cmd.    */
  84. #define HELPID_CHECKBOXSTYLES           1001    /* Edit.Styles cmd.         */
  85. #define HELPID_COMBOBOXSTYLES           1002    /* Edit.Styles cmd.         */
  86. #define HELPID_CUSTOMSTYLES             1003    /* Edit.Styles cmd.         */
  87. #define HELPID_DIALOGSTYLES             1004    /* Edit.Styles cmd.         */
  88. #define HELPID_EDITSTYLES               1005    /* Edit.Styles cmd.         */
  89. #define HELPID_FRAMESTYLES              1006    /* Edit.Styles cmd.         */
  90. #define HELPID_GROUPBOXSTYLES           1007    /* Edit.Styles cmd.         */
  91. #define HELPID_ORDERGROUP               1008    /* Arrange.Order/Group cmd. */
  92. #define HELPID_HORZSCROLLSTYLES         1009    /* Edit.Styles cmd.         */
  93. #define HELPID_ICONSTYLES               1010    /* Edit.Styles cmd.         */
  94. #define HELPID_LISTBOXSTYLES            1011    /* Edit.Styles cmd.         */
  95. #define HELPID_PUSHBUTTONSTYLES         1012    /* Edit.Styles cmd.         */
  96. #define HELPID_RADIOBUTTONSTYLES        1013    /* Edit.Styles cmd.         */
  97. #define HELPID_RECTSTYLES               1014    /* Edit.Styles cmd.         */
  98. #define HELPID_SELECTDIALOG             1015    /* Edit.Select Dialog cmd.  */
  99. #define HELPID_SYMBOLS                  1016    /* Edit.Symbols cmd.        */
  100. #define HELPID_TEXTSTYLES               1017    /* Edit.Styles cmd.         */
  101. #define HELPID_VERTSCROLLSTYLES         1018    /* Edit.Styles cmd.         */
  102. #define HELPID_NEWCUST                  1019    /* File.New Custom cmd.     */
  103. #define HELPID_REMCUST                  1020    /* File.Remove Custom cmd.  */
  104. #define HELPID_SELCUST                  1021    /* Select Custom in toolbox.*/
  105. /*
  106.  * Common file open/save dialog help id's.
  107.  */
  108. #define HELPID_COMMONFILEOPENINCLUDE    1100    /* File.Set Include cmd.    */
  109. #define HELPID_COMMONFILEOPENRES        1101    /* File.Open cmd.           */
  110. #define HELPID_COMMONFILESAVEINCLUDE    1102    /* File.Save (Save As) cmd. */
  111. #define HELPID_COMMONFILESAVERES        1103    /* File.Save (Save As) cmd. */
  112. #define HELPID_COMMONFILEOPENDLL        1104    /* File.Open Custom cmd.    */
  113. /*
  114.  * Miscellaneous subjects. -------------------------------------------------
  115.  */
  116. #define HELPID_TOOLBOX                  2000    /* Toolbox has the focus.   */
  117. #define HELPID_PROPERTIESBAR            2001    /* Properties Bar has focus.*/