home *** CD-ROM | disk | FTP | other *** search
/ PC Advisor 2005 August / PCADVD_121.iso / internet / nsb-setup.exe / chrome / inspector.jar / content / inspector / prefs / pref-sidebar.js < prev    next >
Encoding:
JavaScript  |  2004-11-25  |  5.9 KB  |  173 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: NPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Netscape Public License
  5.  * Version 1.1 (the "License"); you may not use this file except in
  6.  * compliance with the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/NPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is mozilla.org code.
  15.  *
  16.  * The Initial Developer of the Original Code is 
  17.  * Netscape Communications Corporation.
  18.  * Portions created by the Initial Developer are Copyright (C) 2001
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *   Joe Hewitt <hewitt@netscape.com> (original author)
  23.  *
  24.  *
  25.  * Alternatively, the contents of this file may be used under the terms of
  26.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  27.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.  * in which case the provisions of the GPL or the LGPL are applicable instead
  29.  * of those above. If you wish to allow use of your version of this file only
  30.  * under the terms of either the GPL or the LGPL, and not to allow others to
  31.  * use your version of this file under the terms of the NPL, indicate your
  32.  * decision by deleting the provisions above and replace them with the notice
  33.  * and other provisions required by the GPL or the LGPL. If you do not delete
  34.  * the provisions above, a recipient may use your version of this file under
  35.  * the terms of any one of the NPL, the GPL or the LGPL.
  36.  *
  37.  * ***** END LICENSE BLOCK ***** */
  38.  
  39. /***************************************************************
  40. * SidebarPrefs -------------------------------------------------
  41. *  The controller for the lovely sidebar prefs panel.
  42. * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
  43. * REQUIRED IMPORTS:
  44. *   chrome://inspector/content/jsutil/xpcom/XPCU.js
  45. *   chrome://inspector/content/jsutil/rdf/RDFU.js
  46. ****************************************************************/
  47.  
  48. //////////// global variables /////////////////////
  49.  
  50. var sidebarPref;
  51.  
  52. //////////// global constants ////////////////////
  53.  
  54. const kDirServiceCID       = "@mozilla.org/file/directory_service;1"
  55. const kNCURI               = "http://home.netscape.com/NC-rdf#";
  56. const kSidebarPanelId      = "UPnls"; // directory services property to find panels.rdf
  57. const kSidebarURNPanelList = "urn:sidebar:current-panel-list";
  58. const kSidebarURN3rdParty  = "urn:sidebar:3rdparty-panel";
  59. const kSidebarURL          = "chrome://inspector/content/sidebar.xul";
  60.  
  61. //////////////////////////////////////////////////
  62.  
  63. window.addEventListener("load", SidebarPrefs_initialize, false);
  64.  
  65. function SidebarPrefs_initialize()
  66. {
  67.   sidebarPref = new SidebarPrefs();
  68.   sidebarPref.initSidebarData();
  69. }
  70.  
  71. ///// class SidebarPrefs /////////////////////////
  72.  
  73. function SidebarPrefs()
  74. {
  75. }
  76.  
  77. SidebarPrefs.prototype = 
  78. {
  79.   
  80.   ///////////////////////////////////////////////////////////////////////////
  81.   // Because nsSidebar has been so mean to me, I'm going to re-write it's
  82.   // addPanel code right here so I don't have to fight with it.  Pbbbbt!
  83.   ///////////////////////////////////////////////////////////////////////////
  84.  
  85.   initSidebarData: function()
  86.   {
  87.     var file = this.getDirectoryFile(kSidebarPanelId);
  88.     if (file)
  89.       RDFU.loadDataSource(file, gSidebarLoadListener);
  90.   },
  91.  
  92.   initSidebarData2: function(aDS)
  93.   {
  94.     var res = aDS.GetTarget(gRDF.GetResource(kSidebarURNPanelList), gRDF.GetResource(kNCURI + "panel-list"), true);
  95.     this.mDS = aDS;
  96.     this.mPanelSeq = RDFU.makeSeq(aDS, res);
  97.     this.mPanelRes = gRDF.GetResource(kSidebarURN3rdParty + ":" + kSidebarURL);
  98.     
  99.     if (this.isSidebarInstalled()) {
  100.       document.getElementById("tbxSidebar").setAttribute("hidden", "true");      
  101.     }
  102.   },
  103.  
  104.   isSidebarInstalled: function()
  105.   {
  106.     return this.mPanelSeq.IndexOf(this.mPanelRes) != -1;
  107.   },
  108.  
  109.   installSidebar: function()
  110.   {
  111.     if (this.isSidebarInstalled()) {
  112.       return false;
  113.     }
  114.  
  115.     var bundle = document.getElementById("inspector-bundle");
  116.     var kSidebarTitle = bundle.getString("sidebar.title");
  117.  
  118.     this.mDS.Assert(this.mPanelRes, gRDF.GetResource(kNCURI + "title"), gRDF.GetLiteral(kSidebarTitle), true);
  119.     this.mDS.Assert(this.mPanelRes, gRDF.GetResource(kNCURI + "content"), gRDF.GetLiteral(kSidebarURL), true);
  120.     this.mPanelSeq.AppendElement(this.mPanelRes);
  121.     this.forceSidebarRefresh();
  122.  
  123.     var msg = document.getElementById("txSidebarMsg");
  124.     msg.removeChild(msg.firstChild);
  125.  
  126.     msg.appendChild(document.createTextNode(bundle.getString("sidebarInstalled"))); 
  127.     var btn = document.getElementById("btnSidebarInstall");
  128.     btn.setAttribute("disabled", "true");
  129.  
  130.     return true;
  131.   },
  132.  
  133.   forceSidebarRefresh: function()
  134.   {
  135.     var listRes = gRDF.GetResource(kSidebarURNPanelList);
  136.     var refreshRes = gRDF.GetResource(kNCURI + "refresh");
  137.     var trueRes = gRDF.GetLiteral("true");
  138.     this.mDS.Assert(listRes, refreshRes, trueRes, true);
  139.     this.mDS.Unassert(listRes, refreshRes, trueRes);
  140.   },
  141.  
  142.   getDirectoryFile: function(aFileId)
  143.   {
  144.     try {
  145.       var dirService = XPCU.getService(kDirServiceCID, "nsIProperties");
  146.       var file = dirService.get(aFileId, Components.interfaces.nsIFile);
  147.       if (!file.exists())
  148.         return null;
  149.  
  150.       var ioService = XPCU.getService("@mozilla.org/network/io-service;1", "nsIIOService");
  151.       var fileHandler = XPCU.QI(ioService.getProtocolHandler("file"), "nsIFileProtocolHandler");
  152.  
  153.       return fileHandler.getURLSpecFromFile(file);
  154.  
  155.     } catch (ex) {
  156.       return null;
  157.     }
  158.   }
  159.  
  160. };
  161.  
  162. var gSidebarLoadListener = {
  163.   onDataSourceReady: function(aDS) 
  164.   {
  165.     sidebarPref.initSidebarData2(aDS);
  166.   },
  167.  
  168.   onError: function()
  169.   {
  170.   }
  171. };
  172.  
  173.