alecpl
2008-05-21 f35f9c53fef2d48cb84a49e12ab46ad1d3fbc539
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/**
 * $Id: editor_plugin_src.js 755 2008-03-29 19:14:42Z spocke $
 *
 * @author Moxiecode
 * @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved.
 */
 
(function() {
    var Event = tinymce.dom.Event, each = tinymce.each, DOM = tinymce.DOM;
 
    tinymce.create('tinymce.plugins.ContextMenu', {
        init : function(ed) {
            var t = this;
 
            t.editor = ed;
            t.onContextMenu = new tinymce.util.Dispatcher(this);
 
            ed.onContextMenu.add(function(ed, e) {
                if (!e.ctrlKey) {
                    t._getMenu(ed).showMenu(e.clientX, e.clientY);
                    Event.add(document, 'click', hide);
                    Event.cancel(e);
                }
            });
 
            function hide() {
                if (t._menu) {
                    t._menu.removeAll();
                    t._menu.destroy();
                    Event.remove(document, 'click', hide);
                }
            };
 
            ed.onMouseDown.add(hide);
            ed.onKeyDown.add(hide);
        },
 
        getInfo : function() {
            return {
                longname : 'Contextmenu',
                author : 'Moxiecode Systems AB',
                authorurl : 'http://tinymce.moxiecode.com',
                infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/contextmenu',
                version : tinymce.majorVersion + "." + tinymce.minorVersion
            };
        },
 
        _getMenu : function(ed) {
            var t = this, m = t._menu, se = ed.selection, col = se.isCollapsed(), el = se.getNode() || ed.getBody(), am, p1, p2;
 
            if (m) {
                m.removeAll();
                m.destroy();
            }
 
            p1 = DOM.getPos(ed.getContentAreaContainer());
            p2 = DOM.getPos(ed.getContainer());
 
            m = ed.controlManager.createDropMenu('contextmenu', {
                offset_x : p1.x,
                offset_y : p1.y,
/*                vp_offset_x : p2.x,
                vp_offset_y : p2.y,*/
                constrain : 1
            });
 
            t._menu = m;
 
            m.add({title : 'advanced.cut_desc', icon : 'cut', cmd : 'Cut'}).setDisabled(col);
            m.add({title : 'advanced.copy_desc', icon : 'copy', cmd : 'Copy'}).setDisabled(col);
            m.add({title : 'advanced.paste_desc', icon : 'paste', cmd : 'Paste'});
 
            if ((el.nodeName == 'A' && !ed.dom.getAttrib(el, 'name')) || !col) {
                m.addSeparator();
                m.add({title : 'advanced.link_desc', icon : 'link', cmd : ed.plugins.advlink ? 'mceAdvLink' : 'mceLink', ui : true});
                m.add({title : 'advanced.unlink_desc', icon : 'unlink', cmd : 'UnLink'});
            }
 
            m.addSeparator();
            m.add({title : 'advanced.image_desc', icon : 'image', cmd : ed.plugins.advimage ? 'mceAdvImage' : 'mceImage', ui : true});
 
            m.addSeparator();
            am = m.addMenu({title : 'contextmenu.align'});
            am.add({title : 'contextmenu.left', icon : 'justifyleft', cmd : 'JustifyLeft'});
            am.add({title : 'contextmenu.center', icon : 'justifycenter', cmd : 'JustifyCenter'});
            am.add({title : 'contextmenu.right', icon : 'justifyright', cmd : 'JustifyRight'});
            am.add({title : 'contextmenu.full', icon : 'justifyfull', cmd : 'JustifyFull'});
 
            t.onContextMenu.dispatch(t, m, el, col);
 
            return m;
        }
    });
 
    // Register plugin
    tinymce.PluginManager.add('contextmenu', tinymce.plugins.ContextMenu);
})();