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

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.ContextMenu");
  9. dojo.require("dojo.widget.Menu2");
  10. dojo.event.topic.subscribe("dojo.widget.Editor2::onLoad", function (editor) {
  11. dojo.widget.Editor2Plugin.ContextMenuManager.getContextMenu(editor);
  12. });
  13. dojo.widget.Editor2Plugin.ContextMenuManager = {menuGroups:["Generic", "Link", "Anchor", "Image", "List", "Table"], _contextMenuGroupSets:{}, _registeredGroups:{}, _menus:{}, registerGroup:function (name, handler) {
  14. if (this._registeredGroups[name]) {
  15. alert("dojo.widget.Editor2Plugin.ContextMenuManager.registerGroup: menu group " + name + "is already registered. Ignored.");
  16. return;
  17. }
  18. this._registeredGroups[name] = handler;
  19. }, removeGroup:function (name) {
  20. delete this._registeredGroups[name];
  21. }, getGroup:function (name, contextmenuplugin) {
  22. if (this._registeredGroups[name]) {
  23. var item = this._registeredGroups[name](name, contextmenuplugin);
  24. if (item) {
  25. return item;
  26. }
  27. }
  28. switch (name) {
  29.   case "Generic":
  30.   case "Link":
  31.   case "Image":
  32. return new dojo.widget.Editor2Plugin[name + "ContextMenuGroup"](contextmenuplugin);
  33.   case "Anchor":
  34.   case "List":
  35. }
  36. }, registerGroupSet:function (name, set) {
  37. this._contextMenuGroupSets[name] = set;
  38. }, removeGroupSet:function (name) {
  39. var set = this._contextMenuGroupSets[name];
  40. delete this._contextMenuGroupSets[name];
  41. return set;
  42. }, getContextMenu:function (editor) {
  43. var set = editor.contextMenuGroupSet || "defaultDojoEditor2MenuGroupSet";
  44. if (this._menus[set]) {
  45. this._menus[set].bindEditor(editor);
  46. return this._menus[set];
  47. }
  48. var gs = (editor.contextMenuGroupSet && this._contextMenuGroupSets[editor.contextMenuGroupSet]) || this.menuGroups;
  49. var menu = new dojo.widget.Editor2Plugin.ContextMenu(editor, gs);
  50. this._menus[set] = menu;
  51. return menu;
  52. }};
  53. dojo.declare("dojo.widget.Editor2Plugin.ContextMenu", null, function (editor, gs) {
  54. this.groups = [];
  55. this.separators = [];
  56. this.editor = editor;
  57. this.editor.registerLoadedPlugin(this);
  58. this.contextMenu = dojo.widget.createWidget("PopupMenu2", {});
  59. dojo.body().appendChild(this.contextMenu.domNode);
  60. this.bindEditor(this.editor);
  61. dojo.event.connect(this.contextMenu, "aboutToShow", this, "aboutToShow");
  62. dojo.event.connect(this.editor, "destroy", this, "destroy");
  63. this.setup(gs);
  64. }, {bindEditor:function (editor) {
  65. this.contextMenu.bindDomNode(editor.document.body);
  66. }, setup:function (gs) {
  67. for (var i in gs) {
  68. var g = dojo.widget.Editor2Plugin.ContextMenuManager.getGroup(gs[i], this);
  69. if (g) {
  70. this.groups.push(g);
  71. }
  72. }
  73. }, aboutToShow:function () {
  74. var first = true;
  75. for (var i in this.groups) {
  76. if (i > 0 && this.separators.length != this.groups.length - 1) {
  77. this.separators.push(dojo.widget.createWidget("MenuSeparator2", {}));
  78. this.contextMenu.addChild(this.separators[this.separators.length - 1]);
  79. }
  80. if (this.groups[i].refresh()) {
  81. if (i > 0) {
  82. if (first) {
  83. this.separators[i - 1].hide();
  84. } else {
  85. this.separators[i - 1].show();
  86. }
  87. }
  88. if (first) {
  89. first = false;
  90. }
  91. } else {
  92. if (i > 0) {
  93. this.separators[i - 1].hide();
  94. }
  95. }
  96. }
  97. }, destroy:function () {
  98. this.editor.unregisterLoadedPlugin(this);
  99. delete this.groups;
  100. delete this.separators;
  101. this.contextMenu.destroy();
  102. delete this.contextMenu;
  103. }});
  104. dojo.widget.defineWidget("dojo.widget.Editor2ContextMenuItem", dojo.widget.MenuItem2, {command:"", buildRendering:function () {
  105. var curInst = dojo.widget.Editor2Manager.getCurrentInstance();
  106. this.caption = curInst.getCommand(this.command).getText();
  107. dojo.widget.Editor2ContextMenuItem.superclass.buildRendering.apply(this, arguments);
  108. }, onClick:function () {
  109. var curInst = dojo.widget.Editor2Manager.getCurrentInstance();
  110. if (curInst) {
  111. var _command = curInst.getCommand(this.command);
  112. if (_command) {
  113. _command.execute();
  114. }
  115. }
  116. }, refresh:function () {
  117. var curInst = dojo.widget.Editor2Manager.getCurrentInstance();
  118. if (curInst) {
  119. var _command = curInst.getCommand(this.command);
  120. if (_command) {
  121. if (_command.getState() == dojo.widget.Editor2Manager.commandState.Disabled) {
  122. this.disable();
  123. return false;
  124. } else {
  125. this.enable();
  126. return true;
  127. }
  128. }
  129. }
  130. }, hide:function () {
  131. this.domNode.style.display = "none";
  132. }, show:function () {
  133. this.domNode.style.display = "";
  134. }});
  135. dojo.declare("dojo.widget.Editor2Plugin.SimpleContextMenuGroup", null, function (contextmenuplugin) {
  136. this.contextMenu = contextmenuplugin.contextMenu;
  137. this.items = [];
  138. dojo.event.connect(contextmenuplugin, "destroy", this, "destroy");
  139. }, {refresh:function () {
  140. if (!this.items.length) {
  141. this.createItems();
  142. for (var i in this.items) {
  143. this.contextMenu.addChild(this.items[i]);
  144. }
  145. }
  146. return this.checkVisibility();
  147. }, destroy:function () {
  148. this.contextmenu = null;
  149. delete this.items;
  150. delete this.contextMenu;
  151. }, createItems:function () {
  152. }, checkVisibility:function () {
  153. var show = false;
  154. for (var i in this.items) {
  155. show = show || this.items[i].refresh();
  156. }
  157. var action = show ? "show" : "hide";
  158. for (var i in this.items) {
  159. this.items[i][action]();
  160. }
  161. return show;
  162. }});
  163. dojo.declare("dojo.widget.Editor2Plugin.GenericContextMenuGroup", dojo.widget.Editor2Plugin.SimpleContextMenuGroup, {createItems:function () {
  164. this.items.push(dojo.widget.createWidget("Editor2ContextMenuItem", {command:"cut", iconClass:"dojoE2TBIcon dojoE2TBIcon_Cut"}));
  165. this.items.push(dojo.widget.createWidget("Editor2ContextMenuItem", {command:"copy", iconClass:"dojoE2TBIcon dojoE2TBIcon_Copy"}));
  166. this.items.push(dojo.widget.createWidget("Editor2ContextMenuItem", {command:"paste", iconClass:"dojoE2TBIcon dojoE2TBIcon_Paste"}));
  167. }});
  168. dojo.declare("dojo.widget.Editor2Plugin.LinkContextMenuGroup", dojo.widget.Editor2Plugin.SimpleContextMenuGroup, {createItems:function () {
  169. this.items.push(dojo.widget.createWidget("Editor2ContextMenuItem", {command:"createlink", iconClass:"dojoE2TBIcon dojoE2TBIcon_Link"}));
  170. this.items.push(dojo.widget.createWidget("Editor2ContextMenuItem", {command:"unlink", iconClass:"dojoE2TBIcon dojoE2TBIcon_UnLink"}));
  171. }, checkVisibility:function () {
  172. var show = this.items[1].refresh();
  173. if (show) {
  174. this.items[0].refresh();
  175. for (var i in this.items) {
  176. this.items[i].show();
  177. }
  178. } else {
  179. for (var i in this.items) {
  180. this.items[i].hide();
  181. }
  182. }
  183. return show;
  184. }});
  185. dojo.declare("dojo.widget.Editor2Plugin.ImageContextMenuGroup", dojo.widget.Editor2Plugin.SimpleContextMenuGroup, {createItems:function () {
  186. this.items.push(dojo.widget.createWidget("Editor2ContextMenuItem", {command:"insertimage", iconClass:"dojoE2TBIcon dojoE2TBIcon_Image"}));
  187. }, checkVisibility:function () {
  188. var curInst = dojo.widget.Editor2Manager.getCurrentInstance();
  189. var img = dojo.withGlobal(curInst.window, "getSelectedElement", dojo.html.selection);
  190. if (img && img.tagName.toLowerCase() == "img") {
  191. this.items[0].show();
  192. return true;
  193. } else {
  194. this.items[0].hide();
  195. return false;
  196. }
  197. }});