/******************************************************************************* * Copyright (c) 2005 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.gef.examples.text.actions; public class TextActionConstants { /** * Bold action id. */ public static final String STYLE_BOLD = "org.eclipse.gef.text.bold"; //$NON-NLS-1$ /** * Italic action id. */ public static final String STYLE_ITALIC = "org.eclipse.gef.text.italic"; //$NON-NLS-1$ /** * Underline action id. */ public static final String STYLE_UNDERLINE = "org.eclipse.gef.text.underline"; //$NON-NLS-1$ /** * Font size id. */ public static final String STYLE_FONT_SIZE = "org.eclipse.gef.text.fontsize"; //$NON-NLS-1$ /** * Font family id. */ public static final String STYLE_FONT_NAME = "org.eclipse.gef.text.fontName"; //$NON-NLS-1$ public static final String BLOCK_ALIGN_CENTER = "org.eclipse.gef.text.alignCenter"; //$NON-NLS-1$ public static final String BLOCK_ALIGN_LEFT = "org.eclipse.gef.text.alignLeft"; //$NON-NLS-1$ public static final String BLOCK_ALIGN_RIGHT = "org.eclipse.gef.text.alignRight"; //$NON-NLS-1$ public static final String BLOCK_RTL = "org.eclipse.gef.text.rtl"; //$NON-NLS-1$ public static final String BLOCK_LTR = "org.eclipse.gef.text.ltr"; //$NON-NLS-1$ }