Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d94b1ac54deb7c0aacb1b06cb2a1fa2a80f24bb3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*******************************************************************************
 * Copyright (c) 2009 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
 *******************************************************************************/
//------------------------------------------------------------------------------
// Copyright (c) 2005, 2007 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 implementation
//------------------------------------------------------------------------------
package org.eclipse.epf.richtext.actions;

import java.util.ArrayList;
import java.util.Collection;

import org.eclipse.epf.richtext.IRichText;
import org.eclipse.epf.richtext.RichTextCommand;
import org.eclipse.epf.richtext.Messages;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Listener;

/**
 * Sets the font size for the selected text in a rich text control.
 * 
 * @author Kelvin Low
 * @author Jeff Hardy
 * @since 1.0
 */
public class FontSizeAction extends RichTextComboAction {

	/**
	 * Creates a new instance.
	 */
	public FontSizeAction(final IRichText richText) {
		super(richText);
		setToolTipText(Messages.fontSizeAction_toolTipText);
		input = new ArrayList<String>();

		input.add("Default"); //$NON-NLS-1$
		input.add("1"); //$NON-NLS-1$
		input.add("2"); //$NON-NLS-1$
		input.add("3"); //$NON-NLS-1$
		input.add("4"); //$NON-NLS-1$
		input.add("5"); //$NON-NLS-1$
		input.add("6"); //$NON-NLS-1$
		input.add("7"); //$NON-NLS-1$		
		// add listener
		richText.addListener(SWT.SELECTED, new Listener() {
			public void handleEvent(Event event) {
				// mozilla returns "default" if no size is applied
				// IE returns 2 if no size is applied
				String fontSize = richText.getSelected().getFontSize();
				int index = -1;
				if (fontSize.equals("default")) { //$NON-NLS-1$
					index = 0;
				} else {
					try {
						index = Integer.parseInt(fontSize);
					} catch (NumberFormatException e) {
						// leave index at -1 so nothing is selected
					}
				}
				setNotifyListeners(false);
				getCCombo().select(index);
				setNotifyListeners(true);
			}
		});
	}

	/**
	 * Executes the action.
	 * 
	 * @param richText
	 *            a rich text control
	 * @param index
	 *            the index of the selected item
	 */
	public void execute(IRichText richText) {
		if (richText != null) {
			String selected = getCComboSelection();
			if ("Default".equals(selected)) { //$NON-NLS-1$
				richText.executeCommand(RichTextCommand.SET_FONT_SIZE, ""); //$NON-NLS-1$
			} else {
				richText.executeCommand(RichTextCommand.SET_FONT_SIZE,
						selected);
			}
		}
	}

	@Override
	public Collection<String> getInput() {
		return input;
	}

}

Back to the top