/* ****************************************************************************** * Copyright (c) 2006-2012 XMind Ltd. and others. * * This file is a part of XMind 3. XMind releases 3 and * above are dual-licensed under the Eclipse Public License (EPL), * which is available at http://www.eclipse.org/legal/epl-v10.html * and the GNU Lesser General Public License (LGPL), * which is available at http://www.gnu.org/licenses/lgpl.html * See http://www.xmind.net/license.html for details. * * Contributors: * XMind Ltd. - initial API and implementation *******************************************************************************/ package org.xmind.ui.richtext; import org.eclipse.jface.action.Action; import org.eclipse.jface.action.IAction; import org.eclipse.jface.resource.ImageDescriptor; import org.eclipse.jface.viewers.ISelection; import org.xmind.ui.internal.ToolkitImages; /** * * @author Karelun huang */ public class BulletAction extends Action implements IRichTextAction { private IRichTextEditViewer viewer; public BulletAction(IRichTextEditViewer viewer) { this(viewer, RichTextMessages.BulletAction_Text, ToolkitImages .get(ToolkitImages.BULLET), RichTextMessages.BulletAction_toolTip); } public BulletAction(IRichTextEditViewer viewer, String text, ImageDescriptor image, String toolTip) { super(text, IAction.AS_CHECK_BOX); this.viewer = viewer; setId(TextActionConstants.BULLET_ID); setImageDescriptor(image); setToolTipText(toolTip); } public void run() { if (viewer == null || viewer.getControl().isDisposed()) return; viewer.getRenderer().bulletSelectionParagraph(isChecked()); } public void selectionChanged(IRichTextEditViewer viewer, ISelection selection) { setChecked(viewer.getRenderer().getBulletSelectionParagraph()); } public void dispose() { viewer = null; } }