home *** CD-ROM | disk | FTP | other *** search
/ Thomson (Residential) / TGSTPv7203.iso / mac / Documentation / HTML / TG587n_nl / wwhelp / wwhimpl / js / private / options.js < prev   
Text File  |  2008-02-08  |  3KB  |  94 lines

  1. // Copyright (c) 2000-2001 Quadralay Corporation.  All rights reserved.
  2. //
  3.  
  4. function  WWHJavaScriptSettings_Object()
  5. {
  6.   this.mHoverText = new WWHJavaScriptSettings_HoverText_Object();
  7.  
  8.   this.mTabs   = new WWHJavaScriptSettings_Tabs_Object();
  9.   this.mTOC    = new WWHJavaScriptSettings_TOC_Object();
  10.   this.mIndex  = new WWHJavaScriptSettings_Index_Object();
  11.   this.mSearch = new WWHJavaScriptSettings_Search_Object();
  12. }
  13.  
  14. function  WWHJavaScriptSettings_HoverText_Object()
  15. {
  16.   this.mbEnabled = true;
  17.  
  18.   this.mFontStyle = "font-family: Verdana, Arial, Helvetica, sans-serif ; font-size: 9px";
  19.  
  20.   this.mWidth = 200;
  21.  
  22.   this.mForegroundColor = "#000000";
  23.   this.mBackgroundColor = "#FFFFFF";
  24.   this.mBorderColor     = "#7A1600";
  25. }
  26.  
  27. function  WWHJavaScriptSettings_Tabs_Object()
  28. {
  29.   this.mFontStyle = "font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px;";
  30.  
  31.   this.mSelectedTabColor       = "#F1F1F2";
  32.   this.mSelectedTabBorderColor = "#BF83B9";
  33.   this.mSelectedTabTextColor   = "#807F83";
  34.  
  35.   this.mDefaultTabColor       = "#FAFAFB";
  36.   this.mDefaultTabBorderColor = "#7962AA";
  37.   this.mDefaultTabTextColor   = "#807F83";
  38. }
  39.  
  40. function  WWHJavaScriptSettings_TOC_Object()
  41. {
  42.   this.mbShow = true;
  43.  
  44.   this.mFontStyle = "font-family:Verdana, Arial, Helvetica, sans-serif; font-size:9px";
  45.  
  46.   this.mEnabledColor  = "#1A1A1A";
  47.   this.mDisabledColor = "#1A1A1A";
  48.  
  49.   this.mIndent = 14;
  50. }
  51.  
  52. function  WWHJavaScriptSettings_Index_Object()
  53. {
  54.   this.mbShow = false;
  55.  
  56.   this.mFontStyle = "font-family: Verdana, Arial, Helvetica, sans-serif ; font-size: 10pt";
  57.  
  58.   this.mEnabledColor  = "#B22317";
  59.   this.mDisabledColor = "B22317";
  60.  
  61.   this.mIndent = 14;
  62.  
  63.   this.mNavigationFontStyle     = "font-family: Verdana, Arial, Helvetica, sans-serif ; font-size: 8pt ; font-weight: bold";
  64.   this.mNavigationCurrentColor  = "#EE3224";
  65.   this.mNavigationEnabledColor  = "#7A1600";
  66.   this.mNavigationDisabledColor = "#BABCBE";
  67. }
  68.  
  69. function  WWHJavaScriptSettings_Index_DisplayOptions(ParamIndexOptions)
  70. {
  71.   ParamIndexOptions.fSetThreshold(10);
  72.  
  73.   ParamIndexOptions.fSetSeperator(" - ");
  74.  
  75.   ParamIndexOptions.fGroup("Numerics", false, true, "1234567890");
  76.   ParamIndexOptions.fGroup("", true, true, "ABCDEFGHIJKLMNOPQRSTUVWXYZ");
  77.   ParamIndexOptions.fGroup("Symbols", false, true, "!@#$%^&*(){}[]<>\"|\\.,;-?+");
  78. }
  79.  
  80. function  WWHJavaScriptSettings_Search_Object()
  81. {
  82.   this.mbShow = true;
  83.  
  84.   this.mFontStyle = "font-family: Verdana, Arial, Helvetica, sans-serif ; font-size: 9px; color:#1A1A1A";
  85.  
  86.   this.mEnabledColor  = "#1A1A1A";
  87.   this.mDisabledColor = "#1A1A1A";
  88.  
  89.   this.mIndent = 14;
  90.  
  91.   this.mbShowBook = true;
  92.   this.mbShowRank = true;
  93. }
  94.