View Javadoc

1   /*
2    * $Id: ITextEditorButtonType.java,v 1.2 2007/06/29 13:58:41 oeuillot Exp $
3    */
4   package org.rcfaces.core.component.capability;
5   
6   /**
7    * 
8    * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
9    * @version $Revision: 1.2 $ $Date: 2007/06/29 13:58:41 $
10   */
11  public interface ITextEditorButtonType {
12      String BOLD = "bold";
13  
14      String COPY = "copy";
15  
16      String CUT = "cut";
17  
18      String DECREASE_FONT_SIZE = "decreasefontsize";
19  
20      String FONT_NAME = "fontname";
21  
22      String FONT_SIZE = "fontsize";
23  
24      String INCREASE_FONT_SIZE = "increasefontsize";
25  
26      String INDENT = "indent";
27  
28      String ITALIC = "italic";
29  
30      String JUSTIFY_CENTER = "justifycenter";
31  
32      String JUSTIFY_FULL = "justifyfull";
33  
34      String JUSTIFY_LEFT = "justifyleft";
35  
36      String JUSTIFY_RIGHT = "justifyright";
37  
38      String ORDEREDLIST = "insertorderedlist";
39  
40      String OUTDENT = "outdent";
41  
42      String PASTE = "paste";
43  
44      String REDO = "redo";
45  
46      String SUB_SCRIPT = "subscript";
47  
48      String SUPER_SCRIPT = "superscript";
49  
50      String STRIKE = "strikethrough";
51  
52      String UNDERLINE = "underline";
53  
54      String UNDO = "undo";
55  
56      String UNORDEREDLIST = "insertunorderedlist";
57  }