home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 December / PCWorld_2005-12_cd.bin / komunikace / netscape / nsb-install-8-0.exe / components / nsSetDefaultBrowser.js < prev    next >
Text File  |  2005-09-26  |  8KB  |  175 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  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 Default Browser.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Netscape Communications Corp.
  18.  * Portions created by the Initial Developer are Copyright (C) 2002
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *   Bill Law  <law@netscape.com>
  23.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  26.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the MPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the MPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37.  
  38. /* This file implements the nsICmdLineHandler interface.  See nsICmdLineHandler.idl
  39.  * at http://lxr.mozilla.org/seamonkey/source/xpfe/appshell/public/nsICmdLineHandler.idl.
  40.  *
  41.  * This component handles the startup command line argument of the form:
  42.  *   -setDefaultBrowser
  43.  * by making the current executable the "default browser."  It accomplishes
  44.  * that via use of the nsIWindowsHooks interface (see implementation below).
  45.  *
  46.  * The module is registered under the contractid
  47.  *   "@mozilla.org/commandlinehandler/general-startup;1?type=setDefaultBrowser"
  48.  *
  49.  * The implementation consists of a JavaScript "class" named nsKillAll,
  50.  * comprised of:
  51.  *   - a JS constructor function
  52.  *   - a prototype providing all the interface methods and implementation stuff
  53.  *
  54.  * In addition, this file implements an nsIModule object that registers the
  55.  * nsSetDefaultBrowser component.
  56.  */
  57.  
  58. /* ctor
  59.  */
  60. function nsSetDefaultBrowser() {
  61. }
  62.  
  63. nsSetDefaultBrowser.prototype = {
  64.  
  65.     // nsICmdLineHandler interface
  66.     get commandLineArgument() { throw Components.results.NS_ERROR_NOT_IMPLEMENTED; },
  67.     get prefNameForStartup()  { throw Components.results.NS_ERROR_NOT_IMPLEMENTED; },
  68.  
  69.     get chromeUrlForTask()    { 
  70.       // First, get shell service
  71.       var shell;
  72.       try {
  73.         shell = Components.classes["@mozilla.org/browser/shell-service;1"]
  74.                             .getService(Components.interfaces.nsIShellService);
  75.       } catch(e) { }
  76.       if (!shell)
  77.     throw Components.results.NS_ERROR_NOT_AVAILABLE;
  78.  
  79.       shell.setDefaultBrowser(true, true);
  80.       
  81.       // Now, get the cmd line service.
  82.       var cmdLineService = Components.classes[ "@mozilla.org/appshell/commandLineService;1" ]
  83.                               .getService( Components.interfaces.nsICmdLineService );
  84.  
  85.       // See if "-setDefaultBrowser" was specified.  The value will be "1" if
  86.       // -setDefaultBrowser is in the service's list of cmd line arguments, and
  87.       // null otherwise.  -setDefaultBrowser will only be in the service's
  88.       // arg list if the application was not already running.  That's because
  89.       // if it was already running, then the service reflects the arguments
  90.       // that were specified when *that* process was started, *not* the ones
  91.       // passed via IPC from the second instance.
  92.       var option = cmdLineService.getCmdLineValue( "-setDefaultBrowser" );
  93.       if (!option) {
  94.         // Already running, so we don't have to worry about opening
  95.         // another window, etc.
  96.         throw Components.results.NS_ERROR_NOT_AVAILABLE;
  97.       }
  98.  
  99.       // Return URL for dummy window that will auto-close.  We do this rather
  100.       // than throw NS_ERROR_NOT_AVAILABLE, which *should* work, because it
  101.       // seems that if we don't open a window, we get a crash when trying to
  102.       // release this (or some other) JS component during XPCOM shutdown.
  103.       return "chrome://global/content/dummyWindow.xul";
  104.     },
  105.  
  106.     get helpText()            { throw Components.results.NS_ERROR_NOT_IMPLEMENTED; },
  107.     get handlesArgs()         { return false; }, 
  108.     get defaultArgs()         { throw Components.results.NS_ERROR_NOT_IMPLEMENTED; }, 
  109.     get openWindowWithArgs()  { throw Components.results.NS_ERROR_NOT_IMPLEMENTED; }, 
  110.  
  111.     // nsISupports interface
  112.  
  113.     // This "class" supports nsICmdLineHandler and nsISupports.
  114.     QueryInterface: function (iid) {
  115.         if (!iid.equals(Components.interfaces.nsICmdLineHandler) &&
  116.             !iid.equals(Components.interfaces.nsISupports)) {
  117.             throw Components.results.NS_ERROR_NO_INTERFACE;
  118.         }
  119.         return this;
  120.     },
  121.  
  122.     // This Component's module implementation.  All the code below is used to get this
  123.     // component registered and accessible via XPCOM.
  124.     module: {
  125.         // registerSelf: Register this component.
  126.         registerSelf: function (compMgr, fileSpec, location, type) {
  127.             var compReg = compMgr.QueryInterface( Components.interfaces.nsIComponentRegistrar );
  128.             compReg.registerFactoryLocation( this.cid,
  129.                                              "Default Browser Component",
  130.                                              this.contractId,
  131.                                              fileSpec,
  132.                                              location,
  133.                                              type );
  134.         },
  135.     
  136.         // getClassObject: Return this component's factory object.
  137.         getClassObject: function (compMgr, cid, iid) {
  138.             if (!cid.equals(this.cid))
  139.                 throw Components.results.NS_ERROR_NO_INTERFACE;
  140.     
  141.             if (!iid.equals(Components.interfaces.nsIFactory))
  142.                 throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  143.     
  144.             return this.factory;
  145.         },
  146.     
  147.         /* CID for this class */
  148.         cid: Components.ID("{C66E05DC-509C-4972-A1F2-EE5AC34B9800}"),
  149.     
  150.         /* Contract ID for this class */
  151.         contractId: "@mozilla.org/commandlinehandler/general-startup;1?type=setDefaultBrowser",
  152.     
  153.         /* factory object */
  154.         factory: {
  155.             // createInstance: Return a new nsSetDefaultBrowser object.
  156.             createInstance: function (outer, iid) {
  157.                 if (outer != null)
  158.                     throw Components.results.NS_ERROR_NO_AGGREGATION;
  159.     
  160.                 return (new nsSetDefaultBrowser()).QueryInterface(iid);
  161.             }
  162.         },
  163.     
  164.         // canUnload: n/a (returns true)
  165.         canUnload: function(compMgr) {
  166.             return true;
  167.         }
  168.     }
  169. }
  170.  
  171. // NSGetModule: Return the nsIModule object.
  172. function NSGetModule(compMgr, fileSpec) {
  173.     return nsSetDefaultBrowser.prototype.module;
  174. }
  175.