Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

217 lines
7.8 KiB

  1. #ifndef __UIHELP_H
  2. #define __UIHELP_H
  3. const TCHAR STR_DSKQUOUI_HELPFILE_HTML[] = TEXT("DSKQUOUI.CHM > windefault");
  4. const TCHAR STR_DSKQUOUI_HTMLHELP_TOPIC[] = TEXT("nt_diskquota_overview.htm");
  5. const TCHAR STR_DSKQUOUI_HELPFILE[] = TEXT("DSKQUOUI.HLP");
  6. #define IDH_QUOTA_FIRST (0x00000000)
  7. //
  8. //-----------------------------------------------------------------------------
  9. // Volume property page IDD_PROPPAGE_VOLQUOTA
  10. //-----------------------------------------------------------------------------
  11. //
  12. // The colors of the traffic light indicate the state of the volume's
  13. // quota system.
  14. //
  15. // RED = Quotas are not enabled on the volume.
  16. // YELLOW = Quota information is being rebuilt on the volume. Quotas
  17. // are not active.
  18. // GREEN = Quotas are enabled on the volume.
  19. //
  20. #define IDH_TRAFFIC_LIGHT (IDH_QUOTA_FIRST + 0)
  21. //
  22. // Describes the status of the volume's quota system.
  23. //
  24. #define IDH_TXT_QUOTA_STATUS (IDH_QUOTA_FIRST + 1)
  25. //
  26. // Check this to enable quotas on the volume. Uncheck it to disable quotas.
  27. //
  28. #define IDH_CBX_ENABLE_QUOTA (IDH_QUOTA_FIRST + 2)
  29. //
  30. // Check this to deny users disk space when they exceed their quota
  31. // limit on the volume.
  32. //
  33. #define IDH_CBX_DENY_LIMIT (IDH_QUOTA_FIRST + 4)
  34. //
  35. // Check this to automatically assign unlimited quota to new volume users.
  36. //
  37. #define IDH_RBN_DEF_NO_LIMIT (IDH_QUOTA_FIRST + 5)
  38. //
  39. // Check this to automatically assign a quota limit to new volume users.
  40. //
  41. #define IDH_RBN_DEF_LIMIT (IDH_QUOTA_FIRST + 6)
  42. //
  43. // Enter a quota limit to be automatically assigned to new volume users.
  44. // For example: to assign 20 megabytes, enter 20 and select "MB" in the
  45. // drop-down list.
  46. //
  47. #define IDH_EDIT_DEF_LIMIT (IDH_QUOTA_FIRST + 7)
  48. //
  49. // Enter a quota warning threshold to be automatically assigned to new volume
  50. // users. For example: to assign 18 megabytes, enter 18 and select "MB" in the
  51. // drop-down list.
  52. //
  53. #define IDH_EDIT_DEF_THRESHOLD (IDH_QUOTA_FIRST + 8)
  54. //
  55. // Select a unit of storage to apply to the quota limit value.
  56. // For example: to assign 20 megabytes, enter 20 in the edit box and select
  57. // "MB" in the drop-down list.
  58. //
  59. #define IDH_CMB_DEF_LIMIT (IDH_QUOTA_FIRST + 9)
  60. //
  61. // Select a unit of storage to apply to the quota warning threshold value.
  62. // For example: to assign 18 megabytes, enter 18 in the edit box and select
  63. // "MB" in the drop-down list.
  64. //
  65. #define IDH_CMB_DEF_THRESHOLD (IDH_QUOTA_FIRST + 10)
  66. //
  67. // Displays per-user quota information for the volume.
  68. //
  69. #define IDH_BTN_DETAILS (IDH_QUOTA_FIRST + 11)
  70. //
  71. // Opens the Window NT Event Viewer.
  72. //
  73. #define IDH_BTN_EVENTLOG (IDH_QUOTA_FIRST + 12)
  74. //
  75. // These items control how Windows NT responds when users exceed their
  76. // warning threshold or quota limit values.
  77. //
  78. #define IDH_GRP_ACTIONS (IDH_QUOTA_FIRST + 13)
  79. //
  80. // These items define default quota values automatically applied to new users
  81. // of the volume.
  82. //
  83. #define IDH_GRP_DEFAULTS (IDH_QUOTA_FIRST + 14)
  84. //-----------------------------------------------------------------------------
  85. // User property page IDD_PROPPAGE_USERQUOTA
  86. //-----------------------------------------------------------------------------
  87. //
  88. // Show the account name for the volume user.
  89. //
  90. #define IDH_TXT_USERNAME (IDH_QUOTA_FIRST + 15)
  91. //
  92. // The number of bytes occupied by the user's data on the volume.
  93. //
  94. #define IDH_TXT_SPACEUSED (IDH_QUOTA_FIRST + 16)
  95. //
  96. // The number of bytes available to the user on the volume.
  97. //
  98. #define IDH_TXT_SPACEREMAINING (IDH_QUOTA_FIRST + 17)
  99. //
  100. // Indicates if the user's disk usage is under the warning threshold, over
  101. // the warning threshold or over the quota limit.
  102. //
  103. #define IDH_ICON_USERSTATUS (IDH_QUOTA_FIRST + 18)
  104. //
  105. // These items define quota warning threshold and limit values for the user.
  106. //
  107. #define IDH_GRP_SETTINGS (IDH_QUOTA_FIRST + 19)
  108. //
  109. // Check this to assign unlimited quota to the user.
  110. //
  111. #define IDH_RBN_USER_NOLIMIT (IDH_QUOTA_FIRST + 20)
  112. //
  113. // Check this to assign a quota warning threshold and limit value to the user.
  114. //
  115. #define IDH_RBN_USER_LIMIT (IDH_QUOTA_FIRST + 21)
  116. //
  117. // Enter a quota warning threshold to be assigned to the user. For example:
  118. // to assign 18 megabytes, enter 18 and select "MB" in the drop-down list.
  119. //
  120. // FEATURE: This could be a duplicate of IDH_EDIT_DEF_THRESHOLD
  121. //
  122. #define IDH_EDIT_USER_THRESHOLD (IDH_QUOTA_FIRST + 22)
  123. //
  124. // Enter a quota limit value to be assigned to the user. For example:
  125. // to assign 20 megabytes, enter 20 and select "MB" in the drop-down list.
  126. //
  127. // FEATURE: This could be a duplicate of IDH_EDIT_DEF_LIMIT
  128. //
  129. #define IDH_EDIT_USER_LIMIT (IDH_QUOTA_FIRST + 23)
  130. //
  131. // Select a unit of storage to apply to the quota limit value.
  132. // For example: to assign 20 megabytes, enter 20 in the edit box and select
  133. // "MB" in the drop-down list.
  134. //
  135. // FEATURE: This could be a duplicate of IDH_CMB_DEF_THRESHOLD
  136. //
  137. #define IDH_CMB_USER_LIMIT (IDH_QUOTA_FIRST + 24)
  138. //
  139. // Select a unit of storage to apply to the quota warning threshold value.
  140. // For example: to assign 18 megabytes, enter 18 in the edit box and select
  141. // "MB" in the drop-down list.
  142. //
  143. // FEATURE: This could be a duplicate of IDH_CMB_DEF_THRESHOLD
  144. //
  145. #define IDH_CMB_USER_THRESHOLD (IDH_QUOTA_FIRST + 25)
  146. //
  147. // Show the domain/folder name for the volume user.
  148. //
  149. #define IDH_EDIT_DOMAINNAME (IDH_QUOTA_FIRST + 26)
  150. //-----------------------------------------------------------------------------
  151. // File Owner dialog IDD_OWNERSANDFILES
  152. //-----------------------------------------------------------------------------
  153. //
  154. // Select the owner of files to display in the list.
  155. //
  156. #define IDH_CMB_OWNERDLG_OWNERS (IDH_QUOTA_FIRST + 27)
  157. //
  158. // List of files owned by selected user.
  159. //
  160. #define IDH_LV_OWNERDLG (IDH_QUOTA_FIRST + 28)
  161. //
  162. // Permanently deletes from disk those files selected in the list.
  163. //
  164. #define IDH_BTN_OWNERDLG_DELETE (IDH_QUOTA_FIRST + 29)
  165. //
  166. // Moves files selected in the list to another location.
  167. //
  168. #define IDH_BTN_OWNERDLG_MOVETO (IDH_QUOTA_FIRST + 30)
  169. //
  170. // Transfers ownership of selected files to the logged-on user.
  171. //
  172. #define IDH_BTN_OWNERDLG_TAKE (IDH_QUOTA_FIRST + 31)
  173. //
  174. // Displays a dialog for choosing a destination folder.
  175. //
  176. #define IDH_BTN_OWNERDLG_BROWSE (IDH_QUOTA_FIRST + 32)
  177. //
  178. // Enter path to a destination folder.
  179. //
  180. #define IDH_EDIT_OWNERDLG_MOVETO (IDH_QUOTA_FIRST + 33)
  181. //-----------------------------------------------------------------------------
  182. // Volume quota policy prop page IDD_PROPPAGE_POLICY
  183. // Most of the controls in this dialog are duplicates of IDD_PROPPAGE_VOLQUOTA.
  184. // Help for the additional controls is listed here.
  185. //-----------------------------------------------------------------------------
  186. //
  187. // Check this to apply quota policy only to drives with non-removable media.
  188. //
  189. #define IDH_RBN_POLICY_FIXED (IDH_QUOTA_FIRST + 34)
  190. //
  191. // Check this to apply quota policy to all NTFS storage volumes, including those
  192. // with removable media.
  193. //
  194. #define IDH_RBN_POLICY_REMOVABLE (IDH_QUOTA_FIRST + 35)
  195. //
  196. //-----------------------------------------------------------------------------
  197. // These IDs are for controls on the volume prop page. They were
  198. // added late in the project and I didn't reserve any ranges for
  199. // each page like I should have [brianau - 11/27/98]
  200. //-----------------------------------------------------------------------------
  201. //
  202. // Check this to generate an event log entry when a user's disk space usage
  203. // exceeds their assigned disk quota warning level.
  204. //
  205. #define IDH_CBX_LOG_OVERWARNING (IDH_QUOTA_FIRST + 36)
  206. //
  207. // Check this to generate an event log entry when a user's disk space usage
  208. // exceeds their assigned disk quota limit.
  209. //
  210. #define IDH_CBX_LOG_OVERLIMIT (IDH_QUOTA_FIRST + 37)
  211. #endif