Leaked source code of windows server 2003
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.

69 lines
3.1 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. // Copyright (C) 1993-1996 Microsoft Corporation. All Rights Reserved.
  3. //
  4. // MODULE: spoolui.dlg
  5. //
  6. // PURPOSE: Defines the spooler UI dialog templates
  7. //
  8. #ifndef WIN16
  9. #include "spoolui.h"
  10. #else
  11. //
  12. // SPOOLUI.H defines too many symbols, so 16bit RC's symbol table is overflown.
  13. // Following symbols are what we really need.
  14. //
  15. #define IDC_SP_MINIMIZE 1001
  16. #define IDC_SP_STOP 1002
  17. #define IDC_SP_DETAILS 1003
  18. #define IDC_SP_SEPARATOR 1004
  19. #define IDC_SP_ANIMATE 1006
  20. #define IDC_SP_PROGRESS_BAR 1007
  21. #define IDC_SP_GENERAL_PROG 1009
  22. #define IDC_SP_SPECIFIC_PROG 1010
  23. #define IDC_SP_TABS 1011
  24. #define IDC_SP_SKIP_TASK 1012
  25. #define IDC_SP_TACK 1015
  26. #define IDC_SP_OVERALL_STATUS 1016
  27. #define IDC_SP_EVENTS 1017
  28. #define IDC_SP_ERRORS 1018
  29. #define IDC_SP_TOOLBAR 1019
  30. #define IDC_SP_HANGUP 1020
  31. #define IDC_SP_IDLETEXT 1021
  32. #define IDC_SP_IDLEICON 1022
  33. #define IDC_SP_PROGSTAT 1023
  34. #endif //!WIN16
  35. /////////////////////////////////////////////////////////////////////////////
  36. // Spooler UI details dialog
  37. //
  38. iddSpoolerDlg DIALOG DISCARDABLE 0, 0, 321, 226
  39. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  40. CAPTION "Outlook Express"
  41. FONT 8, DLG_UI_FONT
  42. BEGIN
  43. CTEXT "",IDC_SP_GENERAL_PROG,45,7,212,22,SS_NOPREFIX
  44. CTEXT "",IDC_SP_SPECIFIC_PROG,45,32,212,9,SS_NOPREFIX
  45. CTEXT "",IDC_SP_IDLETEXT,45,7,212,36,SS_NOPREFIX
  46. CONTROL "Progress1",IDC_SP_PROGRESS_BAR,PROGRESS_CLASS,0x1,
  47. 7,46,250,11
  48. DEFPUSHBUTTON "&Hide",IDC_SP_MINIMIZE,264,7,50,14
  49. PUSHBUTTON "&Stop",IDC_SP_STOP,264,25,50,14
  50. PUSHBUTTON "&Details >>",IDC_SP_DETAILS,264,44,50,14
  51. CONTROL "Animate1",IDC_SP_ANIMATE,ANIMATE_CLASS,ACS_CENTER |
  52. ACS_TRANSPARENT,7,7,30,30
  53. ICON idiMailNews,IDC_SP_IDLEICON,12,12,21,20,SS_CENTERIMAGE
  54. CONTROL "Hang up when &finished",IDC_SP_HANGUP,"Button",
  55. BS_AUTOCHECKBOX | WS_DISABLED | WS_TABSTOP,8,61,89,10
  56. CONTROL "",IDC_SP_SEPARATOR,"Static",SS_ETCHEDHORZ,7,77,307,1
  57. LTEXT "%d of %d tasks have completed successfully",
  58. IDC_SP_OVERALL_STATUS,8,211,141,8
  59. CONTROL "List1",IDC_SP_EVENTS,WC_LISTVIEW,LVS_REPORT |
  60. LVS_SINGLESEL | LVS_SHAREIMAGELISTS | LVS_NOSORTHEADER |
  61. WS_BORDER | WS_TABSTOP,14,103,293,96
  62. LISTBOX IDC_SP_ERRORS,14,103,293,95,LBS_OWNERDRAWVARIABLE |
  63. LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_TABSTOP
  64. CONTROL "Tab1",IDC_SP_TABS,WC_TABCONTROL,TCS_FIXEDWIDTH |
  65. WS_TABSTOP,7,85,307,122
  66. RTEXT "",IDC_SP_PROGSTAT,180,62,75,8,SS_NOPREFIX
  67. END