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