File: fckplugin.js

package info (click to toggle)
moin 1.5.3-1.2etch2
  • links: PTS
  • area: main
  • in suites: etch
  • size: 20,692 kB
  • ctags: 26,801
  • sloc: python: 32,907; java: 10,704; perl: 1,424; php: 642; makefile: 172; xml: 162; sh: 121; sed: 5
file content (57 lines) | stat: -rw-r--r-- 1,526 bytes parent folder | download | duplicates (3)
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
/*
 * FCKeditor - The text editor for internet
 * Copyright (C) 2003-2004 Frederico Caldeira Knabben
 * 
 * Licensed under the terms of the GNU Lesser General Public License:
 *   http://www.opensource.org/licenses/lgpl-license.php
 * 
 * For further information visit:
 *   http://www.fckeditor.net/
 * 
 * File Name: fckplugin.js
 *  MoinToolbarFontFormatCombo Class: Handles the Fonts combo selector.
 *   modified version of FCKToolbarFontFormatCombo
 *
 * File Authors:
 *   Frederico Caldeira Knabben (fredck@fckeditor.net)
 *   Florian Festi
 */

var MoinToolbarFontFormatCombo = function()
{
 this.Command =  FCKCommands.GetCommand('FontFormat');
}

// Inherit from MoinToolbarSpecialCombo.
MoinToolbarFontFormatCombo.prototype = new FCKToolbarSpecialCombo;

MoinToolbarFontFormatCombo.prototype.GetLabel = function()
{
 return FCKLang.FontFormat;
}

MoinToolbarFontFormatCombo.prototype.CreateItems = function(targetSpecialCombo)
{
 // Get the format names from the language file.
 var aNames = FCKLang['FontFormats'].split(';');
 var oNames = {
  p  : aNames[0],
  pre  : aNames[1],
  h2  : aNames[3], // h2 as Title 1
  h3  : aNames[4], // and so on
  h4  : aNames[5],
  h5  : aNames[6],
  h6  : aNames[7]
 };

 // Get the available formats from the configuration file.
 var aTags = FCKConfig.FontFormats.split(';');
 
 for (var i in oNames)
 {
  this._Combo.AddItem(i, '<' + i + '>' + oNames[i] + '</' + i + '>', oNames[i]);
 }
}

FCKToolbarItems.RegisterItem( 'MoinFormat', new MoinToolbarFontFormatCombo());