~mortenoh/+junk/dhis2-detailed-import-export

« back to all changes in this revision

Viewing changes to dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-dataset/src/main/webapp/dhis-web-maintenance-dataset/javascript/FCK/editor/_source/commandclasses/fcktablecommand.js

  • Committer: larshelge at gmail
  • Date: 2009-03-03 16:46:36 UTC
  • Revision ID: larshelge@gmail.com-20090303164636-2sjlrquo7ib1gf7r
Initial check-in

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
 
3
 * Copyright (C) 2003-2007 Frederico Caldeira Knabben
 
4
 *
 
5
 * == BEGIN LICENSE ==
 
6
 *
 
7
 * Licensed under the terms of any of the following licenses at your
 
8
 * choice:
 
9
 *
 
10
 *  - GNU General Public License Version 2 or later (the "GPL")
 
11
 *    http://www.gnu.org/licenses/gpl.html
 
12
 *
 
13
 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
 
14
 *    http://www.gnu.org/licenses/lgpl.html
 
15
 *
 
16
 *  - Mozilla Public License Version 1.1 or later (the "MPL")
 
17
 *    http://www.mozilla.org/MPL/MPL-1.1.html
 
18
 *
 
19
 * == END LICENSE ==
 
20
 *
 
21
 * FCKPastePlainTextCommand Class: represents the
 
22
 * "Paste as Plain Text" command.
 
23
 */
 
24
 
 
25
var FCKTableCommand = function( command )
 
26
{
 
27
        this.Name = command ;
 
28
}
 
29
 
 
30
FCKTableCommand.prototype.Execute = function()
 
31
{
 
32
        FCKUndo.SaveUndoStep() ;
 
33
 
 
34
        switch ( this.Name )
 
35
        {
 
36
                case 'TableInsertRow' :
 
37
                        FCKTableHandler.InsertRow() ;
 
38
                        break ;
 
39
                case 'TableDeleteRows' :
 
40
                        FCKTableHandler.DeleteRows() ;
 
41
                        break ;
 
42
                case 'TableInsertColumn' :
 
43
                        FCKTableHandler.InsertColumn() ;
 
44
                        break ;
 
45
                case 'TableDeleteColumns' :
 
46
                        FCKTableHandler.DeleteColumns() ;
 
47
                        break ;
 
48
                case 'TableInsertCell' :
 
49
                        FCKTableHandler.InsertCell() ;
 
50
                        break ;
 
51
                case 'TableDeleteCells' :
 
52
                        FCKTableHandler.DeleteCells() ;
 
53
                        break ;
 
54
                case 'TableMergeCells' :
 
55
                        FCKTableHandler.MergeCells() ;
 
56
                        break ;
 
57
                case 'TableSplitCell' :
 
58
                        FCKTableHandler.SplitCell() ;
 
59
                        break ;
 
60
                case 'TableDelete' :
 
61
                        FCKTableHandler.DeleteTable() ;
 
62
                        break ;
 
63
                default :
 
64
                        alert( FCKLang.UnknownCommand.replace( /%1/g, this.Name ) ) ;
 
65
        }
 
66
}
 
67
 
 
68
FCKTableCommand.prototype.GetState = function()
 
69
{
 
70
        return FCK_TRISTATE_OFF ;
 
71
}
 
 
b'\\ No newline at end of file'