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.

57 lines
2.1 KiB

  1. #include "windows.h"
  2. #include "commctrl.h"
  3. #include "proquota.h"
  4. #include <ntverp.h>
  5. IDI_ICON ICON "profile.ico"
  6. IDI_CAUTION ICON "warn.ico"
  7. IDI_STOP ICON "stop.ico"
  8. STRINGTABLE
  9. BEGIN
  10. IDS_SIZEOK "Available profile space: %d KB"
  11. IDS_SIZEWARN "Caution: Available profile space: %d KB"
  12. IDS_SIZEBAD "Warning! You have exceeded your profile space by %d KB"
  13. IDS_COLUMN1 "File Name"
  14. IDS_COLUMN2 "Size"
  15. IDS_SIZEFMT "%d KB"
  16. IDS_LOGOFFOK "You have profile storage space available."
  17. IDS_CAUTION "You are almost out of profile storage space."
  18. IDS_DEFAULTMSG "You have exceeded your profile storage space. Before you can log off, you need to move some items from your profile to network or local storage."
  19. IDS_EXCEEDMSG "You have exceeded your profile space by %d KB"
  20. IDS_MSGTITLE "Profile storage space"
  21. IDS_QUOTAENUMMSG "Enumerating Profile Directory, Listing files in increasing order of size..."
  22. END
  23. IDD_QUOTA DIALOG 6, 17, 254, 225
  24. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  25. CAPTION "Profile Storage Space"
  26. FONT 8, "MS Shell Dlg"
  27. BEGIN
  28. ICON IDI_STOP, IDC_QUOTA_ICON, 8, 8, 18, 20
  29. LTEXT "", IDC_QUOTA_TEXT, 39, 8, 203, 34
  30. GROUPBOX "Files in your profile:", -1, 8, 44, 236, 125
  31. DEFPUSHBUTTON "OK", IDOK, 194, 201, 50, 14
  32. CONTROL "", IDC_QUOTA_FILELIST, WC_LISTVIEW, LVS_REPORT | WS_TABSTOP, 15, 57,
  33. 220, 90, WS_EX_CLIENTEDGE
  34. AUTOCHECKBOX "Hide items smaller than 2 KB", IDC_QUOTA_HIDESMALL, 15, 153, 132, 10
  35. GROUPBOX "Size Information:", -1, 8, 177, 145, 38
  36. LTEXT "Current profile size:", -1, 15, 189, 75, 8
  37. LTEXT "Maximum profile size:", -1, 14, 200, 75, 8
  38. LTEXT "", IDC_QUOTA_SIZE, 109, 189, 33, 8
  39. LTEXT "",IDC_QUOTA_MAXSIZE, 109, 200, 33, 8
  40. END
  41. #define VER_FILETYPE VFT_APP
  42. #define VER_FILESUBTYPE VFT2_UNKNOWN
  43. #define VER_FILEDESCRIPTION_STR "ProQuota"
  44. #define VER_INTERNALNAME_STR "proquota\0"
  45. #define VER_ORIGINALFILENAME_STR "proquota.exe"
  46. #include "common.ver"