home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / phoenix / chrome / toolkit.jar / content / global / finddialog.js < prev    next >
Text File  |  2002-10-10  |  4KB  |  110 lines

  1.  
  2. var dialog;     // Quick access to document/form elements.
  3. var gFindInst;   // nsIWebBrowserFind that we're going to use
  4.  
  5. function initDialogObject()
  6. {
  7.   // Create dialog object and initialize.
  8.   dialog = new Object;
  9.   dialog.findKey         = document.getElementById("dialog.findKey");
  10.   dialog.caseSensitive   = document.getElementById("dialog.caseSensitive");
  11.   dialog.wrap            = document.getElementById("dialog.wrap");
  12.   dialog.find            = document.getElementById("btnFind");
  13.   dialog.up              = document.getElementById("radioUp");
  14.   dialog.down            = document.getElementById("radioDown");
  15.   dialog.rg              = dialog.up.radioGroup;
  16.   dialog.bundle          = null;
  17.  
  18.   // Move dialog to center, if it not been shown before
  19.   var windowElement = document.getElementById("findDialog");
  20.   if (!windowElement.hasAttribute("screenX") || !windowElement.hasAttribute("screenY"))
  21.   {
  22.     sizeToContent();
  23.     moveToAlertPosition();
  24.   }
  25. }
  26.  
  27. function fillDialog()
  28. {
  29.   // get the find service, which stores global find state
  30.   var findService = Components.classes["@mozilla.org/find/find_service;1"]
  31.                          .getService(Components.interfaces.nsIFindService);
  32.   
  33.   // Set initial dialog field contents. Use the gFindInst attributes first,
  34.   // this is necessary for window.find()
  35.   dialog.findKey.value           = gFindInst.searchString ? gFindInst.searchString : findService.searchString;
  36.   dialog.caseSensitive.checked   = gFindInst.matchCase ? gFindInst.matchCase : findService.matchCase;
  37.   dialog.wrap.checked            = gFindInst.wrapFind ? gFindInst.wrapFind : findService.wrapFind;
  38.   var findBackwards              = gFindInst.findBackwards ? gFindInst.findBackwards : findService.findBackwards;
  39.   if (findBackwards)
  40.     dialog.rg.selectedItem = dialog.up;
  41.   else
  42.     dialog.rg.selectedItem = dialog.down;
  43. }
  44.  
  45. function saveFindData()
  46. {
  47.   // get the find service, which stores global find state
  48.   var findService = Components.classes["@mozilla.org/find/find_service;1"]
  49.                          .getService(Components.interfaces.nsIFindService);
  50.  
  51.   // Set data attributes per user input.
  52.   findService.searchString  = dialog.findKey.value;
  53.   findService.matchCase     = dialog.caseSensitive.checked;
  54.   findService.wrapFind      = dialog.wrap.checked;
  55.   findService.findBackwards = dialog.up.selected;
  56. }
  57.  
  58. function onLoad()
  59. {
  60.   initDialogObject();
  61.  
  62.   // get the find instance
  63.   var finder = window.arguments[0];
  64.   // If the dialog was opened from window.find(), findInst will be an
  65.   // nsISupports interface, so QueryInterface anyway to nsIWebBrowserFind.
  66.   gFindInst = finder.QueryInterface(Components.interfaces.nsIWebBrowserFind);
  67.  
  68.   fillDialog();
  69.   doEnabling();
  70.  
  71.   if (dialog.findKey.value)
  72.     dialog.findKey.select();
  73.   dialog.findKey.focus();
  74. }
  75.  
  76. function onUnload()
  77. {
  78.     window.opener.findDialog = 0;
  79. }
  80.  
  81. function onAccept()
  82. {
  83.   // Transfer dialog contents to the find service.
  84.   saveFindData();
  85.  
  86.   // set up the find instance
  87.   gFindInst.searchString  = dialog.findKey.value;
  88.   gFindInst.matchCase     = dialog.caseSensitive.checked;
  89.   gFindInst.wrapFind      = dialog.wrap.checked;
  90.   gFindInst.findBackwards = dialog.up.selected;
  91.   
  92.   // Search.
  93.   var result = gFindInst.findNext();
  94.  
  95.   if (!result)
  96.   {
  97.     if (!dialog.bundle)
  98.       dialog.bundle = document.getElementById("findBundle");
  99.     window.alert(dialog.bundle.getString("notFoundWarning"));
  100.     dialog.findKey.select();
  101.     dialog.findKey.focus();
  102.   } 
  103.   return false;
  104. }
  105.  
  106. function doEnabling()
  107. {
  108.   dialog.find.disabled = !dialog.findKey.value;
  109. }
  110.