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/actions/UnderlineAction.java')
-rw-r--r--extraplugins/epf-richtext/org.eclipse.papyrus.infra.widgets.epf.richtext.extension/src/org/eclipse/papyrus/infra/widgets/epf/richtext/extension/actions/UnderlineAction.java59
1 files changed, 59 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/actions/UnderlineAction.java b/extraplugins/epf-richtext/org.eclipse.papyrus.infra.widgets.epf.richtext.extension/src/org/eclipse/papyrus/infra/widgets/epf/richtext/extension/actions/UnderlineAction.java
new file mode 100644
index 00000000000..a2d81e49e37
--- /dev/null
+++ b/extraplugins/epf-richtext/org.eclipse.papyrus.infra.widgets.epf.richtext.extension/src/org/eclipse/papyrus/infra/widgets/epf/richtext/extension/actions/UnderlineAction.java
@@ -0,0 +1,59 @@
+/*****************************************************************************
+ * 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.actions;
+
+import org.eclipse.epf.richtext.IRichText;
+import org.eclipse.epf.richtext.actions.RichTextAction;
+import org.eclipse.jface.action.IAction;
+import org.eclipse.papyrus.infra.widgets.epf.richtext.extension.RichTextCommand;
+import org.eclipse.papyrus.infra.widgets.epf.richtext.extension.RichTextImages;
+import org.eclipse.papyrus.infra.widgets.epf.richtext.extension.RichTextResources;
+import org.eclipse.swt.SWT;
+import org.eclipse.swt.widgets.Event;
+import org.eclipse.swt.widgets.Listener;
+
+/**
+ * @author Nguyen Viet Hoa
+ *
+ */
+public class UnderlineAction extends RichTextAction {
+
+ /**
+ * Creates a new instance.
+ */
+ public UnderlineAction(final IRichText richText) {
+ super(richText, IAction.AS_CHECK_BOX);
+ setImageDescriptor(RichTextImages.IMG_DESC_UNDERLINE);
+ setDisabledImageDescriptor(RichTextImages.DISABLED_IMG_DESC_UNDERLINE);
+ setToolTipText(RichTextResources.underlineAction_toolTipText);
+ richText.addListener(SWT.SELECTED, new Listener() {
+
+ public void handleEvent(Event event) {
+ setChecked(richText.getSelected().isUnderLine());
+ }
+ });
+ }
+
+ /**
+ * Executes the action.
+ *
+ * @param richText
+ * a rich text control
+ */
+ public void execute(IRichText richText) {
+ if(richText != null) {
+ richText.executeCommand(RichTextCommand.UNDERLINE);
+ }
+ }
+}

Back to the top