JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.0
[ckeditor.git] / _source / plugins / colorbutton / plugin.js
diff --git a/_source/plugins/colorbutton/plugin.js b/_source/plugins/colorbutton/plugin.js
new file mode 100644 (file)
index 0000000..747716e
--- /dev/null
@@ -0,0 +1,202 @@
+/*\r
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.\r
+For licensing, see LICENSE.html or http://ckeditor.com/license\r
+*/\r
+\r
+CKEDITOR.plugins.add( 'colorbutton',\r
+{\r
+       requires : [ 'panelbutton', 'floatpanel', 'styles' ],\r
+\r
+       init : function( editor )\r
+       {\r
+               var config = editor.config,\r
+                       lang = editor.lang.colorButton;\r
+\r
+               var clickFn;\r
+\r
+               if ( !CKEDITOR.env.hc )\r
+               {\r
+                       addButton( 'TextColor', 'fore', lang.textColorTitle );\r
+                       addButton( 'BGColor', 'back', lang.bgColorTitle );\r
+               }\r
+\r
+               function addButton( name, type, title )\r
+               {\r
+                       editor.ui.add( name, CKEDITOR.UI_PANELBUTTON,\r
+                               {\r
+                                       label : title,\r
+                                       title : title,\r
+                                       className : 'cke_button_' + name.toLowerCase(),\r
+                                       modes : { wysiwyg : 1 },\r
+\r
+                                       panel :\r
+                                       {\r
+                                               css : [ CKEDITOR.getUrl( editor.skinPath + 'editor.css' ) ]\r
+                                       },\r
+\r
+                                       onBlock : function( panel, blockName )\r
+                                       {\r
+                                               var block = panel.addBlock( blockName );\r
+                                               block.autoSize = true;\r
+                                               block.element.addClass( 'cke_colorblock' );\r
+                                               block.element.setHtml( renderColors( panel, type ) );\r
+\r
+                                               var keys = block.keys;\r
+                                               keys[ 39 ]      = 'next';                                       // ARROW-RIGHT\r
+                                               keys[ 9 ]       = 'next';                                       // TAB\r
+                                               keys[ 37 ]      = 'prev';                                       // ARROW-LEFT\r
+                                               keys[ CKEDITOR.SHIFT + 9 ]      = 'prev';       // SHIFT + TAB\r
+                                               keys[ 32 ]      = 'click';                                      // SPACE\r
+                                       }\r
+                               });\r
+               }\r
+\r
+\r
+               function renderColors( panel, type )\r
+               {\r
+                       var output = [],\r
+                               colors = config.colorButton_colors.split( ',' );\r
+\r
+                       var clickFn = CKEDITOR.tools.addFunction( function( color, type )\r
+                               {\r
+                                       if ( color == '?' )\r
+                                       {\r
+                                               // TODO : Implement the colors dialog.\r
+                                               // editor.openDialog( '' );\r
+                                               return;\r
+                                       }\r
+\r
+                                       editor.focus();\r
+\r
+                                       panel.hide();\r
+\r
+                                       var style = new CKEDITOR.style( config['colorButton_' + type + 'Style'], color && { color : color } );\r
+\r
+                                       editor.fire( 'saveSnapshot' );\r
+                                       if ( color )\r
+                                               style.apply( editor.document );\r
+                                       else\r
+                                               style.remove( editor.document );\r
+                                       editor.fire( 'saveSnapshot' );\r
+                               });\r
+\r
+                       // Render the "Automatic" button.\r
+                       output.push(\r
+                               '<a class="cke_colorauto" _cke_focus=1 hidefocus=true' +\r
+                                       ' title="', lang.auto, '"' +\r
+                                       ' onclick="CKEDITOR.tools.callFunction(', clickFn, ',null,\'', type, '\');return false;"' +\r
+                                       ' href="javascript:void(\'', lang.auto, '\')">' +\r
+                                       '<table cellspacing=0 cellpadding=0 width="100%">' +\r
+                                               '<tr>' +\r
+                                                       '<td>' +\r
+                                                               '<span class="cke_colorbox" style="background-color:#000"></span>' +\r
+                                                       '</td>' +\r
+                                                       '<td colspan=7 align=center>',\r
+                                                               lang.auto,\r
+                                                       '</td>' +\r
+                                               '</tr>' +\r
+                                       '</table>' +\r
+                               '</a>' +\r
+                               '<table cellspacing=0 cellpadding=0 width="100%">' );\r
+\r
+                       // Render the color boxes.\r
+                       for ( var i = 0 ; i < colors.length ; i++ )\r
+                       {\r
+                               if ( ( i % 8 ) === 0 )\r
+                                       output.push( '</tr><tr>' );\r
+\r
+                               var colorCode = colors[ i ];\r
+                               var colorLabel = editor.lang.colors[ colorCode ] || colorCode;\r
+                               output.push(\r
+                                       '<td>' +\r
+                                               '<a class="cke_colorbox" _cke_focus=1 hidefocus=true' +\r
+                                                       ' title="', colorLabel, '"' +\r
+                                                       ' onclick="CKEDITOR.tools.callFunction(', clickFn, ',\'#', colorCode, '\',\'', type, '\'); return false;"' +\r
+                                                       ' href="javascript:void(\'', colorLabel, '\')">' +\r
+                                                       '<span class="cke_colorbox" style="background-color:#', colorCode, '"></span>' +\r
+                                               '</a>' +\r
+                                       '</td>' );\r
+                       }\r
+\r
+                       // Render the "More Colors" button.\r
+                       if ( config.colorButton_enableMore )\r
+                       {\r
+                               output.push(\r
+                                       '</tr>' +\r
+                                       '<tr>' +\r
+                                               '<td colspan=8 align=center>' +\r
+                                                       '<a class="cke_colormore" _cke_focus=1 hidefocus=true' +\r
+                                                               ' title="', lang.more, '"' +\r
+                                                               ' onclick="CKEDITOR.tools.callFunction(', clickFn, ',\'?\',\'', type, '\');return false;"' +\r
+                                                               ' href="javascript:void(\'', lang.more, '\')">',\r
+                                                               lang.more,\r
+                                                       '</a>' +\r
+                                               '</td>' );      // It is later in the code.\r
+                       }\r
+\r
+                       output.push( '</tr></table>' );\r
+\r
+                       return output.join( '' );\r
+               }\r
+       }\r
+});\r
+\r
+/**\r
+ * Whether to enable the "More Colors..." button in the color selectors.\r
+ * @default false\r
+ * @type Boolean\r
+ * @example\r
+ * config.colorButton_enableMore = false;\r
+ */\r
+CKEDITOR.config.colorButton_enableMore = false;\r
+\r
+/**\r
+ * Defines the colors to be displayed in the color selectors. It's a string\r
+ * containing the hexadecimal notation for HTML colors, without the "#" prefix.\r
+ * @type String\r
+ * @default '000,800000,8B4513,2F4F4F,008080,000080,4B0082,696969,B22222,A52A2A,DAA520,006400,40E0D0,0000CD,800080,808080,F00,FF8C00,FFD700,008000,0FF,00F,EE82EE,A9A9A9,FFA07A,FFA500,FFFF00,00FF00,AFEEEE,ADD8E6,DDA0DD,D3D3D3,FFF0F5,FAEBD7,FFFFE0,F0FFF0,F0FFFF,F0F8FF,E6E6FA,FFF'\r
+ * @example\r
+ * // Brazil colors only.\r
+ * config.colorButton_colors = '00923E,F8C100,28166F';\r
+ */\r
+CKEDITOR.config.colorButton_colors =\r
+       '000,800000,8B4513,2F4F4F,008080,000080,4B0082,696969,' +\r
+       'B22222,A52A2A,DAA520,006400,40E0D0,0000CD,800080,808080,' +\r
+       'F00,FF8C00,FFD700,008000,0FF,00F,EE82EE,A9A9A9,' +\r
+       'FFA07A,FFA500,FFFF00,00FF00,AFEEEE,ADD8E6,DDA0DD,D3D3D3,' +\r
+       'FFF0F5,FAEBD7,FFFFE0,F0FFF0,F0FFFF,F0F8FF,E6E6FA,FFF';\r
+\r
+/**\r
+ * Holds the style definition to be used to apply the text foreground color.\r
+ * @type Object\r
+ * @example\r
+ * // This is basically the default setting value.\r
+ * config.colorButton_foreStyle =\r
+ *     {\r
+ *         element : 'span',\r
+ *         styles : { 'color' : '#(color)' }\r
+ *     };\r
+ */\r
+CKEDITOR.config.colorButton_foreStyle =\r
+       {\r
+               element         : 'span',\r
+               styles          : { 'color' : '#(color)' },\r
+               overrides       : [ { element : 'font', attributes : { 'color' : null } } ]\r
+       };\r
+\r
+/**\r
+ * Holds the style definition to be used to apply the text background color.\r
+ * @type Object\r
+ * @example\r
+ * // This is basically the default setting value.\r
+ * config.colorButton_backStyle =\r
+ *     {\r
+ *         element : 'span',\r
+ *         styles : { 'background-color' : '#(color)' }\r
+ *     };\r
+ */\r
+CKEDITOR.config.colorButton_backStyle =\r
+       {\r
+               element         : 'span',\r
+               styles          : { 'background-color' : '#(color)' }\r
+       };\r