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.

1314 lines
45 KiB

  1. #include "tweakui.h"
  2. #include "tweakui.rcv"
  3. IDI_DEFAULT ICON TWEAKUI.ICO
  4. IDI_GEAR1 ICON TWEAK01.ICO
  5. IDI_GEAR2 ICON TWEAK02.ICO
  6. IDI_ALTLINK ICON ALTLINK.ICO
  7. IDI_BLANK ICON BLANK.ICO
  8. IDB_CHECK BITMAP DISCARDABLE PURE "chk.bmp"
  9. IDX_SETUP EXE SETUP.EXE
  10. IDX_FONTFOLDER EXE FONTFLDR.INI
  11. IDX_HISTORY EXE HISTORY.INI
  12. IDX_TEMPINET EXE TEMPINET.INI
  13. /*****************************************************************************
  14. *
  15. * Dialogs
  16. *
  17. * All property sheets must be PROP_SM_CXDLG by PROP_SM_CYDLG (212 x 188).
  18. *
  19. * Top left right and bottom margins are 7 units. With the uniform exception
  20. * that the top of a group box begins at 4 units instead of 7, because the
  21. * extra height of the text causes the top line of the group box to appear
  22. * about 3 units lower than you would otherwise expect.
  23. *
  24. * So a group box that spans the entire width is 212 - 7 - 7 = 198 units
  25. * across. And the first thing inside a group box lives 7 units beyond
  26. * the start of the group box.
  27. *
  28. * Buttons are 50 x 14 and gather aligned at the right margin. They have
  29. * 4 units of vertical spacing. (dyButton = 18)
  30. *
  31. * Radio buttons are 10 units tall, with 2 units spacing between them.
  32. * (dyRadio = 12)
  33. *
  34. * Check buttons are 10 units tall, with 2 units spacing between them.
  35. * (dyCheck = 12)
  36. *
  37. * Pushbuttons are 14 units tall, with 2 units of spacing between them.
  38. * (dyPush = 16)
  39. *
  40. * Group boxes are separated by 7 units horizontally, 4 units vertically.
  41. * (Again, you need only 4 units of vertical separation because the height
  42. * of the group box label gives you the extra 3 bonus units.)
  43. *
  44. *****************************************************************************/
  45. #ifdef SMALL
  46. #define cxDlg PROP_SM_CXDLG
  47. #define cyDlg PROP_SM_CYDLG
  48. #else
  49. #define cxDlg PROP_MED_CXDLG
  50. #define cyDlg PROP_MED_CYDLG
  51. #endif
  52. #define cxGrp (cxDlg-14)
  53. #define dyButton 18
  54. #define dyButton2 36
  55. #define dyButton3 54
  56. #define dyButton4 72
  57. #define dyRadio 12
  58. #define dyRadio2 24
  59. #define dyRadio3 36
  60. #define dyCheck 12
  61. #define dyCheck2 24
  62. #define dyCheck3 36
  63. #define dyCheck4 48
  64. #define dyCheck5 60
  65. #define dyCheck6 72
  66. #define dyPush 16
  67. #define dyPush2 32
  68. #define dyPush3 48
  69. #define dyPush4 64
  70. #define dyPush5 80
  71. /*****************************************************************************
  72. *
  73. * Common metrics
  74. *
  75. *****************************************************************************/
  76. #define xRest (cxDlg-95) /* Location of "Restore" button */
  77. #define yRest (cyDlg-21)
  78. #define xLvTxt 7 /* Listview descriptive text */
  79. #define yLvTxt 7 /* Listview descriptive text */
  80. #define cxLvTxt cxGrp /* Listview descriptive text */
  81. #define cyLvTxt 43 /* Listview descriptive text */
  82. #define xLvTtl 7 /* Listview title */
  83. #define yLvTtl 48 /* Listview title */
  84. #define xLvCtl 7 /* Listview control */
  85. #define yLvCtl 59 /* Listview control */
  86. #define cyLvCtl (cyDlg - 105) /* Listview control */
  87. /*****************************************************************************
  88. *
  89. * IDD_GENERAL
  90. *
  91. *****************************************************************************/
  92. IDD_GENERAL DIALOG DISCARDABLE 0, 0, cxDlg, cyDlg
  93. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  94. CAPTION "General"
  95. FONT 8, "MS Shell Dlg"
  96. BEGIN
  97. #define xEfx 7
  98. #define yEfx 4
  99. #define cyEfx 102
  100. GROUPBOX "&Effects",IDC_EFFECTGROUP,xEfx,yEfx,cxGrp,cyEfx
  101. CONTROL "",IDC_LISTVIEW,WC_LISTVIEW,LVS_REPORT | LVS_SINGLESEL |
  102. LVS_NOCOLUMNHEADER |
  103. LVS_SHAREIMAGELISTS | LVS_SORTASCENDING |
  104. WS_TABSTOP | WS_BORDER,
  105. 14,yEfx+12,cxGrp-14, cyEfx-12-4
  106. #define xIE3 7
  107. #define yIE3 yEfx+cyEfx+4
  108. #define cyIE3 49
  109. GROUPBOX "&Internet Explorer",IDC_IE3GROUP,xIE3,yIE3,cxGrp,cyIE3
  110. LTEXT "Select the service used when you type ""? keyword keyword"" in the Internet Explorer Address bar.",
  111. IDC_IE3TXT,xIE3+7,yIE3+10,202,21
  112. LTEXT "Sea&rch engine:",IDC_IE3ENGINETXT,14,yIE3+33,51,8
  113. COMBOBOX IDC_IE3ENGINE,76,yIE3+31,95,150,CBS_DROPDOWNLIST |
  114. CBS_SORT | WS_VSCROLL | WS_TABSTOP
  115. #define xRude 7
  116. #define yRude yIE3+cyIE3+4
  117. #define cyRude 42
  118. GROUPBOX "",IDC_RUDEGROUP,xRude,yRude,cxGrp,cyRude
  119. CONTROL "Prevent applications from &stealing focus",
  120. IDC_RUDE,"Button",
  121. BS_AUTOCHECKBOX | WS_TABSTOP,13,yRude,138,10
  122. CONTROL "Flash taskbar button until I &click on it",
  123. IDC_RUDEFLASHINFINITE,"Button",BS_AUTORADIOBUTTON | WS_GROUP,
  124. 16,yRude+13,134,10
  125. CONTROL "&Flash taskbar button",
  126. IDC_RUDEFLASHFINITE,"Button",BS_AUTORADIOBUTTON,
  127. 16,yRude+13+14,79,10
  128. EDITTEXT IDC_RUDEFLASHCOUNT,93,yRude+13+12,24,12,ES_RIGHT
  129. CONTROL "",IDC_RUDEFLASHUD,UPDOWN_CLASS,WS_BORDER | WS_GROUP |
  130. UDS_AUTOBUDDY | UDS_ALIGNRIGHT | UDS_ARROWKEYS |
  131. UDS_SETBUDDYINT,0,0,0,0
  132. LTEXT "times",IDC_RUDEFLASHTXT,120,yRude+13+14,18,8
  133. END
  134. #undef xEfx
  135. #undef yEfx
  136. #undef cyEfx
  137. #undef xIE3
  138. #undef yIE3
  139. #undef cyIE3
  140. #undef xRude
  141. #undef yRude
  142. #undef cyRude
  143. /*****************************************************************************
  144. *
  145. * IDD_MOUSE
  146. *
  147. *****************************************************************************/
  148. IDD_MOUSE DIALOG DISCARDABLE 0, 0, cxDlg, cyDlg
  149. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  150. CAPTION "Mouse"
  151. FONT 8, "MS Shell Dlg"
  152. BEGIN
  153. #define xMnu 7
  154. #define yMnu 4
  155. #define cyMnu 45
  156. GROUPBOX "&Menu speed",IDC_SPEEDTEXT,xMnu,yMnu,cxGrp,cyMnu
  157. LTEXT "Fast",IDC_SPEEDFAST,14,15,30,7
  158. RTEXT "Slow",IDC_SPEEDSLOW,cxGrp-105,15,37,7
  159. CONTROL "",IDC_SPEEDTRACK,TRACKBAR_CLASS,
  160. WS_TABSTOP | 1,14,25,cxGrp-82,20
  161. LTEXT "Right-click the test icon to test the setting.",
  162. IDC_SPEEDHELP,cxGrp-59,15,58,31
  163. #define xMse 7
  164. #define yMse xMnu+cyMnu+3
  165. #define cyMse 46
  166. GROUPBOX "Mouse sensiti&vity",IDC_SENSGROUP,xMse,yMse,168,cyMse
  167. LTEXT "&Double-click",IDC_DBLCLKTEXT,14,yMse+15,43,8
  168. EDITTEXT IDC_DBLCLK,56,yMse+13,24,12,ES_RIGHT | ES_NUMBER
  169. CONTROL "",IDC_DBLCLKUD,UPDOWN_CLASS,WS_BORDER |
  170. WS_GROUP | UDS_AUTOBUDDY | UDS_ALIGNRIGHT | UDS_ARROWKEYS |
  171. UDS_SETBUDDYINT,75,yMse+13,11,12
  172. LTEXT "Dra&g",IDC_DRAGTEXT,14,yMse+15+14,44,8
  173. EDITTEXT IDC_DRAG,56,yMse+13+14,24,12,ES_RIGHT | ES_NUMBER
  174. CONTROL "",IDC_DRAGUD,UPDOWN_CLASS,WS_BORDER |
  175. WS_GROUP | UDS_AUTOBUDDY | UDS_ALIGNRIGHT | UDS_ARROWKEYS |
  176. UDS_SETBUDDYINT,75,yMse+13+14,11,12
  177. LTEXT "Drag or double-click the test icon with the left mouse button to test settings.",
  178. IDC_SENSHELP,83,yMse+12,90,30
  179. GROUPBOX "Test Icon",IDC_TESTGROUP,179,yMse,cxGrp-179+7,cyMse
  180. ICON IDI_GEAR1,IDC_TEST,190,yMse+17,18,20
  181. #define yWhl yMse+cyMse+4
  182. #define cyWhl 42
  183. GROUPBOX "",IDC_WHEELGROUP,7,yWhl,213,cyWhl
  184. CONTROL "&Use mouse wheel for scrolling",IDC_WHEELENABLE,"Button",
  185. BS_AUTOCHECKBOX | WS_TABSTOP,13,yWhl,108,10
  186. CONTROL "Scroll a &page at a time",IDC_WHEELPAGE,"Button",
  187. BS_AUTORADIOBUTTON,16,yWhl+13,85,10
  188. CONTROL "&Scroll by",IDC_WHEELLINE,"Button",BS_AUTORADIOBUTTON,16,
  189. yWhl+13+14,39,10
  190. EDITTEXT IDC_WHEELLINENO,59,yWhl+13+12,24,12,ES_RIGHT
  191. CONTROL "",IDC_WHEELLINEUD,UPDOWN_CLASS,WS_BORDER | WS_GROUP |
  192. UDS_AUTOBUDDY | UDS_ALIGNRIGHT | UDS_ARROWKEYS |
  193. UDS_SETBUDDYINT,78,yWhl+13+12,11,12
  194. LTEXT "lines at a time",IDC_WHEELLINESTXT,86,yWhl+13+14,47,8
  195. #define xEfx 7
  196. #define yEfx yWhl+cyWhl+4
  197. #define cyEfx 40
  198. GROUPBOX "",IDC_XMOUSEGROUP,7,yEfx,213,cyEfx
  199. CONTROL "A&ctivation follows mouse (X-Mouse)",IDC_XMOUSE,"Button",
  200. BS_AUTOCHECKBOX | WS_TABSTOP,13,yEfx,130,10
  201. CONTROL "A&utoraise when activating",IDC_XMOUSERAISE,"Button",
  202. BS_AUTOCHECKBOX | WS_TABSTOP,13,yEfx+12,130,10
  203. LTEXT "Activation dela&y (ms):",IDC_XMOUSEDELAYTXT,13,yEfx+12+14,71,10
  204. EDITTEXT IDC_XMOUSEDELAY,82,yEfx+12+12,24,12,ES_RIGHT | ES_NUMBER
  205. #ifdef IDC_BUGREPORT
  206. PUSHBUTTON "&Bug Report",IDC_BUGREPORT,xRest-54-54,yRest,50,14
  207. #endif
  208. PUSHBUTTON "&Tips",IDC_TIPS,xRest-54,yRest,50,14
  209. PUSHBUTTON "&Restore Factory Settings",IDC_RESET,xRest,yRest,86,14
  210. END
  211. #undef xMnu
  212. #undef yMnu
  213. #undef cyMnu
  214. #undef xMse
  215. #undef yMse
  216. #undef cyMse
  217. #undef xWhl
  218. #undef yWhl
  219. #undef cyWhl
  220. #undef xEfx
  221. #undef yEfx
  222. #undef cyEfx
  223. /*****************************************************************************
  224. *
  225. * IDD_EXPLORER
  226. *
  227. *****************************************************************************/
  228. IDD_EXPLORER DIALOG DISCARDABLE 0, 0, cxDlg, cyDlg
  229. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  230. CAPTION "Explorer"
  231. FONT 8, "MS Shell Dlg"
  232. BEGIN
  233. #define xOvl 7
  234. #define yOvl 4
  235. #define cyOvl 63
  236. GROUPBOX "Shortcut &overlay",IDC_LINKGROUP,xOvl,yOvl,cxGrp,cyOvl
  237. CONTROL "Arro&w",IDC_LINKARROW,"Button",BS_AUTORADIOBUTTON,
  238. 14,yOvl+12,38,10
  239. CONTROL "&Light arrow",IDC_LIGHTARROW,"Button",BS_AUTORADIOBUTTON,
  240. 14,yOvl+12+dyRadio,48,10
  241. CONTROL "&None",IDC_NOARROW,"Button",BS_AUTORADIOBUTTON,
  242. 14,yOvl+12+dyRadio2,30,10
  243. CONTROL "&Custom",IDC_CUSTOMARROW,"Button",BS_AUTORADIOBUTTON,
  244. 14,yOvl+12+dyRadio3,36,10
  245. PUSHBUTTON "Chan&ge",IDC_CUSTOMCHANGE,
  246. 54,yOvl+10+dyRadio3,36,14
  247. LTEXT "Before",IDC_LINKBEFORETEXT,cxGrp-80,yOvl+7,23,8
  248. ICON IDI_DEFAULT,IDC_LINKBEFORE,cxGrp-80,yOvl+7+10,18,20
  249. LTEXT "After",IDC_LINKAFTERTEXT,cxGrp-39,yOvl+7,17,8
  250. ICON 0,IDC_LINKAFTER,cxGrp-39,yOvl+7+10,18,20
  251. LTEXT "Note: This will affect all users.",IDC_LINKHELP,cxGrp-102,50,100,8
  252. #define xLst 7
  253. #define yLst yOvl+cyOvl+4
  254. #define cyLst 60
  255. GROUPBOX "&Settings",IDC_SETGROUP,xLst,yLst,cxGrp,cyLst
  256. CONTROL "",IDC_LISTVIEW,WC_LISTVIEW,LVS_REPORT | LVS_SINGLESEL |
  257. LVS_NOCOLUMNHEADER |
  258. LVS_SHAREIMAGELISTS | LVS_SORTASCENDING |
  259. WS_TABSTOP | WS_BORDER,
  260. 14,yLst+12,cxGrp-14, cyLst-12-4
  261. #define xSet 7
  262. #define ySet yLst+cyLst+4
  263. #define cySet 40
  264. GROUPBOX "Colors",IDC_CLRGROUP,xSet,ySet,cxGrp,cySet
  265. LTEXT "Compressed &files:",IDC_COMPRESSTXT,
  266. 14,ySet+12,58,10
  267. PUSHBUTTON "",IDC_COMPRESSBTN,73,ySet+12,30,10,BS_BITMAP
  268. LTEXT "&Hot-tracking:",IDC_HOTTRACKTXT,
  269. 14,ySet+24,58,10
  270. PUSHBUTTON "",IDC_HOTTRACKBTN,73,ySet+24,30,10,BS_BITMAP
  271. #if 0
  272. PUSHBUTTON "&Restore Factory Settings",IDC_RESET,xRest,yRest,86,14
  273. #endif
  274. END
  275. #undef xOvl
  276. #undef yOvl
  277. #undef cyOvl
  278. #undef xStp
  279. #undef yStp
  280. #undef cyStp
  281. #undef xSet
  282. #undef ySet
  283. #undef cySet
  284. /*****************************************************************************
  285. *
  286. * IDD_DESKTOP
  287. *
  288. *****************************************************************************/
  289. IDD_DESKTOP DIALOG DISCARDABLE 0, 0, cxDlg, cyDlg
  290. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  291. CAPTION "Desktop"
  292. FONT 8, "MS Shell Dlg"
  293. BEGIN
  294. LTEXT "Not all icons can successfully \
  295. be placed on the desktop or created as a file. \
  296. Tweak UI cannot tell for sure, \
  297. so you'll just have to try it and see. \
  298. Right-click an icon for a menu of things you can do.",
  299. IDC_ICONLVTEXT,xLvTxt,yLvTxt,cxLvTxt,cyLvTxt
  300. LTEXT "&Special desktop icons:",IDC_ICONLVTEXT2,xLvTtl,yLvTtl,75,8
  301. CONTROL "",IDC_ICONLV,WC_LISTVIEW,LVS_REPORT | LVS_SINGLESEL |
  302. LVS_NOCOLUMNHEADER | LVS_SHOWSELALWAYS |
  303. LVS_SHAREIMAGELISTS | LVS_EDITLABELS |
  304. LVS_SORTASCENDING | WS_TABSTOP | WS_BORDER,
  305. xLvCtl,yLvCtl,cxGrp,cyLvCtl
  306. LTEXT "When an icon is created as a file, you can put it in any folder.",
  307. IDC_CREATENOWTEXT,81,cyDlg-40,117,26
  308. PUSHBUTTON "&Create As File...",IDC_CREATENOW,7,cyDlg-37,58,14
  309. LTEXT "&First icon on desktop:",IDC_ENUMFIRSTTEXT,
  310. xLvTtl,cyDlg-19,75,8
  311. COMBOBOX IDC_ENUMFIRST,81,cyDlg-20,100,40,
  312. CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
  313. #if 0
  314. PUSHBUTTON "&Restore Factory Settings",IDC_RESET,cyDlg-69,167,86,14
  315. #endif
  316. END
  317. /*****************************************************************************
  318. *
  319. * IDD_MYCOMP
  320. *
  321. *****************************************************************************/
  322. IDD_MYCOMP DIALOG DISCARDABLE 0, 0, cxDlg, cyDlg
  323. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  324. CAPTION "My Computer"
  325. FONT 8, "MS Shell Dlg"
  326. BEGIN
  327. #define xMCTxt 7 /* Listview descriptive text */
  328. #define yMCTxt 7 /* Listview descriptive text */
  329. #define cxMCTxt cxGrp /* Listview descriptive text */
  330. #define cyMCTxt 20 /* Listview descriptive text */
  331. #define xMCTtl 7 /* Listview title */
  332. #define yMCTtl 25 /* Listview title */
  333. #define xMCCtl 7 /* Listview control */
  334. #define yMCCtl 36 /* Listview control */
  335. #define cyMCCtl 60 /* Listview control */
  336. LTEXT "Remove the check-mark from a drive to prevent the drive from being displayed in My Computer",
  337. IDC_ICONLVTEXT,xMCTxt,yMCTxt,cxMCTxt,cyMCTxt
  338. LTEXT "&Drives:",IDC_ICONLVTEXT2,xMCTtl,yMCTtl,75,8
  339. CONTROL "",IDC_ICONLV,WC_LISTVIEW,LVS_REPORT | LVS_SINGLESEL |
  340. LVS_NOCOLUMNHEADER |
  341. LVS_SHAREIMAGELISTS | LVS_EDITLABELS |
  342. LVS_SORTASCENDING | WS_TABSTOP | WS_BORDER,
  343. xMCCtl,yMCCtl,cxGrp,cyMCCtl
  344. #define xFld 7
  345. #define yFld yMCCtl+cyMCCtl+4
  346. #define cyFld 50
  347. GROUPBOX "&Special Folders",IDC_FLDGROUP,xFld,yFld,cxGrp,cyFld
  348. LTEXT "&Folder:",IDC_FLDNAMETXT,14,yFld+15,24,8
  349. COMBOBOX IDC_FLDNAMELIST,49,yFld+13,95,150,CBS_DROPDOWNLIST |
  350. CBS_SORT | WS_VSCROLL | WS_TABSTOP
  351. PUSHBUTTON "&Change Location",IDC_FLDCHG,152,yFld+11,60,14
  352. LTEXT "Location:",IDC_FLDLOCTXT,14,yFld+15+16,32,8
  353. EDITTEXT IDC_FLDLOC,49,yFld+13+16,155,13,ES_AUTOHSCROLL | ES_READONLY
  354. #undef xFld
  355. #undef yFld
  356. #undef cyFld
  357. #undef xMCTxt
  358. #undef yMCTxt
  359. #undef cxMCTxt
  360. #undef cyMCTxt
  361. #undef xMCTtl
  362. #undef yMCTtl
  363. #undef xMCCtl
  364. #undef yMCCtl
  365. #undef cyMCCtl
  366. #if 0
  367. PUSHBUTTON "&Restore Factory Settings",IDC_RESET,cyDlg-69,167,86,14
  368. #endif
  369. END
  370. /*****************************************************************************
  371. *
  372. * IDD_TOOLS
  373. *
  374. *****************************************************************************/
  375. IDD_TOOLS DIALOG DISCARDABLE 0, 0, cxDlg, cyDlg
  376. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  377. CAPTION "New"
  378. FONT 8, "MS Shell Dlg"
  379. BEGIN
  380. LTEXT "&Windows can create new documents of the following types. Drag a template into the area below to define a new document template.",
  381. IDC_TEMPLATETEXT,xLvTxt,yLvTxt,cxLvTxt,cyLvTxt
  382. CONTROL "",IDC_TEMPLATE,WC_LISTVIEW,LVS_REPORT | LVS_SINGLESEL |
  383. LVS_NOCOLUMNHEADER | LVS_SHOWSELALWAYS |
  384. LVS_SHAREIMAGELISTS |
  385. LVS_SORTASCENDING | WS_TABSTOP | WS_BORDER,
  386. xLvCtl,yLvCtl,cxGrp,cyLvCtl
  387. PUSHBUTTON "&Remove",IDC_LVDELETE,cxGrp-43,cyDlg-35,50,14
  388. END
  389. /*****************************************************************************
  390. *
  391. * IDD_ADDREMOVE
  392. *
  393. *****************************************************************************/
  394. IDD_ADDREMOVE DIALOG DISCARDABLE 0, 0, cxDlg, cyDlg
  395. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  396. CAPTION "Add/Remove"
  397. FONT 8, "MS Shell Dlg"
  398. BEGIN
  399. LTEXT "&The following software can be automatically \
  400. removed by Windows. \
  401. Note that removing an entry does not actually uninstall the program; \
  402. it merely removes the entry from the list of programs presented \
  403. by the Add/Remove Programs Control Panel.",
  404. IDC_UNINSTALLTEXT,xLvTxt,yLvTxt,cxLvTxt,cyLvTxt
  405. CONTROL "",IDC_UNINSTALL,WC_LISTVIEW,LVS_REPORT | LVS_SINGLESEL |
  406. LVS_NOCOLUMNHEADER | LVS_SHOWSELALWAYS |
  407. LVS_SHAREIMAGELISTS | LVS_EDITLABELS |
  408. LVS_SORTASCENDING | WS_TABSTOP | WS_BORDER,
  409. xLvCtl,yLvCtl,cxGrp,cyLvCtl
  410. PUSHBUTTON "&New...",IDC_UNINSTALLNEW,cxGrp-43-54-54,cyDlg-35,50,14
  411. PUSHBUTTON "&Remove",IDC_LVDELETE,cxGrp-43-54,cyDlg-35,50,14
  412. PUSHBUTTON "&Edit",IDC_UNINSTALLEDIT,cxGrp-43,cyDlg-35,50,14
  413. END
  414. /*****************************************************************************
  415. *
  416. * IDD_BOOT
  417. *
  418. *****************************************************************************/
  419. IDD_BOOT DIALOG DISCARDABLE 0, 0, cxDlg, cyDlg
  420. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  421. CAPTION "Boot"
  422. FONT 8, "MS Shell Dlg"
  423. BEGIN
  424. GROUPBOX "Ge&neral",IDC_BOOTGROUP1,7,4,cxGrp,97
  425. CONTROL "Function &keys available",IDC_BOOTKEYS,"Button",
  426. BS_AUTOCHECKBOX | WS_TABSTOP,14,22,88,10
  427. LTEXT "&for",IDC_BOOTDELAYTEXT,102,23,10,8
  428. EDITTEXT IDC_BOOTDELAY,114,20,24,12,ES_RIGHT | ES_NUMBER
  429. CONTROL "",IDC_BOOTDELAYUD,UPDOWN_CLASS, WS_BORDER |
  430. WS_GROUP | UDS_AUTOBUDDY | UDS_ALIGNRIGHT | UDS_ARROWKEYS |
  431. UDS_SETBUDDYINT,138,20,11,12
  432. LTEXT "seconds.",IDC_BOOTDELAYTEXT2,141,23,31,8
  433. CONTROL "Start &GUI automatically",IDC_BOOTGUI,"Button",
  434. BS_AUTOCHECKBOX | WS_TABSTOP,14,37,86,10
  435. CONTROL "&Display splash screen while booting",IDC_LOGO,"Button",
  436. BS_AUTOCHECKBOX | WS_TABSTOP,14,52,127,10
  437. CONTROL "Allow F4 to boot &previous operating system",IDC_BOOTMULTI,
  438. "Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,67,150,10
  439. LTEXT "A&utorun Scandisk:",IDC_SCANDISKTEXT,14,82,61,8,
  440. NOT WS_VISIBLE
  441. COMBOBOX IDC_SCANDISK,75,80,82,80,
  442. CBS_DROPDOWN | CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP |
  443. NOT WS_VISIBLE
  444. GROUPBOX "&Boot menu",IDC_BOOTMENUGROUP,7,108,cxGrp,52
  445. CONTROL "Always &show boot menu",IDC_BOOTMENU,"Button",
  446. BS_AUTOCHECKBOX | WS_TABSTOP,14,121,121,10
  447. #ifdef BOOTMENUDEFAULT
  448. LTEXT "Default menu &option:",-1,23,122,69,8
  449. COMBOBOX IDC_BOOTMENUDEFAULT,92,120,110,80,CBS_DROPDOWN |
  450. CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
  451. #endif
  452. LTEXT "&Continue booting after",IDC_BOOTMENUDELAYTEXT,23,137,74,8
  453. EDITTEXT IDC_BOOTMENUDELAY,98,135,24,12,ES_RIGHT | ES_NUMBER
  454. CONTROL "",IDC_BOOTMENUDELAYUD,UPDOWN_CLASS, WS_BORDER |
  455. WS_GROUP | UDS_AUTOBUDDY | UDS_ALIGNRIGHT | UDS_ARROWKEYS |
  456. UDS_SETBUDDYINT,122,135,11,12
  457. LTEXT "seconds.",IDC_BOOTMENUDELAYTEXT2,125,137,31,8
  458. PUSHBUTTON "&Restore Factory Settings",IDC_RESET,xRest,yRest,86,14
  459. END
  460. /*****************************************************************************
  461. *
  462. * IDD_NETWORK
  463. *
  464. *****************************************************************************/
  465. IDD_NETWORK DIALOG DISCARDABLE 0, 0, cxDlg, cyDlg
  466. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  467. CAPTION "Logon"
  468. FONT 8, "MS Shell Dlg"
  469. BEGIN
  470. #define xLog 7
  471. #define yLog 4
  472. #define cyLog 105
  473. CONTROL "&Log on automatically at system startup",
  474. IDC_LOGONAUTO,"Button",
  475. BS_AUTOCHECKBOX | WS_TABSTOP,18,yLog+10,136,10
  476. RTEXT "&User name:",IDC_LOGONUSERTXT,28,yLog+24,38,8, NOT WS_GROUP
  477. EDITTEXT IDC_LOGONUSER,70,yLog+24-2,80,13,ES_AUTOHSCROLL
  478. RTEXT "&Password:",IDC_LOGONPASSTXT,28,yLog+38,38,8, NOT WS_GROUP
  479. EDITTEXT IDC_LOGONPASS,70,yLog+38-2,80,13,
  480. ES_PASSWORD | ES_AUTOHSCROLL
  481. LTEXT "The ""Clear last user"" setting must be \
  482. disabled on the Paranoia page for automatic logon to work properly.",
  483. -1,18,69,cxGrp-36,30
  484. LTEXT "Note: The automatic logon password is not encrypted. \
  485. Any user with access to Regedit can view or modify it.",
  486. IDC_LOGONPASSUNSAFE,18,99,cxGrp-36,20
  487. CONTROL "Show &shutdown button on logon dialog",
  488. IDC_LOGONSHUTDOWN,"Button",
  489. BS_AUTOCHECKBOX | WS_TABSTOP,18,99,136,10
  490. END
  491. #undef xLog
  492. #undef yLog
  493. #undef cyLog
  494. /*****************************************************************************
  495. *
  496. * IDD_REPAIR
  497. *
  498. *****************************************************************************/
  499. #define xBtnImg 15
  500. #define xBtns 45
  501. #define yBtns 48
  502. #define yBtnImg 44
  503. #define dyIcon 21
  504. #define dyIcon2 42
  505. #define dyIcon3 63
  506. #define dyIcon4 84
  507. IDD_REPAIR DIALOG DISCARDABLE 0, 0, 212, 188
  508. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  509. CAPTION "Repair"
  510. FONT 8, "MS Shell Dlg"
  511. BEGIN
  512. LTEXT "Tweak UI can attempt to repair the &following aspects of your system.",
  513. IDC_REPAIRTEXT,14,14,176,24
  514. ICON IDI_DEFAULT,IDC_REPAIRICON,xBtnImg,yBtnImg,18,20
  515. COMBOBOX IDC_REPAIRCOMBO,41,48,116,92,
  516. CBS_DROPDOWNLIST | CBS_SORT |
  517. WS_VSCROLL | WS_TABSTOP
  518. PUSHBUTTON "&Repair Now",IDC_REPAIRNOW,169,47,50,14
  519. GROUPBOX "Description",-1,7,73,cxGrp,97
  520. LTEXT "",IDC_REPAIRHELP,15,82,cxGrp-16,97-10
  521. END
  522. #undef xBtns
  523. #undef xBtnImg
  524. #undef yBtns
  525. #undef yBtnImg
  526. /*****************************************************************************
  527. *
  528. * IDD_PARANOIA
  529. *
  530. *****************************************************************************/
  531. IDD_PARANOIA DIALOG DISCARDABLE 0, 0, cxDlg, cyDlg
  532. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  533. CAPTION "Paranoia"
  534. FONT 8, "MS Shell Dlg"
  535. BEGIN
  536. #define xCov 7
  537. #define yCov 4
  538. #define cyCov 105
  539. GROUPBOX "Co&vering your tracks",IDC_CLEARGROUP,xCov,yCov,cxGrp,cyCov
  540. CONTROL "",IDC_LISTVIEW,WC_LISTVIEW,LVS_REPORT | LVS_SINGLESEL |
  541. LVS_NOCOLUMNHEADER |
  542. LVS_SHAREIMAGELISTS |
  543. LVS_SORTASCENDING | WS_TABSTOP | WS_BORDER,
  544. 14,yCov+12,cxGrp-14, 66
  545. PUSHBUTTON "C&lear Selected Items Now",IDC_CLEARNOW,
  546. cxGrp-93,yCov+12+dyCheck5+14,93,14
  547. #define xCdr 7
  548. #define yCdr yCov+cyCov+4
  549. #define cyCdr 56
  550. GROUPBOX "Things that happen &behind your back",
  551. IDC_CDROMGROUP,xCdr,yCdr,cxGrp,cyCdr
  552. CONTROL "Play aud&io CDs automatically",IDC_CDROMAUDIO,"Button",
  553. BS_AUTOCHECKBOX | WS_TABSTOP,14,yCdr+12,105,10
  554. CONTROL "Play da&ta CDs automatically",IDC_CDROMDATA,"Button",
  555. BS_AUTOCHECKBOX | WS_TABSTOP,14,yCdr+12+dyCheck,102,10
  556. LTEXT "(Requires Auto-Insert Notification enabled.)",
  557. -1,14,yCdr+12+dyCheck+15,142,8
  558. #define xLog 7
  559. #define yLog yCdr+cyCdr+4
  560. #define cyLog 30
  561. GROUPBOX "Illegal &Operations",
  562. IDC_FAULTLOGGROUP,xLog,yLog,cxGrp,cyLog
  563. CONTROL "Lo&g application errors to FAULTLOG.TXT",IDC_FAULTLOG,
  564. "Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,yLog+12,145,10
  565. END
  566. #undef xCov
  567. #undef yCov
  568. #undef cyCov
  569. #undef xCdr
  570. #undef yCdr
  571. #undef cyCdr
  572. #undef xLog
  573. #undef yLog
  574. #undef cyLog
  575. /*****************************************************************************
  576. *
  577. * IDD_IE4
  578. *
  579. *****************************************************************************/
  580. IDD_IE4 DIALOG DISCARDABLE 0, 0, cxDlg, cyDlg
  581. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  582. CAPTION "IE"
  583. FONT 8, "MS Shell Dlg"
  584. BEGIN
  585. #define xSet 7
  586. #define ySet 4
  587. #define cySet ySet+12+76+4
  588. GROUPBOX "&Settings",IDC_SETTINGSGROUP,xSet,ySet,cxGrp,cySet
  589. CONTROL "",IDC_LISTVIEW,WC_LISTVIEW,LVS_REPORT | LVS_SINGLESEL |
  590. LVS_NOCOLUMNHEADER |
  591. LVS_SHAREIMAGELISTS |
  592. LVS_SORTASCENDING | WS_TABSTOP | WS_BORDER,
  593. 14,ySet+12,cxGrp-14, 76
  594. // BUGBUG -- restore factory defaults
  595. END
  596. #undef xSet
  597. #undef ySet
  598. #undef cySet
  599. /*****************************************************************************
  600. *
  601. * IDD_CMD
  602. *
  603. *****************************************************************************/
  604. IDD_CMD DIALOG DISCARDABLE 0, 0, cxDlg, cyDlg
  605. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  606. CAPTION "Cmd"
  607. FONT 8, "MS Shell Dlg"
  608. BEGIN
  609. #define xComp 7
  610. #define yComp 4
  611. #define cyComp 55
  612. GROUPBOX "&Completion",IDC_COMPLETIONGROUP,xComp,yComp,cxGrp,cyComp
  613. LTEXT "&Filename completion:",IDC_FILECOMPTXT,14,yComp+15,80,8
  614. COMBOBOX IDC_FILECOMP,94,yComp+13,50,200,
  615. CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
  616. LTEXT "&Directory completion:",IDC_DIRCOMPTXT,14,yComp+15+16,80,8
  617. COMBOBOX IDC_DIRCOMP,94,yComp+13+16,50,200,
  618. CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
  619. #define xEdit xComp
  620. #define yEdit yComp+cyComp+4
  621. #define cyEdit 30
  622. GROUPBOX "&Editing",-1,xEdit,yEdit,cxGrp,cyEdit
  623. LTEXT "&Word separators:",-1,14,yEdit+14,57,10
  624. EDITTEXT IDC_WORDDELIM,73,yEdit+12,102,14,ES_AUTOHSCROLL | ES_OEMCONVERT
  625. END
  626. #undef xComp
  627. #undef yComp
  628. #undef cyComp
  629. #undef xEdit
  630. #undef yEdit
  631. #undef cyEdit
  632. /*****************************************************************************
  633. *
  634. * IDD_CONTROL
  635. *
  636. *****************************************************************************/
  637. IDD_CONTROL DIALOG DISCARDABLE 0, 0, cxDlg, cyDlg
  638. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  639. CAPTION "Control Panel"
  640. FONT 8, "MS Shell Dlg"
  641. BEGIN
  642. LTEXT "&The following control panel extensions are installed. \
  643. Note that hiding an extension does not uninstall it. You can still run it \
  644. from a shortcut that you created before hiding it.",
  645. IDC_UNINSTALLTEXT,xLvTxt,yLvTxt,cxLvTxt,cyLvTxt
  646. CONTROL "",IDC_UNINSTALL,WC_LISTVIEW,LVS_REPORT | LVS_SINGLESEL |
  647. LVS_NOCOLUMNHEADER |
  648. LVS_SHAREIMAGELISTS | LVS_EDITLABELS |
  649. LVS_SORTASCENDING | WS_TABSTOP | WS_BORDER,
  650. xLvCtl,yLvCtl,cxGrp,cyLvCtl
  651. END
  652. /*****************************************************************************
  653. *
  654. * IDD_COMDLG32
  655. *
  656. *****************************************************************************/
  657. IDD_COMDLG32 DIALOG DISCARDABLE 0, 0, cxDlg, cyDlg
  658. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  659. CAPTION "Open"
  660. FONT 8, "MS Shell Dlg"
  661. BEGIN
  662. #define xOpen 7
  663. #define yOpen 4
  664. #define cyOpen 55
  665. CONTROL "Show &Back button on File Open/Save dialog",
  666. IDC_SHOWBACK,"Button",
  667. BS_AUTOCHECKBOX | WS_TABSTOP,7,yOpen,164,10
  668. CONTROL "&Remember previously-used filenames",
  669. IDC_FILEMRU,"Button",
  670. BS_AUTOCHECKBOX | WS_TABSTOP,7,yOpen+dyCheck,131,10
  671. #define xPlaces xOpen
  672. #define yPlaces yOpen+dyCheck2
  673. #define cyPlaces 15+dyCheck4+dyPush5+4
  674. GROUPBOX "&Places Bar",IDC_PLACESGROUP,xPlaces,yPlaces,cxGrp,cyPlaces
  675. CONTROL "Show &default places",IDC_PLACESDEF,"Button",
  676. BS_AUTORADIOBUTTON,15,yPlaces+dyCheck,78,10
  677. CONTROL "&Hide places bar",IDC_PLACESHIDE,"Button",
  678. BS_AUTORADIOBUTTON,15,yPlaces+dyCheck2,64,10
  679. CONTROL "&Custom places bar",IDC_PLACESCUSTOM,"Button",
  680. BS_AUTORADIOBUTTON,15,yPlaces+dyCheck3,73,10
  681. COMBOBOX IDC_PLACE0+0,
  682. 25,yPlaces+dyCheck4,cxGrp-58-25,90,
  683. CBS_DROPDOWN | WS_VSCROLL | WS_TABSTOP
  684. COMBOBOX IDC_PLACE0+1,
  685. 25,yPlaces+dyCheck4+dyPush,cxGrp-58-25,90,
  686. CBS_DROPDOWN | WS_VSCROLL | WS_TABSTOP
  687. COMBOBOX IDC_PLACE0+2,
  688. 25,yPlaces+dyCheck4+dyPush2,cxGrp-58-25,90,
  689. CBS_DROPDOWN | WS_VSCROLL | WS_TABSTOP
  690. COMBOBOX IDC_PLACE0+3,
  691. 25,yPlaces+dyCheck4+dyPush3,cxGrp-58-25,90,
  692. CBS_DROPDOWN | WS_VSCROLL | WS_TABSTOP
  693. COMBOBOX IDC_PLACE0+4,
  694. 25,yPlaces+dyCheck4+dyPush4,cxGrp-58-25,90,
  695. CBS_DROPDOWN | WS_VSCROLL | WS_TABSTOP
  696. // PUSHBUTTON "&Change",IDC_PLACECHANGE0+4,
  697. // cxGrp-54,yPlaces+dyCheck4+dyPush4,50,14
  698. END
  699. #undef xOpen
  700. #undef yOpen
  701. #undef cyOpen
  702. #undef xPlaces
  703. #undef yPlaces
  704. #undef cyPlaces
  705. /*****************************************************************************
  706. *
  707. * IDD_PICKICON
  708. *
  709. *****************************************************************************/
  710. IDD_PICKICON DIALOG DISCARDABLE 32, 22, 212, 181
  711. STYLE DS_CONTEXTHELP | DS_MODALFRAME | DS_NOIDLEMSG | WS_POPUP | WS_CAPTION | WS_SYSMENU
  712. CAPTION "Change Icon"
  713. FONT 8, "MS Shell Dlg"
  714. BEGIN
  715. LTEXT "&File Name:",-1,7,7,43,10,NOT WS_GROUP
  716. EDITTEXT IDC_PICKPATH,7,17,197,14,ES_AUTOHSCROLL | ES_OEMCONVERT
  717. LTEXT "&Current icon:",-1,7,36,79,10,NOT WS_GROUP
  718. LISTBOX IDC_PICKICON,7,47,197,101,LBS_OWNERDRAWFIXED |
  719. LBS_NOINTEGRALHEIGHT | LBS_MULTICOLUMN |
  720. LBS_DISABLENOSCROLL | WS_HSCROLL | WS_TABSTOP
  721. DEFPUSHBUTTON "OK",IDOK,46,159,50,14
  722. PUSHBUTTON "Cancel",IDCANCEL,100,159,50,14
  723. PUSHBUTTON "&Browse...",IDC_PICKBROWSE,154,159,50,14
  724. END
  725. /*****************************************************************************
  726. *
  727. * IDD_UNINSTALLEDIT
  728. *
  729. *****************************************************************************/
  730. IDD_UNINSTALLEDIT DIALOG DISCARDABLE 32, 80, 267, 73
  731. STYLE DS_CONTEXTHELP | DS_MODALFRAME | DS_NOIDLEMSG | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  732. CAPTION "Uninstall Command"
  733. FONT 8, "MS Shell Dlg"
  734. BEGIN
  735. LTEXT "&Description:",IDC_UNINSTALLDESCTEXT,13,12,40,8
  736. EDITTEXT IDC_UNINSTALLDESC,59,9,199,13,ES_AUTOHSCROLL
  737. LTEXT "&Command:",IDC_UNINSTALLCMDTEXT,18,30,35,8
  738. EDITTEXT IDC_UNINSTALLCMD,59,28,199,13,ES_AUTOHSCROLL
  739. DEFPUSHBUTTON "OK",IDOK,154,50,50,14
  740. PUSHBUTTON "Cancel",IDCANCEL,208,50,50,14
  741. END
  742. /*****************************************************************************
  743. *
  744. * IDD_SEARCHURL
  745. *
  746. *****************************************************************************/
  747. IDD_SEARCHURL DIALOG DISCARDABLE 32, 80, 243, 71
  748. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  749. CAPTION "Internet Explorer Search Engine"
  750. FONT 8, "MS Shell Dlg"
  751. BEGIN
  752. LTEXT "Type the URL to be used to invoke the search engine. %s will be replaced by the search keywords.",
  753. -1,7,4,210,22
  754. LTEXT "&URL:",-1,8,30,18,8
  755. EDITTEXT IDC_SEARCHURL,32,28,199,13,ES_AUTOHSCROLL
  756. DEFPUSHBUTTON "OK",IDOK,181,49,50,14
  757. END
  758. #ifdef PRERELEASE
  759. /*****************************************************************************
  760. *
  761. * IDD_BETAPASSWORD
  762. *
  763. *****************************************************************************/
  764. IDD_BETAPASSWORD DIALOG DISCARDABLE 32, 80, 267, 73
  765. STYLE DS_CONTEXTHELP | DS_MODALFRAME | DS_NOIDLEMSG | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  766. CAPTION "Your Beta Password Has Expired"
  767. FONT 8, "MS Shell Dlg"
  768. BEGIN
  769. LTEXT "Your beta password has expired. Please enter your new password.",-1,6,4,219,8
  770. LTEXT "Beta &ID:",-1,13,17,52,8
  771. EDITTEXT 32,76,14,182,13,ES_AUTOHSCROLL
  772. LTEXT "Beta &Password:",-1,13,35,52,8
  773. EDITTEXT 33,76,33,182,13,ES_AUTOHSCROLL | ES_UPPERCASE
  774. DEFPUSHBUTTON "OK",IDOK,154,50,50,14
  775. PUSHBUTTON "Cancel",IDCANCEL,208,50,50,14
  776. END
  777. #endif
  778. IDM_MAIN MENU PRELOAD
  779. BEGIN
  780. POPUP ""
  781. BEGIN
  782. POPUP "Sample menu"
  783. BEGIN
  784. MENUITEM "Sample menu", -1
  785. MENUITEM "Sample menu", -1
  786. MENUITEM "Sample menu", -1
  787. MENUITEM "Sample menu", -1
  788. END
  789. POPUP "Test menu"
  790. BEGIN
  791. MENUITEM "Test menu", -1
  792. MENUITEM "Test menu", -1
  793. MENUITEM "Test menu", -1
  794. MENUITEM "Test menu", -1
  795. END
  796. POPUP "Example menu"
  797. BEGIN
  798. MENUITEM "Example menu", -1
  799. MENUITEM "Example menu", -1
  800. MENUITEM "Example menu", -1
  801. MENUITEM "Example menu", -1
  802. END
  803. END
  804. /* Used by Desktop page as context menu */
  805. POPUP ""
  806. BEGIN
  807. MENUITEM "&Show on Desktop", IDC_LVTOGGLE
  808. MENUITEM "&Create As File...", IDC_CREATENOW
  809. MENUITEM "Rena&me", IDC_LVRENAME
  810. END
  811. /* Used by Add/Remove page as context menu */
  812. POPUP ""
  813. BEGIN
  814. MENUITEM "&Edit", IDC_UNINSTALLEDIT
  815. MENUITEM "&Remove", IDC_LVDELETE
  816. MENUITEM "Rena&me", IDC_LVRENAME
  817. END
  818. /* Used by Template page as context menu */
  819. POPUP ""
  820. BEGIN
  821. MENUITEM "&Show on New menu", IDC_LVTOGGLE
  822. MENUITEM "&Remove", IDC_LVDELETE
  823. END
  824. /* Used by MyComp page as context menu */
  825. POPUP ""
  826. BEGIN
  827. MENUITEM "&Show in My Computer", IDC_LVTOGGLE
  828. END
  829. /* Used by Paranoia page as context menu */
  830. POPUP ""
  831. BEGIN
  832. MENUITEM "&Clear at logon", IDC_LVTOGGLE
  833. MENUITEM "&What's This?", IDC_WHATSTHIS
  834. END
  835. /* Used by IE4 and General and Explorer page as context menu */
  836. POPUP ""
  837. BEGIN
  838. MENUITEM "&What's This?", IDC_WHATSTHIS
  839. END
  840. /* Used by Control Panel page as context menu */
  841. POPUP ""
  842. BEGIN
  843. MENUITEM "&Show in Control Panel", IDC_LVTOGGLE
  844. END
  845. END
  846. STRINGTABLE MOVEABLE DISCARDABLE
  847. BEGIN
  848. IDS_NAME, "Tweak UI"
  849. IDS_DESCRIPTION, "Customizes more user interface settings"
  850. IDS_ALLFILES, "All files|*.*|"
  851. IDS_BADEXT, "No application is associated with this file. Create an association by using the Explorer."
  852. IDS_COPYFAIL, "Unable to copy the file to the templates folder."
  853. IDS_REGFAIL, "Unable to update the registry."
  854. IDS_CONFIRMNEWTEMPLATE, "Overwrite the existing template with this file?"
  855. IDS_TOOMANY, "Drop only one file at a time, please."
  856. IDS_CANNOTTEMPLATE, "Templates cannot be created for this document type."
  857. IDS_NETHOOD, "Network Neighborhood"
  858. IDS_LOGONOFF, "You need to log off and back on before the new settings will take effect."
  859. IDS_SCANDISKNEVER, "Never"
  860. IDS_SCANDISKPROMPT, "After prompting"
  861. IDS_SCANDISKALWAYS, "Without prompting"
  862. #ifdef BOOTMENUDEFAULT
  863. IDS_BOOTMENU, "Normal"
  864. IDS_BOOTMENULOGGED, "Logged (\\BOOTLOG.TXT)"
  865. IDS_BOOTMENUSAFE, "Safe mode"
  866. IDS_BOOTMENUSAFENET, "Safe mode with network support"
  867. IDS_BOOTMENUSTEP, "Step-by-step confirmation"
  868. IDS_BOOTMENUCMD, "Command prompt only"
  869. IDS_BOOTMENUSAFECMD, "Safe mode command prompt only"
  870. IDS_BOOTMENUPREV, "Previous version of MS-DOS"
  871. #endif
  872. IDS_ERRMSDOSSYS, "Error updating MSDOS.SYS file. Changes were not saved."
  873. IDS_DESKTOPRESETOK, "Resetting desktop icons will override any customizations that may have been made, including changes made by Microsoft Plus! and Norton Protected Recycle Bin. Reset the desktop now?"
  874. IDS_ICONFILES, "Icon Files|*.ico;*.exe;*.dll|Programs|*.exe|Libraries|*.dll|Icons|*.ico|All Files|*.*|";
  875. IDS_NOTHINGTOCLEAR, "You didn't select anything to clear."
  876. IDS_BADRUN, "Tweak UI should be run from the Control Panel. Would you like to install it now?"
  877. IDS_CANTINSTALL, "Unable to install Tweak UI.\r\n\r\nCannot locate the tweakui.inf file."
  878. IDS_NONETHOOD, "Removing the Network Neighborhood from the desktop has additional consequences which are not obvious.\r\n\r\nWould you like to see additional information about this?"
  879. IDS_ADDRMWARN, "You will not be able to uninstall this program if you remove it from the Add/Remove list.\r\n\r\nRemove the entry anyway?"
  880. IDS_FIXED, "Uninstall information has been written to the registry."
  881. IDS_TEMPLATEDELETEWARN, "You will need to reinstall the program responsible for this file type in order to restore the template. Remove the template for this file type?"
  882. IDS_MAYBEREBOOT, "You will need to restart the computer for the remainder of the repairs to be completed."
  883. IDS_ICONSREBUILT, "You may need to close and re-open windows to ensure that the correct icons are displayed."
  884. IDS_RESTRICTED, "Tweak UI has been disabled by your administrator."
  885. IDS_ASKREPAIRADDRM, "The Add/Remove Programs list appears to be corrupted.\n\
  886. \n\
  887. Would you like Tweak UI to repair it?"
  888. IDS_WARNFOLDERCHANGE, "Carelessly changing a special folder \
  889. may render your system unusable.\
  890. \n\n\
  891. For example, don't set two special \
  892. folders equal to each other, or set a special folder equal to a \
  893. system folder like the Fonts folder.\
  894. \n\n\
  895. Continue changing special folders?"
  896. IDS_REORDERDESKTOP, "You may need to select Arrange.By Name \
  897. from the desktop context menu before the change in icon order \
  898. will take effect."
  899. IDS_REPAIRLOGONOFF, "You need to log off and back on for the repair to take effect."
  900. IDS_NONE, "<none>"
  901. #ifdef IDS_CWD
  902. IDS_CWD, "Current Directory"
  903. #endif
  904. IDS_FOLDER_PATTERN, "Select a new %s folder"
  905. IDS_FOLDER_DESKTOP, "Desktop"
  906. IDS_FOLDER_DESKTOPFOLDER, "Desktop"
  907. IDS_FOLDER_PROGRAMS, "Programs"
  908. IDS_FOLDER_PERSONAL, "My Documents"
  909. IDS_FOLDER_FAVORITES, "Favorites"
  910. IDS_FOLDER_STARTUP, "Startup"
  911. IDS_FOLDER_RECENT, "Recent Documents"
  912. IDS_FOLDER_SENDTO, "Send To"
  913. IDS_FOLDER_STARTMENU, "Start Menu"
  914. IDS_FOLDER_TEMPLATES, "Document Templates"
  915. IDS_FOLDER_PROGRAMFILES, "Program Files"
  916. IDS_FOLDER_COMMONFILES, "Common Program Files"
  917. IDS_FOLDER_SOURCEPATH, "Installation Path"
  918. IDS_FOLDER_MYMUSIC, "My Music"
  919. IDS_FOLDER_MYVIDEO, "My Video"
  920. IDS_FOLDER_DRIVES, "My Computer"
  921. IDS_FOLDER_NETWORK, "Network Neighborhood"
  922. IDS_FOLDER_HISTORY, "History"
  923. IDS_FOLDER_MYPICTURES, "My Pictures"
  924. IDS_DEFAULT_DESKTOP, "Desktop"
  925. IDS_DEFAULT_PROGRAMS, "Start Menu\\Programs"
  926. IDS_DEFAULT_PERSONAL, "My Documents"
  927. IDS_DEFAULT_FAVORITES, "Favorites"
  928. IDS_DEFAULT_STARTUP, "Start Menu\\Programs\\StartUp"
  929. IDS_DEFAULT_RECENT, "Recent"
  930. IDS_DEFAULT_SENDTO, "SendTo"
  931. IDS_DEFAULT_STARTMENU, "Start Menu"
  932. IDS_DEFAULT_TEMPLATES, "ShellNew"
  933. IDS_DEFAULT_MYMUSIC, "My Music"
  934. IDS_DEFAULT_MYVIDEO, "My Video"
  935. IDS_DEFAULT_MYPICTURES, "My Pictures"
  936. IDS_ENGINE+0, "Custom"
  937. /* Engine #1 is the default engine */
  938. IDS_ENGINE+1, "Yahoo"
  939. IDS_URL+1, "http://search.yahoo.com/bin/search?p=%s"
  940. IDS_ENGINE+2, "Alta Vista"
  941. IDS_URL+2, "http://www.altavista.com/cgi-bin/query?pg=q&what=web&fmt=.&q=%s"
  942. IDS_ENGINE+3, "InfoSeek"
  943. IDS_URL+3, "http://infoseek.go.com/Titles?qt=%s&col=WW&sv=I2"
  944. IDS_ENGINE+4, "WebCrawler"
  945. IDS_URL+4, "http://www.webcrawler.com/cgi-bin/WebQuery?%s"
  946. IDS_ENGINE+5, "Excite"
  947. IDS_URL+5, "http://search.excite.com/search.gw?search=%s&trace=2"
  948. IDS_ENGINE+6, "Magellan"
  949. IDS_URL+6, "http://magellan.excite.com/search.gw?search=%s&look=magellan"
  950. IDS_ENGINE+7, "Google"
  951. IDS_URL+7, "http://www.google.com/search?q=%s"
  952. IDS_ENGINE+8, "Lycos"
  953. IDS_URL+8, "http://www.lycos.com/cgi-bin/pursuit?query=%s"
  954. IDS_ENGINE+9, "GoTo"
  955. IDS_URL+9, "http://www.goto.com/d/search/?Keywords=%s"
  956. IDS_ENGINE+10, "HotBot"
  957. IDS_URL+10, "http://www.hotbot.com/search.html?_v=1.0&MT=%s&SM=MC"
  958. IDS_ENGINE+11, "MetaCrawler"
  959. IDS_URL+11, "http://www.metacrawler.com/cgi-bin/nph-metaquery.p?general=%s"
  960. IDS_PARANOIA+0 "Clear Run history at logon"
  961. IDS_PARANOIA+1 "Clear Find Files history at logon"
  962. IDS_PARANOIA+2 "Clear Find Computer history at logon"
  963. IDS_PARANOIA+3 "Clear Document history at logon"
  964. IDS_PARANOIA+4 "Clear Internet Explorer history at logon"
  965. IDS_PARANOIA+5 "Clear Network Connection history at logon"
  966. IDS_PARANOIA+6 "Clear Last User at logon"
  967. IDS_PARANOIA+7 "Clear Telnet history at logon"
  968. IDS_IE4+0 "Show Internet icon on desktop"
  969. IDS_IE4+1 "Add new documents to Documents on Start Menu"
  970. IDS_IE4+2 "Show Documents on Start Menu"
  971. IDS_IE4+3 "Allow the Active Desktop interface to be turned on/off"
  972. IDS_IE4+4 "Allow changes to the Active Desktop interface"
  973. IDS_IE4+5 "Show Favorites on Start Menu"
  974. IDS_IE4+6 "Clear document, run, typed-URL history on exit"
  975. IDS_IE4+7 "Shell enhancements"
  976. IDS_IE4+8 "Allow Logoff"
  977. IDS_IE4+9 "Detect accidental double-clicks"
  978. IDS_IE4+10 "Show Links on Favorites menu"
  979. IDS_IE4+11 "Show Help on Start Menu"
  980. IDS_IE4+12 "Permit access to Control Panel (if you disable this you won't be able to run Tweak UI either)"
  981. IDS_IE4+13 "Show Dial-Up Networking on Start Menu Settings"
  982. IDS_IE4+14 "Enable Windows+X hotkeys (requires logoff)"
  983. IDS_IE4+15 "Show Computers Near Me in Network Places"
  984. IDS_IE4+16 "Show My Documents on Start Menu Documents"
  985. IDS_IE4+17 "Show My Pictures on Start Menu Documents"
  986. IDS_GENERALEFFECTS+0 "Window animation"
  987. IDS_GENERALEFFECTS+1 "Smooth scrolling"
  988. IDS_GENERALEFFECTS+2 "Beep on errors"
  989. IDS_GENERALEFFECTS+3 "Menu animation"
  990. IDS_GENERALEFFECTS+4 "Combo box animation"
  991. IDS_GENERALEFFECTS+5 "List box animation"
  992. IDS_GENERALEFFECTS+6 "Always show keyboard indicators"
  993. IDS_GENERALEFFECTS+7 "Mouse hot tracking effects"
  994. IDS_GENERALEFFECTS+8 "Menu fading"
  995. IDS_GENERALEFFECTS+9 "Menu selection fading"
  996. IDS_GENERALEFFECTS+10 "Tooltip animation"
  997. IDS_GENERALEFFECTS+11 "Tooltip fade"
  998. IDS_GENERALEFFECTS+12 "Cursor shadow"
  999. IDS_GENERALEFFECTS+13 "Show Windows version on desktop"
  1000. IDS_CPL_BORING "Control Panel DLL"
  1001. IDS_CPL_ADDRM "Add/Remove Programs"
  1002. IDS_CPL_DESK "Desktop Settings"
  1003. IDS_CPL_INTL "Regional Settings"
  1004. IDS_CPL_MAIN "Mouse, Keyboard, etc."
  1005. IDS_CPL_TIMEDATE "Time/Date Settings"
  1006. IDS_REPAIR+0 "Rebuild Icons"
  1007. IDS_REPAIRHELP+0 "Rebuilds all Explorer icons \
  1008. and removes unused Explorer icons from memory.\n\
  1009. \n\
  1010. Rebuild icons when you find that Explorer is displaying the \
  1011. wrong icon for a program or shortcut."
  1012. IDS_REPAIR+1 "Repair Font Folder"
  1013. IDS_REPAIRHELP+1 "Restores the functionality of the Font Folder.\n\
  1014. \n\
  1015. Repair the Font Folder when you find that the Font Folder has \
  1016. begun acting like a normal folder."
  1017. IDS_REPAIR+2 "Repair System Files"
  1018. IDS_REPAIRHELP+2 "Checks files which are commonly \
  1019. replaced by application installation programs. If the system \
  1020. file has been improperly overwritten, Windows will restore the \
  1021. original file.\n\
  1022. \n\
  1023. For example, repairing system files will restore the damaged files \
  1024. which cause the error message ""The Comdlg32.dll file cannot start.""\n\
  1025. \n\
  1026. Repairing system files requires that the files in the \
  1027. hidden SysBckup folder are still installed."
  1028. IDS_REPAIR+3 "Repair Regedit"
  1029. IDS_REPAIRHELP+3 "Resets Regedit view state \
  1030. information to the defaults.\n\
  1031. \n\
  1032. Repair Regedit when you find that Regedit is not showing all the \
  1033. columns in its view."
  1034. IDS_REPAIR+4 "Repair Associations"
  1035. IDS_REPAIRHELP+4 "Returns icons to their factory \
  1036. settings and restores the default associations for standard file types.\n\
  1037. \n\
  1038. Repairing associations solves such common problems as \
  1039. losing the ""Install"" command on the right-click context menu \
  1040. for .INF files."
  1041. IDS_REPAIR+5 "Repair URL History"
  1042. IDS_REPAIRHELP+5 "Restores the functionality of the URL History \
  1043. folder.\n\
  1044. \n\
  1045. Repair the URL History when you find that the URL History folder has lost \
  1046. its magic and is acting like a normal folder.\n\
  1047. \n\
  1048. In Details view, the URL \
  1049. History folder should have special columns such as \
  1050. ""Last Visited"" and ""Expires""."
  1051. IDS_REPAIR+6 "Repair Temporary Internet Files"
  1052. IDS_REPAIRHELP+6 "Restores the functionality of the \
  1053. Temporary Internet Files folder.\n\
  1054. \n\
  1055. Repair the Temporary Internet Files folder \
  1056. when you find that the Temporary Internet Files folder has lost \
  1057. its magic and is acting like a normal folder.\n\
  1058. \n\
  1059. In Details view, the Temporary Internet Files \
  1060. folder should have special columns such as \
  1061. ""Internet Address"" and ""Expires""."
  1062. IDS_REPAIR+7 "Repair hotkeys"
  1063. IDS_REPAIRHELP+7 "Resets the hotkeys for shortcuts \
  1064. on the Start Menu and on the Desktop.\n\
  1065. \n\
  1066. Repair the Start Menu hotkeys if you find that the hotkey for a program \
  1067. is still active even after you deleted the shortcut from your Start Menu \
  1068. or your Desktop."
  1069. IDS_COMPLETION+0 "None"
  1070. IDS_COMPLETION+1 "Ctrl+A"
  1071. IDS_COMPLETION+2 "Ctrl+B"
  1072. //IDS_COMPLETION+3 "Ctrl+C"
  1073. IDS_COMPLETION+4 "Ctrl+D"
  1074. IDS_COMPLETION+5 "Ctrl+E"
  1075. IDS_COMPLETION+6 "Ctrl+F"
  1076. IDS_COMPLETION+7 "Ctrl+G"
  1077. //IDS_COMPLETION+8 "Ctrl+H"
  1078. IDS_COMPLETION+9 "Tab"
  1079. //IDS_COMPLETION+10 "Ctrl+J"
  1080. IDS_COMPLETION+11 "Ctrl+K"
  1081. IDS_COMPLETION+12 "Ctrl+L"
  1082. //IDS_COMPLETION+13 "Ctrl+M"
  1083. IDS_COMPLETION+14 "Ctrl+N"
  1084. IDS_COMPLETION+15 "Ctrl+O"
  1085. IDS_COMPLETION+16 "Ctrl+P"
  1086. IDS_COMPLETION+17 "Ctrl+Q"
  1087. IDS_COMPLETION+18 "Ctrl+R"
  1088. //IDS_COMPLETION+19 "Ctrl+S"
  1089. IDS_COMPLETION+20 "Ctrl+T"
  1090. IDS_COMPLETION+21 "Ctrl+U"
  1091. IDS_COMPLETION+22 "Ctrl+V"
  1092. IDS_COMPLETION+23 "Ctrl+W"
  1093. IDS_COMPLETION+24 "Ctrl+X"
  1094. IDS_COMPLETION+25 "Ctrl+Y"
  1095. IDS_COMPLETION+26 "Ctrl+Z"
  1096. IDS_COMPLETION+27 "Ctrl+["
  1097. IDS_COMPLETION+28 "Ctrl+\\"
  1098. IDS_COMPLETION+29 "Ctrl+["
  1099. IDS_COMPLETION+30 "Ctrl+^"
  1100. IDS_COMPLETION+31 "Ctrl+_"
  1101. IDS_EXPLOREREFFECTS+0 "Prefix ""Shortcut to"" on new shortcuts"
  1102. IDS_EXPLOREREFFECTS+1 "Save Explorer window settings"
  1103. IDS_EXPLOREREFFECTS+2 "Animated ""Click here to begin"" (if room)"
  1104. IDS_EXPLOREREFFECTS+3 "Tip of the day"
  1105. IDS_EXPLOREREFFECTS+4 "Adjust case of 8.3 filenames"
  1106. IDS_EXPLOREREFFECTS+5 "Manipulate connected files as a unit"
  1107. END