fixes #1358
[taxeditor.git] / taxeditor-store / src / main / java / eu / etaxonomy / taxeditor / io / wizard / NomenclaturalCodeWizardPage.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10
11 package eu.etaxonomy.taxeditor.io.wizard;
12
13 import org.apache.log4j.Logger;
14 import org.eclipse.jface.wizard.WizardPage;
15 import org.eclipse.swt.SWT;
16 import org.eclipse.swt.events.SelectionAdapter;
17 import org.eclipse.swt.events.SelectionEvent;
18 import org.eclipse.swt.layout.FillLayout;
19 import org.eclipse.swt.layout.GridLayout;
20 import org.eclipse.swt.widgets.Button;
21 import org.eclipse.swt.widgets.Composite;
22 import org.eclipse.swt.widgets.Group;
23
24 import eu.etaxonomy.cdm.io.common.IImportConfigurator;
25 import eu.etaxonomy.cdm.model.name.NomenclaturalCode;
26 import eu.etaxonomy.taxeditor.model.NomenclaturalCodeHelper;
27 import eu.etaxonomy.taxeditor.preference.PreferencesUtil;
28
29 /**
30 * @author p.ciardelli
31 * @created 11.09.2009
32 * @version 1.0
33 */
34 public class NomenclaturalCodeWizardPage extends WizardPage {
35
36
37
38 private IImportConfigurator configurator;
39
40 /**
41 *
42 */
43 public NomenclaturalCodeWizardPage() {
44 super("Choose nomenclatural code");
45
46 this.setTitle("Choose nomenclatural code");
47
48 this.setDescription("Choose which code to use for imported names.");
49 }
50
51 /**
52 * @param configurator
53 */
54 public NomenclaturalCodeWizardPage(IImportConfigurator configurator) {
55 this();
56 this.configurator = configurator;
57 }
58
59 private static final Logger logger = Logger
60 .getLogger(NomenclaturalCodeWizardPage.class);
61
62 /* (non-Javadoc)
63 * @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite)
64 */
65 public void createControl(Composite parent) {
66 Composite container = new Composite(parent, SWT.NULL);
67 container.setLayout(new FillLayout());
68
69 final Group group = new Group(container, SWT.NONE);
70 group.setLayout(new GridLayout());
71
72 NomenclaturalCode preferredCode = PreferencesUtil.getPreferredNomenclaturalCode();
73
74 // set preferred code as default
75 configurator.setNomenclaturalCode(preferredCode);
76
77 for (final NomenclaturalCode code : NomenclaturalCodeHelper.getSupportedCodes()) {
78 Button button = new Button(group, SWT.RADIO);
79 button.setText(NomenclaturalCodeHelper.getDescription(code));
80 button.setData(code);
81 button.setSelection(preferredCode.equals(code));
82 button.addSelectionListener(new SelectionAdapter() {
83 public void widgetSelected(SelectionEvent e) {
84 configurator.setNomenclaturalCode((NomenclaturalCode) e.widget.getData());
85 }
86 });
87 }
88
89 setControl(container);
90 }
91 }