View Javadoc
1   package org.argeo.cms.ui.widgets;
2   
3   /** Styles references in the CSS. */
4   public interface TextStyles {
5   	/** The whole page area */
6   	public final static String TEXT_AREA = "text_area";
7   	/** Area providing controls for editing text */
8   	public final static String TEXT_EDITOR_HEADER = "text_editor_header";
9   	/** The styled composite for editing the text */
10  	public final static String TEXT_STYLED_COMPOSITE = "text_styled_composite";
11  	/** A section */
12  	public final static String TEXT_SECTION = "text_section";
13  	/** A paragraph */
14  	public final static String TEXT_PARAGRAPH = "text_paragraph";
15  	/** An image */
16  	public final static String TEXT_IMG = "text_img";
17  	/** The dialog to edit styled paragraph */
18  	public final static String TEXT_STYLED_TOOLS_DIALOG = "text_styled_tools_dialog";
19  
20  	/*
21  	 * DEFAULT TEXT STYLES
22  	 */
23  	/** Default style for text body */
24  	public final static String TEXT_DEFAULT = "text_default";
25  	/** Fixed-width, typically code */
26  	public final static String TEXT_PRE = "text_pre";
27  	/** Quote */
28  	public final static String TEXT_QUOTE = "text_quote";
29  	/** Title */
30  	public final static String TEXT_TITLE = "text_title";
31  	/** Header (to be dynamically completed with the depth, e.g. text_h1) */
32  	public final static String TEXT_H = "text_h";
33  
34  	/** Default style for images */
35  	public final static String TEXT_IMAGE = "text_image";
36  
37  }