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

Windows编程

开发平台:

Visual C++

  1. #ifndef fFalse
  2. #define fFalse FALSE
  3. #define fTrue TRUE
  4. #endif
  5. // Dialog Box Control IDs
  6. #define GTCTRL 100
  7. #define PSB_PrevPage 101
  8. #define PSB_NextPage 102
  9. #define PSB_Close 103
  10. #define PSB_TopLeft 104
  11. // Menu item identifiers
  12. // File Menu
  13. #define IDM_NEW 410
  14. #define IDM_OPEN 411
  15. #define IDM_CLOSE 412
  16. #define IDM_REVERT 413
  17. #define IDM_SAVE 420
  18. #define IDM_SAVEAS 421
  19. #define IDM_PRINT 427
  20. #define IDM_PRINTSETUP 428
  21. #define IDM_PRINTPREVIEW 429
  22. #define IDM_EXIT 430
  23. // Edit Menu
  24. #define IDM_UNDO 500
  25. #define IDM_CUT 510
  26. #define IDM_COPY 511
  27. #define IDM_PASTE 512
  28. #define IDM_PASTESPECIAL 513
  29. #define IDM_DELETE 514
  30. #define IDM_SELECTALL 515
  31. #define IDM_FIND 520
  32. #define IDM_REPLACE 521
  33. #define IDM_OBJECT 530
  34. #define IDM_INSOBJ 531
  35. #define IDM_INSFILE 532
  36. #define IDM_SAVESEL 533
  37. #ifdef DBCS
  38. #define IDM_WORDREG 534
  39. #endif
  40. // Offset into the Edit menu of IDM_OBJECT
  41. #define ipos_Object 12
  42. #define IDM_OBJECTCONVERT 2000
  43. #define IDM_OBJECTMIN 2001
  44. // Format Menu
  45. #define IDM_CHARFORMAT 600
  46. #define IDM_APPLYTOWORD 601
  47. #define IDM_SUPERSCRIPT 605
  48. #define IDM_SUBSCRIPT 606
  49. #define IDM_ALIGNLEFT 610
  50. #define IDM_ALIGNCENTER 611
  51. #define IDM_ALIGNRIGHT 612
  52. #define IDM_INDENTFIRST 620
  53. #define IDM_OUTDENTFIRST 621
  54. #define IDM_MARGINS 630
  55. #define IDM_TABS 631
  56. #define IDM_PROTECTED 635
  57. #define IDM_NOWRAP 640
  58. #define IDM_WRAP 641
  59. #define IDM_WYSIWYG 642
  60. // Options Menu
  61. #define IDM_SELBAR 700
  62. #define IDM_AUTOWORDSEL 701
  63. #define IDM_SHOWMARGINS 702
  64. #ifdef DEBUG
  65. #define IDM_READONLY 760
  66. #define IDM_AUTOHSCROLL 761
  67. #define IDM_AUTOVSCROLL 762
  68. #define IDM_AUTOHIDESEL 763
  69. #endif
  70. #ifdef DBCS
  71. #define IDM_VERTICAL 780
  72. #endif
  73. // accelerators not asocciated with any menus
  74. #define IDM_GOTOCURSOR 800
  75. #define IDM_MOVECURSOR 801
  76. // Debug Menu
  77. #ifdef DEBUG
  78. #define IDM_DBGPED 900
  79. #define IDM_GETTEXT 901
  80. #define IDM_CLSDBG 902
  81. #define IDM_TRACEDLG 903
  82. #define IDM_IGNORELEFTCLICK 904
  83. #define IDM_EATES 905
  84. #define IDM_IGNOREDROPS 906
  85. #define IDM_BOTTOMLESS 907
  86. #define IDM_TEXTONLY 908
  87. #define IDM_REFUSEGRAPH 909
  88. #define IDM_PASTEPLAINTEXT 910
  89. #define IDM_PASTETXTOBJ 911
  90. #define IDM_PASTERTFASTEXT 912
  91. #define IDM_BIGLIMIT 913
  92. #define IDM_FILLERUP 914
  93. #define IDM_PPMETA 915
  94. #define IDM_ENABLEPASTEREADONLY 916
  95. #define IDM_ENABLECUTREADONLY 917
  96. #define IDM_ENABLEDRAGREADONLY 918
  97. #define IDM_SWAPDRAGEFFECT 919
  98. #define IDM_HIDE 921
  99. #ifdef DBCS
  100. #define IDM_LANGINFO 923
  101. #endif
  102. #endif
  103. // Format Bar
  104. // formatbar bitmap
  105. #define BMP_FormatBar 21769
  106. // indices in the the formatbar bitmap
  107. #define tbBold 0
  108. #define tbItalic 1
  109. #define tbUnderline 2
  110. #define tbLeft 3
  111. #define tbCenter 4
  112. #define tbRight 5
  113. #define tbBullet 6
  114. #define tbColor 7
  115. #define tbDecreaseIndent 8
  116. #define tbIncreaseIndent 9
  117. #ifdef DBCS
  118. #define tbVertical 10
  119. #define tbFormatBarMax 11
  120. #else
  121. #define tbFormatBarMax 10
  122. #endif
  123. // formatbar menu IDs
  124. // keep these together in this order
  125. #define TBI_Bold 21770
  126. #define TBI_Italic 21771
  127. #define TBI_Underline 21772
  128. #define TBI_Bullet 21775
  129. #define TBI_IncreaseIndent 21776
  130. #define TBI_DecreaseIndent 21777
  131. // keep these together in this order
  132. #define TBI_Left 21780
  133. #define TBI_Center 21781
  134. #define TBI_Right 21782
  135. #define TBI_AccelBold 21785
  136. #define TBI_AccelItalic 21786
  137. #define TBI_AccelUnderline 21787
  138. #ifdef DBCS
  139. #define TBI_FE_Vertical 21792
  140. #endif