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.

118 lines
4.9 KiB

  1. #include <windows.h>
  2. #include "resource.h"
  3. #include "fldrclnr.rcv"
  4. #include "winres.h"
  5. /////////////////////////////////////////////////////////////////////////////
  6. // English (U.S.) resources
  7. #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
  8. #ifdef _WIN32
  9. LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
  10. #pragma code_page(1252)
  11. #endif //_WIN32
  12. /////////////////////////////////////////////////////////////////////////////
  13. //
  14. // Dialog
  15. //
  16. IDD_INTRO DIALOG DISCARDABLE 100, 100, 317, 143
  17. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  18. CAPTION "Desktop Cleanup Wizard"
  19. FONT 8, "MS Shell Dlg"
  20. BEGIN
  21. LTEXT "Welcome to the Desktop Cleanup Wizard",
  22. IDC_TEXT_TITLE_WELCOME,115,8,195,24
  23. LTEXT "This wizard helps you clean up your desktop by moving unused shortcuts to a desktop folder called Unused Desktop Shortcuts.",
  24. IDC_STATIC,115,40,190,50
  25. LTEXT "The wizard does not move, change or delete any of your programs. If you later decide that you want a shortcut back on your desktop, you can restore it from the Unused Desktop Shortcuts folder.",
  26. IDC_STATIC,115,76,190,50
  27. LTEXT "To continue, click Next.",
  28. IDC_STATIC,115,170,190,50
  29. END
  30. IDD_CHOOSEFILES DIALOG DISCARDABLE 100, 100, 317, 143
  31. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  32. CAPTION "Desktop Cleanup Wizard"
  33. FONT 8, "MS Shell Dlg"
  34. BEGIN
  35. LTEXT "To leave a shortcut on your desktop, clear its check box.",IDC_STATIC,21,7,317,10
  36. LTEXT "Shortcuts:",IDC_STATIC,21,27,317,10
  37. CONTROL "List3",IDC_LV_PROMPT,"SysListView32",LVS_REPORT |
  38. LVS_SINGLESEL | LVS_NOSORTHEADER | LVS_ALIGNLEFT | WS_BORDER | WS_TABSTOP,21,37,250,90
  39. END
  40. IDD_FINISH DIALOG DISCARDABLE 100, 100, 317, 143
  41. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  42. CAPTION "Desktop Cleanup Wizard"
  43. FONT 8, "MS Shell Dlg"
  44. BEGIN
  45. LTEXT "Completing the Desktop Cleanup Wizard",
  46. IDC_TEXT_TITLE_WELCOME,115,8,195,24
  47. LTEXT "Windows will move the following shortcuts to the Unused Desktop Shortcuts folder on your desktop.",
  48. IDC_TEXT_INFORM,115,40,190,20
  49. LTEXT "Shortcuts:",IDC_TEXT_SHORTCUTS,115,65,212,8
  50. CONTROL "List3",IDC_LV_INFORM,"SysListView32",LVS_LIST |
  51. LVS_ALIGNLEFT | LVS_NOCOLUMNHEADER | LVS_NOSORTHEADER |
  52. WS_BORDER | WS_TABSTOP,115,75,190,70
  53. LTEXT "To change the shortcuts you want to move, click Back.",
  54. IDC_TEXT_CHANGE,115,150,190,20
  55. LTEXT "To close this wizard, click Finish.",IDC_STATIC,115,170,212,8
  56. END
  57. /////////////////////////////////////////////////////////////////////////////
  58. //
  59. // Icon
  60. //
  61. // Icon with lowest ID value placed first to ensure application icon
  62. // remains consistent on all systems.
  63. IDI_WIZ_ICON ICON DISCARDABLE "fldrclnr.ico"
  64. /////////////////////////////////////////////////////////////////////////////
  65. //
  66. // Bitmaps for the wizard
  67. //
  68. IDB_WATERMARK BITMAP DISCARDABLE "desktop_cleanup.bmp"
  69. IDB_LOGO BITMAP DISCARDABLE "desktop_cleanup_hd.bmp"
  70. /////////////////////////////////////////////////////////////////////////////
  71. //
  72. // String Table
  73. //
  74. STRINGTABLE DISCARDABLE
  75. BEGIN
  76. IDS_INFORM "Windows will move the following %d shortcuts to the Unused Desktop Shortcuts folder on your desktop."
  77. IDS_INFORM_SINGLE "Windows will move the following shortcut to the Unused Desktop Shortcuts folder on your desktop."
  78. IDS_INFORM_NONE "Windows will not move any shortcuts to the Unused Desktop Shortcuts folder on your desktop."
  79. IDS_INFORM_NONEFOUND "Windows did not find any desktop shortcuts to clean up."
  80. IDS_ARCHIVEFOLDER "Unused Desktop Shortcuts"
  81. IDS_ARCHIVEFOLDER_FIRSTBOOT "Program Shortcuts"
  82. IDS_CHOOSEFILES "Shortcuts"
  83. IDS_CHOOSEFILES_INFO "The shortcuts selected below will be moved to the Unused Desktop Shortcuts folder."
  84. IDS_HEADER_DATE "Date Last Used"
  85. IDS_HEADER_ITEM "Shortcut to Clean Up"
  86. IDS_NEVER "Never"
  87. IDS_NOTIFICATION_TEXT "The desktop cleanup wizard can help you clean up your desktop. Click this balloon to start the wizard."
  88. IDS_NOTIFICATION_TITLE "There are unused icons on your desktop"
  89. IDS_TITLELOGFONT "Verdana Bold"
  90. IDS_WMP "Windows Media Player.lnk"
  91. IDS_MSN "MSN Explorer.lnk"
  92. IDS_MSN_ALT "Get Online with MSN.lnk"
  93. IDS_DEFAULTUSER "Default User"
  94. END
  95. #endif // English (U.S.) resources
  96. /////////////////////////////////////////////////////////////////////////////