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.

127 lines
4.2 KiB

  1. <HTML XMLNS:helpcenter>
  2. <HEAD>
  3. <!--
  4. Copyright (c) 2000 Microsoft Corporation
  5. -->
  6. <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=windows-1252">
  7. <META HTTP-EQUIV=PICS-Label CONTENT='(PICS-1.1 "http://www.rsac.org/ratingsv01.html" l comment "RSACi North America Server" by "[email protected]" r (n 0 s 0 v 0 l 0))'>
  8. <META HTTP-EQUIV="MSThemeCompatible" CONTENT="Yes">
  9. <OBJECT ID=pchealth classid=CLSID:FC7D9E02-3F9E-11d3-93C0-00C04F72DAF7></OBJECT>
  10. <LINK ID=Stylesheet_Ref0 href="hcp://system/css/shared.css" rel=STYLESHEET type=text/css>
  11. <LINK ID=Stylesheet_Ref1 href="hcp://system/css/Behaviors.css" rel=STYLESHEET type=text/css>
  12. <TITLE>Help and Support Center options</TITLE>
  13. <STYLE>
  14. BODY
  15. {
  16. margin : 16px;
  17. margin-top : 11px;
  18. }
  19. </STYLE>
  20. </HEAD>
  21. <BODY id=noloc1 scroll=auto class="sys-rhp-color">
  22. <DIV id=locTitle class="sys-font-heading3 sys-rhp-color-title">
  23. Help and Support Center options
  24. </DIV>
  25. <BR>
  26. <DIV id=locDesc class="sys-font-body sys-color-body">
  27. Select from the options below to customize your Help and Support Center experience.
  28. </DIV>
  29. <BR>
  30. <DIV style="margin-bottom: 0em">
  31. <INPUT tabIndex=1 type=checkbox id=idOPT_fav onclick="updateOptions();">
  32. <LABEL id=locOPT_fav class="sys-font-body sys-color-body" FOR=idOPT_fav>Show Favorites on the navigation bar</LABEL>
  33. </DIV>
  34. <DIV style="margin-bottom: 0.5em">
  35. <INPUT tabIndex=1 type=checkbox id=idOPT_hist onclick="updateOptions();">
  36. <LABEL id=locOPT_hist class="sys-font-body sys-color-body" FOR=idOPT_hist>Show History on the navigation bar</LABEL>
  37. </DIV>
  38. <DIV id=locFont style="margin-bottom: 1em; margin-top: 1.5em" class="sys-font-body">
  39. Font size used for Help content:
  40. </DIV>
  41. <DIV style="margin-bottom: 0.5em">
  42. <INPUT type=radio tabIndex=1 name='FontSize' id=idOPT_font_SMALL onclick="updateOptions();">
  43. <LABEL id=locOPT_font_SMALL class="sys-font-body sys-color-body" FOR=idOPT_font_SMALL>Small</LABEL><BR>
  44. <INPUT type=radio tabIndex=1 name='FontSize' id=idOPT_font_MEDIUM onclick="updateOptions();">
  45. <LABEL id=locOPT_font_MEDIUM class="sys-font-body sys-color-body" FOR=idOPT_font_MEDIUM>Medium</LABEL><BR>
  46. <INPUT type=radio tabIndex=1 name='FontSize' id=idOPT_font_LARGE onclick="updateOptions();">
  47. <LABEL id=locOPT_font_LARGE class="sys-font-body sys-color-body" FOR=idOPT_font_LARGE>Large</LABEL>
  48. </DIV>
  49. <DIV id=locIcon style="margin-bottom: 1.5em; margin-top: 1.5em" class="sys-font-body">
  50. Options for icons in the navigation bar:
  51. </DIV>
  52. <DIV style="margin-bottom: 0.5em">
  53. <INPUT type=radio tabIndex=1 name='TextLabels' id=idOPT_text_ALL onclick="updateOptions();">
  54. <LABEL id=locOPT_text_ALL class="sys-font-body sys-color-body" FOR=idOPT_text_ALL>Show all text labels</LABEL><BR>
  55. <INPUT type=radio tabIndex=1 name='TextLabels' id=idOPT_text_SEL onclick="updateOptions();">
  56. <LABEL id=locOPT_text_SEL class="sys-font-body sys-color-body" FOR=idOPT_text_SEL>Show only default text labels</LABEL><BR>
  57. <INPUT type=radio tabIndex=1 name='TextLabels' id=idOPT_text_NONE onclick="updateOptions();">
  58. <LABEL id=locOPT_text_NONE class="sys-font-body sys-color-body" FOR=idOPT_text_NONE>Do not show text labels</LABEL>
  59. </DIV>
  60. </BODY>
  61. <SCRIPT>
  62. var g_options = pchealth.UserSettings.Options;
  63. function readOptions()
  64. {
  65. idOPT_fav .checked = g_options.ShowFavorites;
  66. idOPT_hist.checked = g_options.ShowHistory;
  67. switch(g_options.TextLabels)
  68. {
  69. case 0: idOPT_text_ALL .checked = true; break;
  70. case 1: idOPT_text_SEL .checked = true; break;
  71. case 2: idOPT_text_NONE.checked = true; break;
  72. }
  73. switch(g_options.FontSize)
  74. {
  75. case 0: idOPT_font_SMALL .checked = true; break;
  76. case 1: idOPT_font_MEDIUM.checked = true; break;
  77. case 2: idOPT_font_LARGE .checked = true; break;
  78. }
  79. }
  80. function updateOptions()
  81. {
  82. g_options.ShowFavorites = idOPT_fav .checked;
  83. g_options.ShowHistory = idOPT_hist.checked;
  84. if(idOPT_text_ALL .checked) g_options.TextLabels = 0;
  85. if(idOPT_text_SEL .checked) g_options.TextLabels = 1;
  86. if(idOPT_text_NONE.checked) g_options.TextLabels = 2;
  87. if(idOPT_font_SMALL .checked) g_options.FontSize = 0;
  88. if(idOPT_font_MEDIUM.checked) g_options.FontSize = 1;
  89. if(idOPT_font_LARGE .checked) g_options.FontSize = 2;
  90. g_options.Apply();
  91. }
  92. readOptions();
  93. </SCRIPT>
  94. </HTML>