home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / phoenix / chrome / browser.jar / content / browser / pref / pref-scripts.js < prev    next >
Text File  |  2002-10-31  |  5KB  |  120 lines

  1.  
  2. const pref = Components.classes["@mozilla.org/preferences;1"].getService(Components.interfaces.nsIPref);
  3.  
  4. // need it globally, but can only set it in startup()
  5. var data;
  6.  
  7. function changeDisabledState(state){
  8.   //Set the states of the groupbox children state based on the "javascript enabled" checkbox value
  9.   document.getElementById("allowScripts").disabled = state;
  10.   document.getElementById("allowWindowMoveResize").disabled = state;
  11.   document.getElementById("allowImageSrcChange").disabled = state;
  12.   document.getElementById("allowWindowStatusChange").disabled = state;
  13.   document.getElementById("allowWindowFlip").disabled = state;
  14.   document.getElementById("allowHideStatusBar").disabled = state;
  15. }
  16.  
  17. function javascriptEnabledChange(aEnable){
  18.   var label = document.getElementById("allowScripts");
  19.   var listbox = document.getElementById("AllowList");
  20.   label.disabled = aEnable;
  21.   
  22.   //XXXBlake this should work...
  23.   listbox.disabled = aEnable;
  24. }
  25.  
  26. function getPrefValueForCheckbox(prefName){
  27.   var prefValue = false;
  28.  
  29.   try {
  30.     prefValue = pref.GetBoolPref(prefName);
  31.   }
  32.   catch(e) {}
  33.  
  34.   // the prefs are stored in terms of disabling,
  35.   // but we want our value in terms of enabling.
  36.   // so let's invert the prefValue.
  37.   return !prefValue;
  38. }
  39.  
  40. function Startup(){
  41.  
  42.   data = parent.hPrefWindow.wsm.dataManager.pageData["chrome://browser/content/pref/pref-scripts.xul"];
  43.  
  44.   //If scriptData does not exist, then it is the first time the panel was shown and we default to false 
  45.   if (!("scriptData" in data)){
  46.     var changedList = ["allowWindowMoveResizeChanged",
  47.                        "allowWindowStatusChangeChanged",
  48.                        "allowWindowFlipChanged",
  49.                        "allowImageSrcChangeChanged",
  50.                        "allowHideStatusBarChanged"];
  51.  
  52.     data.scriptData = [];
  53.     for(var run = 0; run < changedList.length; run++ ){
  54.       data.scriptData[ changedList[run] ] = [];
  55.       data.scriptData[ changedList[run] ].value = false;
  56.     }
  57.  
  58.     document.getElementById("allowWindowMoveResize").checked =  getPrefValueForCheckbox("dom.disable_window_move_resize");
  59.     document.getElementById("allowWindowFlip").checked = getPrefValueForCheckbox("dom.disable_window_flip");
  60.     document.getElementById("allowWindowStatusChange").checked = getPrefValueForCheckbox("dom.disable_window_status_change");
  61.     document.getElementById("allowImageSrcChange").checked = getPrefValueForCheckbox("dom.disable_image_src_set");
  62.     document.getElementById("allowHideStatusBar").checked = getPrefValueForCheckbox("dom.disable_window_open_feature.status");
  63.   }
  64.  
  65.   javascriptEnabledChange(!document.getElementById("enableJavascript").checked);
  66.  
  67.   document.getElementById("AllowList").addEventListener("CheckboxStateChange", onCheckboxCheck, false);
  68.  
  69.   parent.hPrefWindow.registerOKCallbackFunc(doOnOk);
  70. }
  71.  
  72. function doOnOk(){
  73.  
  74.   //If a user makes a change to this panel, goes to another panel, and returns to this panel to 
  75.   //make another change, then we cannot use data[elementName].  This is because data[elementName] 
  76.   //contains the original xul change and we would loose the new change. Thus we track all changes
  77.   //by using getElementById.
  78.  
  79.   //The nested functions are needed because doOnOk cannot access anything outside of its scope
  80.   //when it is called 
  81.   function getCheckboxValue(name){
  82.     if ("onCheckboxCheck" in window)
  83.       return document.getElementById(name).checked;
  84.  
  85.     return data[name].checked;
  86.   }
  87.  
  88.   var data = parent.hPrefWindow.wsm.dataManager.pageData["chrome://browser/content/pref/pref-scripts.xul"];
  89.  
  90.   if (data.scriptData["allowWindowMoveResizeChanged"].value){
  91.     parent.hPrefWindow.setPref("bool", "dom.disable_window_move_resize",
  92.       !getCheckboxValue('allowWindowMoveResize'));
  93.   }
  94.  
  95.   if (data.scriptData["allowWindowStatusChangeChanged"].value){
  96.     parent.hPrefWindow.setPref("bool", "dom.disable_window_status_change",
  97.       !getCheckboxValue("allowWindowStatusChange"));
  98.   }
  99.  
  100.   if (data.scriptData["allowWindowFlipChanged"].value){
  101.     parent.hPrefWindow.setPref("bool", "dom.disable_window_flip",
  102.       !getCheckboxValue("allowWindowFlip"));
  103.   }
  104.  
  105.   if (data.scriptData["allowImageSrcChangeChanged"].value){
  106.     parent.hPrefWindow.setPref("bool", "dom.disable_image_src_set",
  107.       !getCheckboxValue("allowImageSrcChange"));
  108.   }
  109.  
  110.   if (data.scriptData["allowHideStatusBarChanged"].value) {
  111.     parent.hPrefWindow.setPref("bool", "dom.disable_window_open_feature.status",
  112.       !getCheckboxValue("allowHideStatusBar"));
  113.   }
  114. }
  115.  
  116. function onCheckboxCheck(event)
  117. {
  118.   data.scriptData[event.target.id+"Changed"].value = !data.scriptData[event.target.id+"Changed"].value;
  119. }
  120.