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

  1. /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is mozilla.org code.
  16.  *
  17.  * The Initial Developer of the Original Code is
  18.  * Netscape Communications Corporation.
  19.  * Portions created by the Initial Developer are Copyright (C) 2001
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *  Conrad Carlen <ccarlen@netscape.com>
  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 MPL, 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 MPL, the GPL or the LGPL.
  36.  *
  37.  * ***** END LICENSE BLOCK ***** */
  38.  
  39.  
  40. /* This file implements the nsCloseAllWindows component which implements
  41.  * the nsICloseAllWindows interface. Use this component when all
  42.  * windows need to be closed and confirmation to save changes is required.
  43.  */
  44.  
  45.  
  46. /* ctor
  47.  */
  48. function nsCloseAllWindows() {
  49. }
  50.  
  51. nsCloseAllWindows.prototype = {
  52.  
  53.     // This "class" supports nsICloseAllWindows, and nsISupports.
  54.     QueryInterface: function (iid) {
  55.         if (!iid.equals(Components.interfaces.nsICloseAllWindows) &&
  56.             !iid.equals(Components.interfaces.nsISupports)) {
  57.             throw Components.results.NS_ERROR_NO_INTERFACE;
  58.         }
  59.         return this;
  60.     },
  61.  
  62.     // ---------- nsICloseAllWindows methods ----------
  63.  
  64.     // closeAll: Close all open windows
  65.     closeAll: function(aAskToSave)  {
  66.     
  67.         var windowMediator = Components.classes['@mozilla.org/appshell/window-mediator;1'].
  68.                                 getService(Components.interfaces.nsIWindowMediator);
  69.         var enumerator = windowMediator.getEnumerator(null);
  70.  
  71.         while (enumerator.hasMoreElements()) {
  72.            var domWindow = enumerator.getNext();
  73.            if (aAskToSave && ("tryToClose" in domWindow)) {
  74.                if (!domWindow.tryToClose())
  75.                    return false;
  76.            }
  77.            domWindow.close();
  78.         };
  79.     
  80.         return true;
  81.     }
  82. }
  83.  
  84. // This Component's module implementation.  All the code below is used to get this
  85. // component registered and accessible via XPCOM.
  86. var module = {
  87.     firstTime: true,
  88.  
  89.     // registerSelf: Register this component.
  90.     registerSelf: function (compMgr, fileSpec, location, type) {
  91.         if (this.firstTime) {
  92.             this.firstTime = false;
  93.             throw Components.results.NS_ERROR_FACTORY_REGISTER_AGAIN;
  94.         }
  95.         compMgr = compMgr.QueryInterface(Components.interfaces.nsIComponentRegistrar);
  96.         compMgr.registerFactoryLocation( this.cid,
  97.                                          "Close All Windows",
  98.                                          this.contractId,
  99.                                          fileSpec,
  100.                                          location,
  101.                                          type );
  102.     },
  103.  
  104.     // getClassObject: Return this component's factory object.
  105.     getClassObject: function (compMgr, cid, iid) {
  106.         if (!cid.equals(this.cid)) {
  107.             throw Components.results.NS_ERROR_NO_INTERFACE;
  108.         }
  109.  
  110.         if (!iid.equals(Components.interfaces.nsIFactory)) {
  111.             throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  112.         }
  113.  
  114.         return this.factory;
  115.     },
  116.  
  117.     /* CID for this class */
  118.     cid: Components.ID("{2f977d48-5485-11d4-87e2-0010a4e75ef2}"),
  119.  
  120.     /* Contract ID for this class */
  121.     contractId: "@mozilla.org/appshell/closeallwindows;1",
  122.  
  123.     /* factory object */
  124.     factory: {
  125.         // createInstance: Return a new nsCloseAllWindows object.
  126.         createInstance: function (outer, iid) {
  127.             if (outer != null)
  128.                 throw Components.results.NS_ERROR_NO_AGGREGATION;
  129.  
  130.             return (new nsCloseAllWindows()).QueryInterface(iid);
  131.         }
  132.     },
  133.  
  134.     // canUnload: n/a (returns true)
  135.     canUnload: function(compMgr) {
  136.         return true;
  137.     }
  138. };
  139.  
  140. // NSGetModule: Return the nsIModule object.
  141. function NSGetModule(compMgr, fileSpec) {
  142.     return module;
  143. }
  144.