JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.1
[ckeditor.git] / _source / plugins / menubutton / plugin.js
1 /*\r
2 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.\r
3 For licensing, see LICENSE.html or http://ckeditor.com/license\r
4 */\r
5 \r
6 CKEDITOR.plugins.add( 'menubutton',\r
7 {\r
8         requires : [ 'button', 'contextmenu' ],\r
9         beforeInit : function( editor )\r
10         {\r
11                 editor.ui.addHandler( CKEDITOR.UI_MENUBUTTON, CKEDITOR.ui.menuButton.handler );\r
12         }\r
13 });\r
14 \r
15 /**\r
16  * Button UI element.\r
17  * @constant\r
18  * @example\r
19  */\r
20 CKEDITOR.UI_MENUBUTTON = 5;\r
21 \r
22 (function()\r
23 {\r
24         var clickFn = function( editor )\r
25         {\r
26                 var _ = this._;\r
27 \r
28                 // Do nothing if this button is disabled.\r
29                 if ( _.state === CKEDITOR.TRISTATE_DISABLED )\r
30                         return;\r
31 \r
32                 _.previousState = _.state;\r
33 \r
34                 // Check if we already have a menu for it, otherwise just create it.\r
35                 var menu = _.menu;\r
36                 if ( !menu )\r
37                 {\r
38                         menu = _.menu = new CKEDITOR.plugins.contextMenu( editor );\r
39 \r
40                         menu.onHide = CKEDITOR.tools.bind( function()\r
41                                 {\r
42                                         this.setState( _.previousState );\r
43                                 },\r
44                                 this );\r
45 \r
46                         // Initialize the menu items at this point.\r
47                         if ( this.onMenu )\r
48                         {\r
49                                 menu.addListener( this.onMenu );\r
50                         }\r
51                 }\r
52 \r
53                 if ( _.on )\r
54                 {\r
55                         menu.hide();\r
56                         return;\r
57                 }\r
58 \r
59                 this.setState( CKEDITOR.TRISTATE_ON );\r
60 \r
61                 menu.show( CKEDITOR.document.getById( this._.id ), 4 );\r
62         };\r
63 \r
64 \r
65         CKEDITOR.ui.menuButton = CKEDITOR.tools.createClass(\r
66         {\r
67                 base : CKEDITOR.ui.button,\r
68 \r
69                 $ : function( definition )\r
70                 {\r
71                         // We don't want the panel definition in this object.\r
72                         var panelDefinition = definition.panel;\r
73                         delete definition.panel;\r
74 \r
75                         this.base( definition );\r
76 \r
77                         this.hasArrow = true;\r
78 \r
79                         this.click = clickFn;\r
80                 },\r
81 \r
82                 statics :\r
83                 {\r
84                         handler :\r
85                         {\r
86                                 create : function( definition )\r
87                                 {\r
88                                         return new CKEDITOR.ui.menuButton( definition );\r
89                                 }\r
90                         }\r
91                 }\r
92         });\r
93 })();\r