FindReplace.js
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:4k
源码类别:

OA系统

开发平台:

Java

  1. /*
  2. Copyright (c) 2004-2006, The Dojo Foundation
  3. All Rights Reserved.
  4. Licensed under the Academic Free License version 2.1 or above OR the
  5. modified BSD license. For more information on Dojo licensing, see:
  6. http://dojotoolkit.org/community/licensing.shtml
  7. */
  8. dojo.provide("dojo.widget.Editor2Plugin.FindReplace");
  9. dojo.require("dojo.widget.Editor2");
  10. dojo.declare("dojo.widget.Editor2Plugin.FindCommand", dojo.widget.Editor2DialogCommand, {SearchOption:{CaseSensitive:4, SearchBackwards:64, WholeWord:2, WrapSearch:128}, find:function (text, option) {
  11. this._editor.focus();
  12. if (window.find) {
  13. this._editor.window.find(text, option & this.SearchOption.CaseSensitive ? true : false, option & this.SearchOption.SearchBackwards ? true : false, option & this.SearchOption.WrapSearch ? true : false, option & this.SearchOption.WholeWord ? true : false);
  14. } else {
  15. if (dojo.body().createTextRange) {
  16. var range = this._editor.document.body.createTextRange();
  17. var found = range.findText(text, (option & this.SearchOption.SearchBackwards) ? 1 : -1, option);
  18. if (found) {
  19. range.scrollIntoView();
  20. range.select();
  21. } else {
  22. alert("Can not find " + text + " in the document");
  23. }
  24. } else {
  25. alert("No idea how to search in this browser. Please submit patch if you know.");
  26. }
  27. }
  28. }, getText:function () {
  29. return "Find";
  30. }});
  31. dojo.widget.Editor2Plugin.FindReplace = {getCommand:function (editor, name) {
  32. var name = name.toLowerCase();
  33. var command;
  34. if (name == "find") {
  35. command = new dojo.widget.Editor2Plugin.FindCommand(editor, "find", {contentFile:"dojo.widget.Editor2Plugin.FindReplaceDialog", contentClass:"Editor2FindDialog", title:"Find", width:"350px", height:"150px", modal:false});
  36. } else {
  37. if (name == "replace") {
  38. command = new dojo.widget.Editor2DialogCommand(editor, "replace", {contentFile:"dojo.widget.Editor2Plugin.FindReplaceDialog", contentClass:"Editor2ReplaceDialog", href:dojo.uri.cache.set(dojo.uri.moduleUri("dojo.widget", "templates/Editor2/Dialog/replace.html"), "<table style="white-space: nowrap;">n<tr><td>Find: </td><td> <input type="text" dojoAttachPoint="replace_text" /></td></tr>n<tr><td>Replace with: </td><td> <input type="text" dojoAttachPoint="replace_text" /></td></tr>n<tr><td colspan='2'><table><tr><td><input type="checkbox" dojoType="CheckBox" dojoAttachPoint="replace_option_casesens" id="dojo_replace_option_casesens" />ntt<label for="dojo_replace_option_casesens">Case Sensitive</label></td>nttt<td><input type="checkbox" dojoType="CheckBox" dojoAttachPoint="replace_option_backwards" id="dojo_replace_option_backwards" />ntt<label for="dojo_replace_option_backwards">Search Backwards</label></td></tr></table></td></tr>n<tr><td colspan=2">nt<table><tr>nt<td><button dojoType='Button' dojoAttachEvent='onClick:replace'>Replace</button></td>nt<td><button dojoType='Button' dojoAttachEvent='onClick:replaceAll'>Replace All</button></td>nt<td><button dojoType='Button' dojoAttachEvent='onClick:cancel'>Close</button></td>nt</tr></table>nt</td></tr>n</table>n"), title:"Replace", width:"350px", height:"200px", modal:false});
  39. }
  40. }
  41. return command;
  42. }, getToolbarItem:function (name) {
  43. var name = name.toLowerCase();
  44. var item;
  45. if (name == "replace") {
  46. item = new dojo.widget.Editor2ToolbarButton("Replace");
  47. } else {
  48. if (name == "find") {
  49. item = new dojo.widget.Editor2ToolbarButton("Find");
  50. }
  51. }
  52. return item;
  53. }};
  54. dojo.widget.Editor2Manager.registerHandler(dojo.widget.Editor2Plugin.FindReplace.getCommand);
  55. dojo.widget.Editor2ToolbarItemManager.registerHandler(dojo.widget.Editor2Plugin.FindReplace.getToolbarItem);