home *** CD-ROM | disk | FTP | other *** search
/ ftp.swcp.com / ftp.swcp.com.zip / ftp.swcp.com / mac / mozilla-macos9-1.3.1.sea.bin / Mozilla1.3.1 / Chrome / comm.jar / content / communicator / nsContextMenu.js < prev    next >
Text File  |  2003-06-08  |  41KB  |  947 lines

  1. /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
  2. /*
  3.  * The contents of this file are subject to the Netscape Public
  4.  * License Version 1.1 (the "License"); you may not use this file
  5.  * except in compliance with the License. You may obtain a copy of
  6.  * the License at http://www.mozilla.org/NPL/
  7.  *
  8.  * Software distributed under the License is distributed on an "AS
  9.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  10.  * implied. See the License for the specific language governing
  11.  * rights and limitations under the License.
  12.  *
  13.  * The Original Code is Mozilla Communicator client code,
  14.  * released March 31, 1998.
  15.  *
  16.  * The Initial Developer of the Original Code is Netscape Communications
  17.  * Corporation.  Portions created by Netscape are
  18.  * Copyright (C) 1998 Netscape Communications Corporation. All
  19.  * Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *     William A. ("PowerGUI") Law <law@netscape.com>
  23.  *     Blake Ross <blakeross@telocity.com>
  24.  *     Gervase Markham <gerv@gerv.net>
  25.  */
  26.  
  27. /*------------------------------ nsContextMenu ---------------------------------
  28. |   This JavaScript "class" is used to implement the browser's content-area    |
  29. |   context menu.                                                              |
  30. |                                                                              |
  31. |   For usage, see references to this class in navigator.xul.                  |
  32. |                                                                              |
  33. |   Currently, this code is relatively useless for any other purpose.  In the  |
  34. |   longer term, this code will be restructured to make it more reusable.      |
  35. ------------------------------------------------------------------------------*/
  36. function nsContextMenu( xulMenu ) {
  37.     this.target         = null;
  38.     this.menu           = null;
  39.     this.popupURL       = null;
  40.     this.onTextInput    = false;
  41.     this.onImage        = false;
  42.     this.onLink         = false;
  43.     this.onMailtoLink   = false;
  44.     this.onSaveableLink = false;
  45.     this.onMetaDataItem = false;
  46.     this.onMathML       = false;
  47.     this.link           = false;
  48.     this.inFrame        = false;
  49.     this.hasBGImage     = false;
  50.     this.isTextSelected = false;
  51.     this.inDirList      = false;
  52.     this.shouldDisplay  = true;
  53.  
  54.     // Initialize new menu.
  55.     this.initMenu( xulMenu );
  56. }
  57.  
  58. // Prototype for nsContextMenu "class."
  59. nsContextMenu.prototype = {
  60.     // onDestroy is a no-op at this point.
  61.     onDestroy : function () {
  62.     },
  63.     // Initialize context menu.
  64.     initMenu : function ( popup ) {
  65.         // Save menu.
  66.         this.menu = popup;
  67.  
  68.         // Get contextual info.
  69.         this.setTarget( document.popupNode );
  70.         
  71.         this.isTextSelected = this.isTextSelection();
  72.  
  73.         this.initPopupURL();
  74.  
  75.         // Initialize (disable/remove) menu items.
  76.         this.initItems();
  77.     },
  78.     initItems : function () {
  79.         this.initOpenItems();
  80.         this.initNavigationItems();
  81.         this.initViewItems();
  82.         this.initMiscItems();
  83.         this.initSaveItems();
  84.         this.initClipboardItems();
  85.         this.initMetadataItems();
  86.     },
  87.     initOpenItems : function () {
  88.         this.showItem( "context-openlink", this.onSaveableLink || ( this.inDirList && this.onLink ) );
  89.         this.showItem( "context-openlinkintab", this.onSaveableLink || ( this.inDirList && this.onLink ) );
  90.  
  91.         this.showItem( "context-sep-open", this.onSaveableLink || ( this.inDirList && this.onLink ) );
  92.     },
  93.     initNavigationItems : function () {
  94.         // Back determined by canGoBack broadcaster.
  95.         this.setItemAttrFromNode( "context-back", "disabled", "canGoBack" );
  96.  
  97.         // Forward determined by canGoForward broadcaster.
  98.         this.setItemAttrFromNode( "context-forward", "disabled", "canGoForward" );
  99.         
  100.         this.showItem( "context-back", !( this.isTextSelected || this.onLink || this.onImage || this.onTextInput ) );
  101.         this.showItem( "context-forward", !( this.isTextSelected || this.onLink || this.onImage || this.onTextInput ) );
  102.  
  103.         this.showItem( "context-reload", !( this.isTextSelected || this.onLink || this.onImage || this.onTextInput ) );
  104.         
  105.         this.showItem( "context-stop", !( this.isTextSelected || this.onLink || this.onImage || this.onTextInput ) );
  106.         this.showItem( "context-sep-stop", !( this.isTextSelected || this.onLink || this.onImage || this.onTextInput ) );
  107.  
  108.         // XXX: Stop is determined in navigator.js; the canStop broadcaster is broken
  109.         //this.setItemAttrFromNode( "context-stop", "disabled", "canStop" );
  110.     },
  111.     initSaveItems : function () {
  112.         this.showItem( "context-savepage", !( this.inDirList || this.isTextSelected || this.onTextInput ) && !( this.onLink && this.onImage ) );
  113.  
  114.         // Save link depends on whether we're in a link.
  115.         this.showItem( "context-savelink", this.onSaveableLink );
  116.  
  117.         // Save image depends on whether there is one.
  118.         this.showItem( "context-saveimage", this.onImage );
  119.         
  120.         this.showItem( "context-sendimage", this.onImage );
  121.     },
  122.     initViewItems : function () {
  123.         // View source is always OK, unless in directory listing.
  124.         this.showItem( "context-viewpartialsource-selection", this.isTextSelected && !this.onTextInput );
  125.         this.showItem( "context-viewpartialsource-mathml", this.onMathML && !this.isTextSelected );
  126.         this.showItem( "context-viewsource", !( this.inDirList || this.onImage || this.isTextSelected || this.onLink || this.onTextInput ) );
  127.         this.showItem( "context-viewinfo", !( this.inDirList || this.onImage || this.isTextSelected || this.onLink || this.onTextInput ) );
  128.  
  129.         this.showItem( "context-sep-properties", !( this.inDirList || this.isTextSelected || this.onTextInput ) );
  130.         // Set As Wallpaper depends on whether an image was clicked on, and only works on Windows.
  131.         var isWin = navigator.appVersion.indexOf("Windows") != -1;
  132.         this.showItem( "context-setWallpaper", isWin && this.onImage );
  133.  
  134.         this.showItem( "context-sep-image", this.onImage );
  135.  
  136.         if( isWin && this.onImage )
  137.             // Disable the Set As Wallpaper menu item if we're still trying to load the image
  138.           this.setItemAttr( "context-setWallpaper", "disabled", (("complete" in this.target) && !this.target.complete) ? "true" : null );
  139.  
  140.         this.showItem( "context-fitimage", this.onStandaloneImage && _content.document.imageResizingEnabled );
  141.         if ( this.onStandaloneImage && _content.document.imageResizingEnabled ) {
  142.           this.setItemAttr( "context-fitimage", "disabled", _content.document.imageIsOverflowing ? null : "true");
  143.           this.setItemAttr( "context-fitimage", "checked", _content.document.imageIsResized ? "true" : null);
  144.         }
  145.  
  146.         // View Image depends on whether an image was clicked on.
  147.         this.showItem( "context-viewimage", this.onImage && !this.onStandaloneImage);
  148.  
  149.         // View background image depends on whether there is one.
  150.         this.showItem( "context-viewbgimage", !( this.inDirList || this.onImage || this.isTextSelected || this.onLink || this.onTextInput ) );
  151.         this.showItem( "context-sep-viewbgimage", !( this.inDirList || this.onImage || this.isTextSelected || this.onLink || this.onTextInput ) );
  152.         this.setItemAttr( "context-viewbgimage", "disabled", this.hasBGImage ? null : "true");
  153.     },
  154.     initMiscItems : function () {
  155.         // Use "Bookmark This Link" if on a link.
  156.         this.showItem( "context-bookmarkpage", !( this.isTextSelected || this.onTextInput ) );
  157.         this.showItem( "context-bookmarklink", this.onLink && !this.onMailtoLink );
  158.         this.showItem( "context-searchselect", this.isTextSelected && !this.onTextInput );
  159.         this.showItem( "frame", this.inFrame );
  160.         this.showItem( "frame-sep", this.inFrame );
  161.         var blocking = true;
  162.         if (this.popupURL)
  163.           try {
  164.             const PM = Components.classes["@mozilla.org/PopupWindowManager;1"]
  165.                        .getService(Components.interfaces.nsIPopupWindowManager);
  166.             blocking = PM.testPermission(this.popupURL) ==
  167.                        Components.interfaces.nsIPopupWindowManager.DENY_POPUP;
  168.           } catch (e) {
  169.           }
  170.  
  171.         this.showItem( "popupwindow-reject", this.popupURL && !blocking);
  172.         this.showItem( "popupwindow-allow", this.popupURL && blocking);
  173.         this.showItem( "context-sep-popup", this.popupURL);
  174.     },
  175.     initClipboardItems : function () {
  176.  
  177.         // Copy depends on whether there is selected text.
  178.         // Enabling this context menu item is now done through the global
  179.         // command updating system
  180.         // this.setItemAttr( "context-copy", "disabled", !this.isTextSelected() );
  181.  
  182.         goUpdateGlobalEditMenuItems();
  183.  
  184.         this.showItem( "context-undo", this.onTextInput );
  185.         this.showItem( "context-redo", this.onTextInput );
  186.         this.showItem( "context-sep-undo", this.onTextInput );
  187.         this.showItem( "context-cut", this.onTextInput );
  188.         this.showItem( "context-copy", true );
  189.         this.showItem( "context-paste", this.onTextInput );
  190.         this.showItem( "context-delete", this.onTextInput );
  191.         this.showItem( "context-sep-paste", this.onTextInput );
  192.         this.showItem( "context-selectall", true );
  193.         this.showItem( "context-sep-selectall", this.isTextSelected && !this.onTextInput );
  194.         // In a text area there will be nothing after select all, so we don't want a sep
  195.         // Otherwise, if there's text selected then there are extra menu items
  196.         // (search for selection and view selection source), so we do want a sep
  197.  
  198.         // XXX dr
  199.         // ------
  200.         // nsDocumentViewer.cpp has code to determine whether we're
  201.         // on a link or an image. we really ought to be using that...
  202.  
  203.         // Copy email link depends on whether we're on an email link.
  204.         this.showItem( "context-copyemail", this.onMailtoLink );
  205.  
  206.         // Copy link location depends on whether we're on a link.
  207.         this.showItem( "context-copylink", this.onLink );
  208.         this.showItem( "context-sep-copylink", this.onLink );
  209.  
  210.         // Copy image location depends on whether we're on an image.
  211.         this.showItem( "context-copyimage", this.onImage );
  212.         this.showItem( "context-sep-copyimage", this.onImage );
  213.     },
  214.     initMetadataItems : function () {
  215.         // Show if user clicked on something which has metadata.
  216.         this.showItem( "context-metadata", this.onMetaDataItem );
  217.     },
  218.     // Set various context menu attributes based on the state of the world.
  219.     setTarget : function ( node ) {
  220.         const xulNS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
  221.         if ( node.namespaceURI == xulNS ) {
  222.           this.shouldDisplay = false;
  223.           return;
  224.         }
  225.         // Initialize contextual info.
  226.         this.onImage    = false;
  227.         this.onStandaloneImage = false;
  228.         this.onMetaDataItem = false;
  229.         this.onTextInput = false;
  230.         this.imageURL   = "";
  231.         this.onLink     = false;
  232.         this.onMathML   = false;
  233.         this.inFrame    = false;
  234.         this.hasBGImage = false;
  235.         this.bgImageURL = "";
  236.  
  237.         // Remember the node that was clicked.
  238.         this.target = node;
  239.  
  240.         // See if the user clicked on an image.
  241.         if ( this.target.nodeType == Node.ELEMENT_NODE ) {
  242.              if ( this.target.localName.toUpperCase() == "IMG" ) {
  243.                 this.onImage = true;
  244.                 this.imageURL = this.target.src;
  245.  
  246.                 var documentType = window._content.document.contentType;
  247.                 if ( documentType.substr(0,6) == "image/" )
  248.                     this.onStandaloneImage = true;
  249.  
  250.                 // Look for image map.
  251.                 var mapName = this.target.getAttribute( "usemap" );
  252.                 if ( mapName ) {
  253.                     // Find map.
  254.                     var map = this.target.ownerDocument.getElementById( mapName.substr(1) );
  255.                     if ( map ) {
  256.                         // Search child <area>s for a match.
  257.                         var areas = map.childNodes;
  258.                         //XXX Client side image maps are too hard for now!
  259.                         areas.length = 0;
  260.                         for ( var i = 0; i < areas.length && !this.onLink; i++ ) {
  261.                             var area = areas[i];
  262.                             if ( area.nodeType == Node.ELEMENT_NODE
  263.                                  &&
  264.                                  area.localName.toUpperCase() == "AREA" ) {
  265.                                 // Get type (rect/circle/polygon/default).
  266.                                 var type = area.getAttribute( "type" );
  267.                                 var coords = this.parseCoords( area );
  268.                                 switch ( type.toUpperCase() ) {
  269.                                     case "RECT":
  270.                                     case "RECTANGLE":
  271.                                         break;
  272.                                     case "CIRC":
  273.                                     case "CIRCLE":
  274.                                         break;
  275.                                     case "POLY":
  276.                                     case "POLYGON":
  277.                                         break;
  278.                                     case "DEFAULT":
  279.                                         // Default matches entire image.
  280.                                         this.onLink = true;
  281.                                         this.link = area;
  282.                                         this.onSaveableLink = this.isLinkSaveable( this.link );
  283.                                         break;
  284.                                 }
  285.                             }
  286.                         }
  287.                     }
  288.                 }
  289.              } else if ( this.target.localName.toUpperCase() == "OBJECT"
  290.                          &&
  291.                          // See if object tag is for an image.
  292.                          this.objectIsImage( this.target ) ) {
  293.                 // This is an image.
  294.                 this.onImage = true;
  295.                 // URL must be constructed.
  296.                 this.imageURL = this.objectImageURL( this.target );
  297.              } else if ( this.target.localName.toUpperCase() == "INPUT") {
  298.                type = this.target.getAttribute("type");
  299.                if(type && type.toUpperCase() == "IMAGE") {
  300.                  this.onImage = true;
  301.                  // Convert src attribute to absolute URL.
  302.                  this.imageURL = this.makeURLAbsolute( this.target.baseURI,
  303.                                                        this.target.src );
  304.                } else /* if (this.target.getAttribute( "type" ).toUpperCase() == "TEXT") */ {
  305.                  this.onTextInput = this.isTargetATextBox(this.target);
  306.                }
  307.             } else if ( this.target.localName.toUpperCase() == "TEXTAREA" ) {
  308.                  this.onTextInput = true;
  309.             } else if ( this.target.localName.toUpperCase() == "HTML" ) {
  310.                // pages with multiple <body>s are lame. we'll teach them a lesson.
  311.                var bodyElt = this.target.ownerDocument.getElementsByTagName("body")[0];
  312.                if ( bodyElt ) {
  313.                  var computedURL = this.getComputedURL( bodyElt, "background-image" );
  314.                  if ( computedURL ) {
  315.                    this.hasBGImage = true;
  316.                    this.bgImageURL = this.makeURLAbsolute( bodyElt.baseURI,
  317.                                                            computedURL );
  318.                  }
  319.                }
  320.             } else if ( "HTTPIndex" in _content &&
  321.                         _content.HTTPIndex instanceof Components.interfaces.nsIHTTPIndex ) {
  322.                 this.inDirList = true;
  323.                 // Bubble outward till we get to an element with URL attribute
  324.                 // (which should be the href).
  325.                 var root = this.target;
  326.                 while ( root && !this.link ) {
  327.                     if ( root.tagName == "tree" ) {
  328.                         // Hit root of tree; must have clicked in empty space;
  329.                         // thus, no link.
  330.                         break;
  331.                     }
  332.                     if ( root.getAttribute( "URL" ) ) {
  333.                         // Build pseudo link object so link-related functions work.
  334.                         this.onLink = true;
  335.                         this.link = { href : root.getAttribute("URL"),
  336.                                       getAttribute: function (attr) {
  337.                                           if (attr == "title") {
  338.                                               return root.firstChild.firstChild.getAttribute("label");
  339.                                           } else {
  340.                                               return "";
  341.                                           }
  342.                                       }
  343.                                     };
  344.                         // If element is a directory, then you can't save it.
  345.                         if ( root.getAttribute( "container" ) == "true" ) {
  346.                             this.onSaveableLink = false;
  347.                         } else {
  348.                             this.onSaveableLink = true;
  349.                         }
  350.                     } else {
  351.                         root = root.parentNode;
  352.                     }
  353.                 }
  354.             }
  355.         }
  356.  
  357.         // We have meta data on images.
  358.         this.onMetaDataItem = this.onImage;
  359.         
  360.         // See if the user clicked on MathML
  361.         const NS_MathML = "http://www.w3.org/1998/Math/MathML";
  362.         if ((this.target.nodeType == Node.TEXT_NODE &&
  363.              this.target.parentNode.namespaceURI == NS_MathML)
  364.              || (this.target.namespaceURI == NS_MathML))
  365.           this.onMathML = true;
  366.  
  367.         // See if the user clicked in a frame.
  368.         if ( this.target.ownerDocument != window._content.document ) {
  369.             this.inFrame = true;
  370.         }
  371.         
  372.         // Bubble out, looking for items of interest
  373.         var elem = this.target;
  374.         while ( elem ) {
  375.             if ( elem.nodeType == Node.ELEMENT_NODE ) {
  376.                 var localname = elem.localName.toUpperCase();
  377.                 
  378.                 // Link?
  379.                 if ( !this.onLink && 
  380.                     ( (localname === "A" && elem.href) ||
  381.                       localname === "AREA" ||
  382.                       localname === "LINK" ||
  383.                       elem.getAttributeNS( "http://www.w3.org/1999/xlink", "type") == "simple" ) ) {
  384.                     // Clicked on a link.
  385.                     this.onLink = true;
  386.                     this.onMetaDataItem = true;
  387.                     // Remember corresponding element.
  388.                     this.link = elem;
  389.                     this.onMailtoLink = this.isLinkType( "mailto:", this.link );
  390.                     // Remember if it is saveable.
  391.                     this.onSaveableLink = this.isLinkSaveable( this.link );
  392.                 }
  393.                 
  394.                 // Text input?
  395.                 if ( !this.onTextInput ) {
  396.                     // Clicked on a link.
  397.                     this.onTextInput = this.isTargetATextBox(elem);
  398.                 }
  399.                 
  400.                 // Metadata item?
  401.                 if ( !this.onMetaDataItem ) {
  402.                     // We currently display metadata on anything which fits
  403.                     // the below test.
  404.                     if ( ( localname === "BLOCKQUOTE" && 'cite' in elem && elem.cite)  ||
  405.                          ( localname === "Q" && 'cite' in elem && elem.cite)           ||
  406.                          ( localname === "TABLE" && 'summary' in elem && elem.summary) ||
  407.                          ( ( localname === "INS" || localname === "DEL" ) &&
  408.                            ( ( 'cite' in elem && elem.cite ) ||
  409.                              ( 'dateTime' in elem && elem.dateTime ) ) )               ||
  410.                          ( 'title' in elem && elem.title )                             ||
  411.                          ( 'lang' in elem && elem.lang ) ) {
  412.                         dump("On metadata item.\n");
  413.                         this.onMetaDataItem = true;
  414.                     }
  415.                 }
  416.  
  417.                 // Background image?  Don't bother if we've already found a 
  418.                 // background image further down the hierarchy.  Otherwise,
  419.                 // we look for the computed background-image style.
  420.                 if ( !this.hasBGImage ) {
  421.                     var bgImgUrl = this.getComputedURL( elem, "background-image" );
  422.                     if ( bgImgUrl ) {
  423.                         this.hasBGImage = true;
  424.                         this.bgImageURL = this.makeURLAbsolute( elem.baseURI,
  425.                                                                 bgImgUrl );
  426.                     }
  427.                 }
  428.             }
  429.             elem = elem.parentNode;    
  430.         }
  431.     },
  432.     initPopupURL: function() {
  433.       // quick check: if no opener, it can't be a popup
  434.       if (!window.content.opener)
  435.         return;
  436.       try {
  437.         var show = false;
  438.         // is it a popup window?
  439.         const CI = Components.interfaces;
  440.         var xulwin = window
  441.                     .QueryInterface(CI.nsIInterfaceRequestor)
  442.                     .getInterface(CI.nsIWebNavigation)
  443.                     .QueryInterface(CI.nsIDocShellTreeItem)
  444.                     .treeOwner
  445.                     .QueryInterface(CI.nsIInterfaceRequestor)
  446.                     .getInterface(CI.nsIXULWindow);
  447.         if (xulwin.contextFlags &
  448.             CI.nsIWindowCreator2.PARENT_IS_LOADING_OR_RUNNING_TIMEOUT) {
  449.           // do the pref settings allow site-by-site popup management?
  450.           const PB = Components.classes["@mozilla.org/preferences-service;1"]
  451.                      .getService(CI.nsIPrefBranch);
  452.           show = !PB.getBoolPref("dom.disable_open_during_load");
  453.         }
  454.         if (show) {
  455.           // initialize popupURL
  456.           const IOS = Components.classes["@mozilla.org/network/io-service;1"]
  457.                       .getService(CI.nsIIOService);
  458.           var spec = Components.lookupMethod(window.content.opener, "location")
  459.                      .call();
  460.           this.popupURL = IOS.newURI(spec, null, null);
  461.  
  462.           // but cancel if it's an unsuitable URL
  463.           const PM = Components.classes["@mozilla.org/PopupWindowManager;1"]
  464.                      .getService(CI.nsIPopupWindowManager);
  465.           if (!PM.testSuitability(this.popupURL))
  466.             this.popupURL = null;
  467.         }
  468.       } catch(e) {
  469.       }
  470.     },
  471.     // Returns the computed style attribute for the given element.
  472.     getComputedStyle: function( elem, prop ) {
  473.          return elem.ownerDocument.defaultView.getComputedStyle( elem, '' ).getPropertyValue( prop );
  474.     },
  475.     // Returns a "url"-type computed style attribute value, with the url() stripped.
  476.     getComputedURL: function( elem, prop ) {
  477.          var url = elem.ownerDocument.defaultView.getComputedStyle( elem, '' ).getPropertyCSSValue( prop );
  478.          return ( url.primitiveType == CSSPrimitiveValue.CSS_URI ) ? url.getStringValue() : null;
  479.     },
  480.     // Returns true iff clicked on link is saveable.
  481.     isLinkSaveable : function ( link ) {
  482.         // We don't do the Right Thing for news/snews yet, so turn them off
  483.         // until we do.
  484.         return !(this.isLinkType( "mailto:" , link )     ||
  485.                  this.isLinkType( "javascript:" , link ) ||
  486.                  this.isLinkType( "news:", link )        || 
  487.                  this.isLinkType( "snews:", link ) ); 
  488.     },
  489.     // Returns true iff clicked on link is of type given.
  490.     isLinkType : function ( linktype, link ) {        
  491.         try {
  492.             // Test for missing protocol property.
  493.             if ( !link.protocol ) {
  494.                 // We must resort to testing the URL string :-(.
  495.                 var protocol;
  496.                 if ( link.href ) {
  497.                     protocol = link.href.substr( 0, linktype.length );
  498.                 } else {
  499.                     protocol = link.getAttributeNS("http://www.w3.org/1999/xlink","href");
  500.                     if ( protocol ) {
  501.                         protocol = protocol.substr( 0, linktype.length );
  502.                     }
  503.                 }
  504.                 return protocol.toLowerCase() === linktype;        
  505.             } else {
  506.                 // Presume all but javascript: urls are saveable.
  507.                 return link.protocol.toLowerCase() === linktype;
  508.             }
  509.         } catch (e) {
  510.             // something was wrong with the link,
  511.             // so we won't be able to save it anyway
  512.             return false;
  513.         }
  514.     },
  515.     // Block popup windows
  516.     rejectPopupWindows: function(andClose) {
  517.       const PM = Components.classes["@mozilla.org/PopupWindowManager;1"]
  518.                  .getService(Components.interfaces.nsIPopupWindowManager);
  519.       PM.add(this.popupURL, false);
  520.       if (andClose) {
  521.         const OS = Components.classes["@mozilla.org/observer-service;1"]
  522.                    .getService(Components.interfaces.nsIObserverService);
  523.         OS.notifyObservers(window, "popup-perm-close", this.popupURL.spec);
  524.       }
  525.     },
  526.     // Unblock popup windows
  527.     allowPopupWindows: function() {
  528.       const PM = Components.classes["@mozilla.org/PopupWindowManager;1"]
  529.                  .getService(Components.interfaces.nsIPopupWindowManager);
  530.       PM.add(this.popupURL, true);
  531.     },
  532.     // Open linked-to URL in a new window.
  533.     openLink : function () {
  534.         // Determine linked-to URL.
  535.         openNewWindowWith( this.linkURL(), true );
  536.     },
  537.     // Open linked-to URL in a new tab.
  538.     openLinkInTab : function () {
  539.         // Determine linked-to URL.
  540.         openNewTabWith( this.linkURL(), true, false );
  541.     },
  542.     // Open frame in a new tab.
  543.     openFrameInTab : function () {
  544.         // Determine linked-to URL.
  545.         openNewTabWith( this.target.ownerDocument.location.href );
  546.     },
  547.     // Reload clicked-in frame.
  548.     reloadFrame : function () {
  549.         this.target.ownerDocument.location.reload();
  550.     },
  551.     // Open clicked-in frame in its own window.
  552.     openFrame : function () {
  553.         openNewWindowWith( this.target.ownerDocument.location.href );
  554.     },
  555.     // Open clicked-in frame in the same window
  556.     showOnlyThisFrame : function () {
  557.         window.loadURI(this.target.ownerDocument.location.href);
  558.     },
  559.     // View Partial Source
  560.     viewPartialSource : function ( context ) {
  561.         var focusedWindow = document.commandDispatcher.focusedWindow;
  562.         if (focusedWindow == window)
  563.           focusedWindow = _content;
  564.         var docCharset = null;
  565.         if (focusedWindow)
  566.           docCharset = "charset=" + focusedWindow.document.characterSet;
  567.  
  568.         // "View Selection Source" and others such as "View MathML Source"
  569.         // are mutually exclusive, with the precedence given to the selection
  570.         // when there is one
  571.         var reference = null;
  572.         if (context == "selection")
  573.           reference = focusedWindow.__proto__.getSelection.call(focusedWindow);
  574.         else if (context == "mathml")
  575.           reference = this.target;
  576.         else
  577.           throw "not reached";
  578.  
  579.         var docUrl = null; // unused (and play nice for fragments generated via XSLT too)
  580.         window.openDialog("chrome://navigator/content/viewPartialSource.xul",
  581.                           "_blank", "scrollbars,resizable,chrome,dialog=no",
  582.                           docUrl, docCharset, reference, context);
  583.     },
  584.     // Open new "view source" window with the frame's URL.
  585.     viewFrameSource : function () {
  586.         BrowserViewSourceOfDocument(this.target.ownerDocument);
  587.     },
  588.     viewInfo : function () {
  589.         BrowserPageInfo();
  590.     },
  591.     viewFrameInfo : function () {
  592.         BrowserPageInfo(this.target.ownerDocument);
  593.     },
  594.     toggleImageSize : function () {
  595.         _content.document.toggleImageSize();
  596.     },
  597.     // Change current window to the URL of the image.
  598.     viewImage : function () {
  599.         openTopWin( this.imageURL );
  600.     },
  601.     // Change current window to the URL of the background image.
  602.     viewBGImage : function () {
  603.         openTopWin( this.bgImageURL );
  604.     },
  605.     setWallpaper: function() {
  606.       var winhooks = Components.classes[ "@mozilla.org/winhooks;1" ].
  607.                        getService(Components.interfaces.nsIWindowsHooks);
  608.       
  609.       winhooks.setImageAsWallpaper(this.target, false);
  610.     },    
  611.     // Save URL of clicked-on frame.
  612.     saveFrame : function () {
  613.         saveDocument( this.target.ownerDocument );
  614.     },
  615.     // Save URL of clicked-on link.
  616.     saveLink : function () {
  617.         saveURL( this.linkURL(), this.linkText(), null, true );
  618.     },
  619.     // Save URL of clicked-on image.
  620.     saveImage : function () {
  621.         saveURL( this.imageURL, null, "SaveImageTitle", false );
  622.     },
  623.     // Generate email address and put it on clipboard.
  624.     copyEmail : function () {
  625.         // Copy the comma-separated list of email addresses only.
  626.         // There are other ways of embedding email addresses in a mailto:
  627.         // link, but such complex parsing is beyond us.
  628.         var url = this.linkURL();
  629.         var qmark = url.indexOf( "?" );
  630.         var addresses;
  631.         
  632.         if ( qmark > 7 ) {                   // 7 == length of "mailto:"
  633.             addresses = url.substring( 7, qmark );
  634.         } else {
  635.             addresses = url.substr( 7 );
  636.         }
  637.  
  638.         var clipboard = this.getService( "@mozilla.org/widget/clipboardhelper;1",
  639.                                          Components.interfaces.nsIClipboardHelper );
  640.         clipboard.copyString(addresses);
  641.     },    
  642.     addBookmark : function() {
  643.       var docshell = document.getElementById( "content" ).webNavigation;
  644.       BookmarksUtils.addBookmark( docshell.currentURI.spec,
  645.                                   docshell.document.title,
  646.                                   docshell.document.charset,
  647.                                   false );
  648.     },
  649.     addBookmarkForFrame : function() {
  650.       var doc = this.target.ownerDocument;
  651.       var uri = doc.location.href;
  652.       var title = doc.title;
  653.       if ( !title )
  654.         title = uri;
  655.       BookmarksUtils.addBookmark( uri,
  656.                                   title,
  657.                                   doc.charset,
  658.                                   false );
  659.     },
  660.     // Open Metadata window for node
  661.     showMetadata : function () {
  662.         window.openDialog(  "chrome://navigator/content/metadata.xul",
  663.                             "_blank",
  664.                             "scrollbars,resizable,chrome,dialog=no",
  665.                             this.target);
  666.     },
  667.  
  668.     ///////////////
  669.     // Utilities //
  670.     ///////////////
  671.  
  672.     // Create instance of component given contractId and iid (as string).
  673.     createInstance : function ( contractId, iidName ) {
  674.         var iid = Components.interfaces[ iidName ];
  675.         return Components.classes[ contractId ].createInstance( iid );
  676.     },
  677.     // Get service given contractId and iid (as string).
  678.     getService : function ( contractId, iidName ) {
  679.         var iid = Components.interfaces[ iidName ];
  680.         return Components.classes[ contractId ].getService( iid );
  681.     },
  682.     // Show/hide one item (specified via name or the item element itself).
  683.     showItem : function ( itemOrId, show ) {
  684.         var item = itemOrId.constructor == String ? document.getElementById(itemOrId) : itemOrId;
  685.         if (item) 
  686.           item.hidden = !show;
  687.     },
  688.     // Set given attribute of specified context-menu item.  If the
  689.     // value is null, then it removes the attribute (which works
  690.     // nicely for the disabled attribute).
  691.     setItemAttr : function ( id, attr, val ) {
  692.         var elem = document.getElementById( id );
  693.         if ( elem ) {
  694.             if ( val == null ) {
  695.                 // null indicates attr should be removed.
  696.                 elem.removeAttribute( attr );
  697.             } else {
  698.                 // Set attr=val.
  699.                 elem.setAttribute( attr, val );
  700.             }
  701.         }
  702.     },
  703.     // Set context menu attribute according to like attribute of another node
  704.     // (such as a broadcaster).
  705.     setItemAttrFromNode : function ( item_id, attr, other_id ) {
  706.         var elem = document.getElementById( other_id );
  707.         if ( elem && elem.getAttribute( attr ) == "true" ) {
  708.             this.setItemAttr( item_id, attr, "true" );
  709.         } else {
  710.             this.setItemAttr( item_id, attr, null );
  711.         }
  712.     },
  713.     // Temporary workaround for DOM api not yet implemented by XUL nodes.
  714.     cloneNode : function ( item ) {
  715.         // Create another element like the one we're cloning.
  716.         var node = document.createElement( item.tagName );
  717.  
  718.         // Copy attributes from argument item to the new one.
  719.         var attrs = item.attributes;
  720.         for ( var i = 0; i < attrs.length; i++ ) {
  721.             var attr = attrs.item( i );
  722.             node.setAttribute( attr.nodeName, attr.nodeValue );
  723.         }
  724.  
  725.         // Voila!
  726.         return node;
  727.     },
  728.     // Generate fully-qualified URL for clicked-on link.
  729.     linkURL : function () {
  730.         if (this.link.href) {
  731.           return this.link.href;
  732.         }
  733.         var href = this.link.getAttributeNS("http://www.w3.org/1999/xlink","href");
  734.         if (!href || !href.match(/\S/)) {
  735.           throw "Empty href"; // Without this we try to save as the current doc, for example, HTML case also throws if empty
  736.         }
  737.         href = this.makeURLAbsolute(this.link.baseURI,href);
  738.         return href;
  739.     },
  740.     // Get text of link.
  741.     linkText : function () {
  742.         var text = gatherTextUnder( this.link );
  743.         if (!text || !text.match(/\S/)) {
  744.           text = this.link.getAttribute("title");
  745.           if (!text || !text.match(/\S/)) {
  746.             text = this.link.getAttribute("alt");
  747.             if (!text || !text.match(/\S/)) {
  748.               if (this.link.href) {                
  749.                 text = this.link.href;
  750.               } else {
  751.                 text = getAttributeNS("http://www.w3.org/1999/xlink", "href");
  752.                 if (text && text.match(/\S/)) {
  753.                   text = this.makeURLAbsolute(this.link.baseURI, text);
  754.                 }
  755.               }
  756.             }
  757.           }
  758.         }
  759.  
  760.         return text;
  761.     },
  762.  
  763.     //Get selected object and convert it to a string to get
  764.     //selected text.   Only use the first 15 chars.
  765.     isTextSelection : function() {
  766.         var result = false;
  767.         var selection = this.searchSelected();
  768.  
  769.         var bundle = srGetStrBundle("chrome://communicator/locale/contentAreaCommands.properties");
  770.  
  771.         var searchSelectText;
  772.         if (selection != "") {
  773.             searchSelectText = selection.toString();
  774.             if (searchSelectText.length > 15)
  775.                 searchSelectText = searchSelectText.substr(0,15) + "...";
  776.             result = true;
  777.  
  778.           // format "Search for <selection>" string to show in menu
  779.           searchSelectText = bundle.formatStringFromName("searchText",
  780.                                                          [searchSelectText], 1);
  781.           this.setItemAttr("context-searchselect", "label", searchSelectText);
  782.         } 
  783.         return result;
  784.     },
  785.     
  786.     searchSelected : function() {
  787.         var focusedWindow = document.commandDispatcher.focusedWindow;
  788.         var searchStr = focusedWindow.__proto__.getSelection.call(focusedWindow);
  789.         searchStr = searchStr.toString();
  790.         searchStr = searchStr.replace( /^\s+/, "" );
  791.         searchStr = searchStr.replace(/(\n|\r|\t)+/g, " ");
  792.         searchStr = searchStr.replace(/\s+$/,"");
  793.         return searchStr;
  794.     },
  795.     
  796.     // Determine if target <object> is an image.
  797.     objectIsImage : function ( objElem ) {
  798.         var result = false;
  799.         // Get type and data attributes.
  800.         var type = objElem.getAttribute( "type" );
  801.         var data = objElem.getAttribute( "data" );
  802.         // Presume any mime type of the form "image/..." is an image.
  803.         // There must be a data= attribute with an URL, also.
  804.         if ( type.substring( 0, 6 ) == "image/" && data && data != "" ) {
  805.             result = true;
  806.         }
  807.         return result;
  808.     },
  809.     // Extract image URL from <object> tag.
  810.     objectImageURL : function ( objElem ) {
  811.         // Extract url from data= attribute.
  812.         var data = objElem.getAttribute( "data" );
  813.         // Make it absolute.
  814.         return this.makeURLAbsolute( objElem.baseURI, data );
  815.     },
  816.     // Convert relative URL to absolute, using document's <base>.
  817.     makeURLAbsolute : function ( base, url ) {
  818.         // Construct nsIURL.
  819.         var ioService = Components.classes["@mozilla.org/network/io-service;1"]
  820.                       .getService(Components.interfaces.nsIIOService);
  821.         var baseURI  = ioService.newURI(base, null, null);
  822.         
  823.         return ioService.newURI(baseURI.resolve(url), null, null).spec;
  824.     },
  825.     // Parse coords= attribute and return array.
  826.     parseCoords : function ( area ) {
  827.         return [];
  828.     },
  829.     toString : function () {
  830.         return "contextMenu.target     = " + this.target + "\n" +
  831.                "contextMenu.onImage    = " + this.onImage + "\n" +
  832.                "contextMenu.onLink     = " + this.onLink + "\n" +
  833.                "contextMenu.link       = " + this.link + "\n" +
  834.                "contextMenu.inFrame    = " + this.inFrame + "\n" +
  835.                "contextMenu.hasBGImage = " + this.hasBGImage + "\n";
  836.     },
  837.     isTargetATextBox : function ( node )
  838.     {
  839.       if (node.nodeType != Node.ELEMENT_NODE)
  840.         return false;
  841.  
  842.       if (node.localName.toUpperCase() == "INPUT") {
  843.         var attrib = "";
  844.         var type = node.getAttribute("type");
  845.  
  846.         if (type)
  847.           attrib = type.toUpperCase();
  848.  
  849.         return( (attrib != "IMAGE") &&
  850.                 (attrib != "CHECKBOX") &&
  851.                 (attrib != "RADIO") &&
  852.                 (attrib != "SUBMIT") &&
  853.                 (attrib != "RESET") &&
  854.                 (attrib != "HIDDEN") &&
  855.                 (attrib != "RESET") &&
  856.                 (attrib != "BUTTON") );
  857.       } else  {
  858.         return(node.localName.toUpperCase() == "TEXTAREA");
  859.       }
  860.     },
  861.     
  862.     // Determines whether or not the separator with the specified ID should be 
  863.     // shown or not by determining if there are any non-hidden items between it
  864.     // and the previous separator. 
  865.     shouldShowSeparator : function ( aSeparatorID )
  866.     {
  867.       var separator = document.getElementById(aSeparatorID);
  868.       if (separator) {
  869.         var sibling = separator.previousSibling;
  870.         while (sibling && sibling.localName != "menuseparator") {
  871.           if (sibling.getAttribute("hidden") != "true")
  872.             return true;
  873.           sibling = sibling.previousSibling;
  874.         }
  875.       }
  876.       return false;  
  877.     }
  878. };
  879.  
  880. /*************************************************************************
  881.  *
  882.  *   nsDefaultEngine : nsIObserver
  883.  *
  884.  *************************************************************************/
  885. function nsDefaultEngine()
  886. {
  887.     try
  888.     {
  889.         var pb = Components.classes["@mozilla.org/preferences-service;1"].
  890.                    getService(Components.interfaces.nsIPrefBranch);
  891.         var pbi = pb.QueryInterface(
  892.                     Components.interfaces.nsIPrefBranchInternal);
  893.         pbi.addObserver(this.domain, this, false);
  894.  
  895.         // reuse code by explicitly invoking initial |observe| call
  896.         // to initialize the |icon| and |name| member variables
  897.         this.observe(pb, "", this.domain);
  898.     }
  899.     catch (ex)
  900.     {
  901.     }
  902. }
  903.  
  904. nsDefaultEngine.prototype = 
  905. {
  906.     name: "",
  907.     icon: "",
  908.     domain: "browser.search.defaultengine",
  909.  
  910.     // nsIObserver implementation
  911.     observe: function(aPrefBranch, aTopic, aPrefName)
  912.     {
  913.         try
  914.         {
  915.             var rdf = Components.
  916.                         classes["@mozilla.org/rdf/rdf-service;1"].
  917.                         getService(Components.interfaces.nsIRDFService);
  918.             var ds = rdf.GetDataSource("rdf:internetsearch");
  919.             var defaultEngine = aPrefBranch.getCharPref(aPrefName);
  920.             var res = rdf.GetResource(defaultEngine);
  921.  
  922.             // get engine ``pretty'' name
  923.             const kNC_Name = rdf.GetResource(
  924.                                "http://home.netscape.com/NC-rdf#Name");
  925.             var engineName = ds.GetTarget(res, kNC_Name, true);
  926.             if (engineName)
  927.             {
  928.                 this.name = engineName.QueryInterface(
  929.                               Components.interfaces.nsIRDFLiteral).Value;
  930.             }
  931.  
  932.             // get URL to engine vendor icon
  933.             const kNC_Icon = rdf.GetResource(
  934.                                "http://home.netscape.com/NC-rdf#Icon");
  935.             var iconURL = ds.GetTarget(res, kNC_Icon, true);
  936.             if (iconURL)
  937.             {
  938.                 this.icon = iconURL.QueryInterface(
  939.                   Components.interfaces.nsIRDFLiteral).Value;
  940.             }
  941.         }
  942.         catch (ex)
  943.         {
  944.         }
  945.     }
  946. }
  947.