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