Project

General

Profile

Download (2.41 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
package eu.etaxonomy.taxeditor.preference.menu;
10

    
11
import org.eclipse.swt.SWT;
12
import org.eclipse.swt.events.SelectionAdapter;
13
import org.eclipse.swt.events.SelectionEvent;
14
import org.eclipse.swt.widgets.Button;
15
import org.eclipse.swt.widgets.Composite;
16
import org.eclipse.ui.IWorkbenchPreferencePage;
17

    
18
import eu.etaxonomy.cdm.model.common.TermType;
19
import eu.etaxonomy.cdm.model.name.Rank;
20
import eu.etaxonomy.taxeditor.preference.PreferencesUtil;
21

    
22
/**
23
 * Allows the user to choose which <code>Rank</code>s to display in the
24
 * <code>PropertySheet</code> drop-down menu for <code>TaxonNameBase</code>.
25
 *
26
 * @author p.ciardelli
27
 * @author n.hoffmann
28
 * @created 17.09.2008
29
 * @version 1.0
30
 */
31
public class RankMenuPreferences extends AbstractMenuPreferences<Rank> implements
32
		IWorkbenchPreferencePage {
33

    
34
	/** Constant <code>PLUGIN_ID="eu.etaxonomy.taxeditor.preferences.rank"{trunked}</code> */
35
	public static final String PLUGIN_ID = "eu.etaxonomy.taxeditor.preferences.ranks";
36

    
37
	/**
38
	 * <p>Constructor for RankMenuPreferences.</p>
39
	 */
40
	public RankMenuPreferences() {
41
		super("Rank Preferences",
42
				"Choose which ranks to display in the property sheet drop-down menu.",
43
				false);
44
	}
45

    
46
	/* (non-Javadoc)
47
	 * @see eu.etaxonomy.taxeditor.preference.menu.AbstractMenuPreferences#createAdditionalContent(org.eclipse.swt.widgets.Composite)
48
	 */
49
	/** {@inheritDoc} */
50
	@Override
51
	protected void createAdditionalContent(Composite container) {
52

    
53
		final Button checkbox = new Button(container, SWT.CHECK);
54
		checkbox.setText("Sort ranks hierarchically (default is alphabetically)");
55

    
56
		checkbox.setSelection(PreferencesUtil.getSortRanksHierarchichally());
57

    
58
		checkbox.addSelectionListener(new SelectionAdapter() {
59
			/* (non-Javadoc)
60
			 * @see org.eclipse.swt.events.SelectionAdapter#widgetSelected(org.eclipse.swt.events.SelectionEvent)
61
			 */
62
			@Override
63
			public void widgetSelected(SelectionEvent e) {
64

    
65
				PreferencesUtil.setSortRanksHierarchichally(checkbox.getSelection());
66

    
67
			}
68
		});
69

    
70
	}
71

    
72
	/* (non-Javadoc)
73
	 * @see eu.etaxonomy.taxeditor.preference.menu.AbstractMenuPreferences#getTermClass()
74
	 */
75
	/** {@inheritDoc} */
76
	@Override
77
	protected TermType getTermType() {
78
		return TermType.Rank;
79
	}
80

    
81
}
(17-17/20)