Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/epf-richtext/org.eclipse.papyrus.infra.widgets.epf.richtext.extension/src/org/eclipse/papyrus/infra/widgets/epf/richtext/extension/ToolbarCommand.java')
-rw-r--r--extraplugins/epf-richtext/org.eclipse.papyrus.infra.widgets.epf.richtext.extension/src/org/eclipse/papyrus/infra/widgets/epf/richtext/extension/ToolbarCommand.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/extraplugins/epf-richtext/org.eclipse.papyrus.infra.widgets.epf.richtext.extension/src/org/eclipse/papyrus/infra/widgets/epf/richtext/extension/ToolbarCommand.java b/extraplugins/epf-richtext/org.eclipse.papyrus.infra.widgets.epf.richtext.extension/src/org/eclipse/papyrus/infra/widgets/epf/richtext/extension/ToolbarCommand.java
new file mode 100644
index 00000000000..9c3a6612809
--- /dev/null
+++ b/extraplugins/epf-richtext/org.eclipse.papyrus.infra.widgets.epf.richtext.extension/src/org/eclipse/papyrus/infra/widgets/epf/richtext/extension/ToolbarCommand.java
@@ -0,0 +1,22 @@
+/*****************************************************************************
+ * Copyright (c) 2013 CEA
+ *
+ *
+ * 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:
+ * Soyatec - Initial API and implementation
+ *
+ *****************************************************************************/
+package org.eclipse.papyrus.infra.widgets.epf.richtext.extension;
+
+/**
+ * the enumeration of actions that can be added into the rich text editor's toolbar
+ *
+ */
+public enum ToolbarCommand {
+ AddImage, AddLine, AddLink, AddOrderedList, AddTable, AddUnorderedList, BlogTag, Bold, RemoveFormat, BackGroundColor, ForeGroundColor, Indent, Italic, JustifyCenter, JustifyFull, JustifyLeft, JustifyRight, Outdent, FontName, FontSize, StrikeThrough, Subscript, Superscript, Underline, FontStyle, Copy, Paste, Cut, TidyActionGroup, SpellChecking, SetupTest
+}

Back to the top