bgneal@45
|
1 /**
|
bgneal@183
|
2 * editor_plugin_src.js
|
bgneal@45
|
3 *
|
bgneal@183
|
4 * Copyright 2009, Moxiecode Systems AB
|
bgneal@183
|
5 * Released under LGPL License.
|
bgneal@183
|
6 *
|
bgneal@183
|
7 * License: http://tinymce.moxiecode.com/license
|
bgneal@183
|
8 * Contributing: http://tinymce.moxiecode.com/contributing
|
bgneal@45
|
9 */
|
bgneal@45
|
10
|
bgneal@45
|
11 (function() {
|
bgneal@45
|
12 var Event = tinymce.dom.Event, each = tinymce.each, DOM = tinymce.DOM;
|
bgneal@45
|
13
|
bgneal@183
|
14 /**
|
bgneal@183
|
15 * This plugin a context menu to TinyMCE editor instances.
|
bgneal@183
|
16 *
|
bgneal@183
|
17 * @class tinymce.plugins.ContextMenu
|
bgneal@183
|
18 */
|
bgneal@45
|
19 tinymce.create('tinymce.plugins.ContextMenu', {
|
bgneal@183
|
20 /**
|
bgneal@183
|
21 * Initializes the plugin, this will be executed after the plugin has been created.
|
bgneal@183
|
22 * This call is done before the editor instance has finished it's initialization so use the onInit event
|
bgneal@183
|
23 * of the editor instance to intercept that event.
|
bgneal@183
|
24 *
|
bgneal@183
|
25 * @method init
|
bgneal@183
|
26 * @param {tinymce.Editor} ed Editor instance that the plugin is initialized in.
|
bgneal@183
|
27 * @param {string} url Absolute URL to where the plugin is located.
|
bgneal@183
|
28 */
|
bgneal@45
|
29 init : function(ed) {
|
bgneal@45
|
30 var t = this;
|
bgneal@45
|
31
|
bgneal@45
|
32 t.editor = ed;
|
bgneal@183
|
33
|
bgneal@183
|
34 /**
|
bgneal@183
|
35 * This event gets fired when the context menu is shown.
|
bgneal@183
|
36 *
|
bgneal@183
|
37 * @event onContextMenu
|
bgneal@183
|
38 * @param {tinymce.plugins.ContextMenu} sender Plugin instance sending the event.
|
bgneal@183
|
39 * @param {tinymce.ui.DropMenu} menu Drop down menu to fill with more items if needed.
|
bgneal@183
|
40 */
|
bgneal@45
|
41 t.onContextMenu = new tinymce.util.Dispatcher(this);
|
bgneal@45
|
42
|
bgneal@45
|
43 ed.onContextMenu.add(function(ed, e) {
|
bgneal@45
|
44 if (!e.ctrlKey) {
|
bgneal@45
|
45 t._getMenu(ed).showMenu(e.clientX, e.clientY);
|
bgneal@45
|
46 Event.add(ed.getDoc(), 'click', hide);
|
bgneal@45
|
47 Event.cancel(e);
|
bgneal@45
|
48 }
|
bgneal@45
|
49 });
|
bgneal@45
|
50
|
bgneal@45
|
51 function hide() {
|
bgneal@45
|
52 if (t._menu) {
|
bgneal@45
|
53 t._menu.removeAll();
|
bgneal@45
|
54 t._menu.destroy();
|
bgneal@45
|
55 Event.remove(ed.getDoc(), 'click', hide);
|
bgneal@45
|
56 }
|
bgneal@45
|
57 };
|
bgneal@45
|
58
|
bgneal@45
|
59 ed.onMouseDown.add(hide);
|
bgneal@45
|
60 ed.onKeyDown.add(hide);
|
bgneal@45
|
61 },
|
bgneal@45
|
62
|
bgneal@183
|
63 /**
|
bgneal@183
|
64 * Returns information about the plugin as a name/value array.
|
bgneal@183
|
65 * The current keys are longname, author, authorurl, infourl and version.
|
bgneal@183
|
66 *
|
bgneal@183
|
67 * @method getInfo
|
bgneal@183
|
68 * @return {Object} Name/value array containing information about the plugin.
|
bgneal@183
|
69 */
|
bgneal@45
|
70 getInfo : function() {
|
bgneal@45
|
71 return {
|
bgneal@45
|
72 longname : 'Contextmenu',
|
bgneal@45
|
73 author : 'Moxiecode Systems AB',
|
bgneal@45
|
74 authorurl : 'http://tinymce.moxiecode.com',
|
bgneal@45
|
75 infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/contextmenu',
|
bgneal@45
|
76 version : tinymce.majorVersion + "." + tinymce.minorVersion
|
bgneal@45
|
77 };
|
bgneal@45
|
78 },
|
bgneal@45
|
79
|
bgneal@45
|
80 _getMenu : function(ed) {
|
bgneal@45
|
81 var t = this, m = t._menu, se = ed.selection, col = se.isCollapsed(), el = se.getNode() || ed.getBody(), am, p1, p2;
|
bgneal@45
|
82
|
bgneal@45
|
83 if (m) {
|
bgneal@45
|
84 m.removeAll();
|
bgneal@45
|
85 m.destroy();
|
bgneal@45
|
86 }
|
bgneal@45
|
87
|
bgneal@45
|
88 p1 = DOM.getPos(ed.getContentAreaContainer());
|
bgneal@45
|
89 p2 = DOM.getPos(ed.getContainer());
|
bgneal@45
|
90
|
bgneal@45
|
91 m = ed.controlManager.createDropMenu('contextmenu', {
|
bgneal@45
|
92 offset_x : p1.x + ed.getParam('contextmenu_offset_x', 0),
|
bgneal@45
|
93 offset_y : p1.y + ed.getParam('contextmenu_offset_y', 0),
|
bgneal@45
|
94 constrain : 1
|
bgneal@45
|
95 });
|
bgneal@45
|
96
|
bgneal@45
|
97 t._menu = m;
|
bgneal@45
|
98
|
bgneal@45
|
99 m.add({title : 'advanced.cut_desc', icon : 'cut', cmd : 'Cut'}).setDisabled(col);
|
bgneal@45
|
100 m.add({title : 'advanced.copy_desc', icon : 'copy', cmd : 'Copy'}).setDisabled(col);
|
bgneal@45
|
101 m.add({title : 'advanced.paste_desc', icon : 'paste', cmd : 'Paste'});
|
bgneal@45
|
102
|
bgneal@45
|
103 if ((el.nodeName == 'A' && !ed.dom.getAttrib(el, 'name')) || !col) {
|
bgneal@45
|
104 m.addSeparator();
|
bgneal@45
|
105 m.add({title : 'advanced.link_desc', icon : 'link', cmd : ed.plugins.advlink ? 'mceAdvLink' : 'mceLink', ui : true});
|
bgneal@45
|
106 m.add({title : 'advanced.unlink_desc', icon : 'unlink', cmd : 'UnLink'});
|
bgneal@45
|
107 }
|
bgneal@45
|
108
|
bgneal@45
|
109 m.addSeparator();
|
bgneal@45
|
110 m.add({title : 'advanced.image_desc', icon : 'image', cmd : ed.plugins.advimage ? 'mceAdvImage' : 'mceImage', ui : true});
|
bgneal@45
|
111
|
bgneal@45
|
112 m.addSeparator();
|
bgneal@45
|
113 am = m.addMenu({title : 'contextmenu.align'});
|
bgneal@45
|
114 am.add({title : 'contextmenu.left', icon : 'justifyleft', cmd : 'JustifyLeft'});
|
bgneal@45
|
115 am.add({title : 'contextmenu.center', icon : 'justifycenter', cmd : 'JustifyCenter'});
|
bgneal@45
|
116 am.add({title : 'contextmenu.right', icon : 'justifyright', cmd : 'JustifyRight'});
|
bgneal@45
|
117 am.add({title : 'contextmenu.full', icon : 'justifyfull', cmd : 'JustifyFull'});
|
bgneal@45
|
118
|
bgneal@45
|
119 t.onContextMenu.dispatch(t, m, el, col);
|
bgneal@45
|
120
|
bgneal@45
|
121 return m;
|
bgneal@45
|
122 }
|
bgneal@45
|
123 });
|
bgneal@45
|
124
|
bgneal@45
|
125 // Register plugin
|
bgneal@45
|
126 tinymce.PluginManager.add('contextmenu', tinymce.plugins.ContextMenu);
|
bgneal@45
|
127 })(); |