Project

General

Profile

Download (9.98 KB) Statistics
| Branch: | Tag: | Revision:
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.ui.section.classification;
12

    
13
import org.apache.commons.lang.StringUtils;
14
import org.eclipse.swt.widgets.Text;
15

    
16
import eu.etaxonomy.cdm.common.CdmUtils;
17
import eu.etaxonomy.cdm.hibernate.HibernateProxyHelper;
18
import eu.etaxonomy.cdm.model.name.NonViralName;
19
import eu.etaxonomy.cdm.model.name.TaxonNameBase;
20
import eu.etaxonomy.cdm.model.reference.Reference;
21
import eu.etaxonomy.cdm.model.taxon.Classification;
22
import eu.etaxonomy.cdm.model.taxon.ITaxonTreeNode;
23
import eu.etaxonomy.cdm.model.taxon.Taxon;
24
import eu.etaxonomy.cdm.model.taxon.TaxonNode;
25
import eu.etaxonomy.taxeditor.parser.ParseHandler;
26
import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
27
import eu.etaxonomy.taxeditor.ui.element.CheckboxElement;
28
import eu.etaxonomy.taxeditor.ui.element.ICdmFormElement;
29
import eu.etaxonomy.taxeditor.ui.element.TextWithLabelElement;
30
import eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailElement;
31
import eu.etaxonomy.taxeditor.ui.selection.EntitySelectionElement;
32
import eu.etaxonomy.taxeditor.ui.selection.TaxonNodeSelectionElement;
33

    
34
/**
35
 * <p>
36
 * TaxonNodeDetailElement class.
37
 * </p>
38
 *
39
 * @author n.hoffmann
40
 * @created Sep 27, 2010
41
 * @version 1.0
42
 */
43
public class TaxonNodeDetailElement extends AbstractCdmDetailElement<ITaxonTreeNode> {
44

    
45
	private EntitySelectionElement<Classification> selection_classification;
46

    
47
	private Classification classification;
48

    
49
	private TaxonNodeSelectionElement selection_parentTaxonNode;
50

    
51
	private ITaxonTreeNode parentTreeNode;
52

    
53
	private EntitySelectionElement<Taxon> selection_reuseExistingTaxon;
54
	private EntitySelectionElement<Reference> selection_SecRef;
55

    
56
	private Taxon taxon;
57

    
58
	private Reference secReference;
59

    
60
	private TextWithLabelElement textNewTaxonName;
61

    
62
	private CheckboxElement checkbox_openInEditor;
63

    
64
	private boolean openInEditor;
65

    
66
	private boolean complete;
67

    
68
	private EntitySelectionElement<TaxonNameBase> selection_reuseExistingName;
69

    
70
	/**
71
	 * <p>
72
	 * Constructor for TaxonNodeDetailElement.
73
	 * </p>
74
	 *
75
	 * @param formFactory
76
	 *            a {@link eu.etaxonomy.taxeditor.ui.element.CdmFormFactory}
77
	 *            object.
78
	 * @param formElement
79
	 *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
80
	 *            object.
81
	 */
82
	public TaxonNodeDetailElement(CdmFormFactory formFactory,
83
			ICdmFormElement formElement) {
84
		super(formFactory, formElement);
85
	}
86

    
87
	/** {@inheritDoc} */
88
	@Override
89
	protected void createControls(ICdmFormElement formElement,
90
	        ITaxonTreeNode entity, int style) {
91
		selection_classification = formFactory
92
				.createSelectionElement(Classification.class,
93
						getConversationHolder(), formElement, "Classification",
94
						null, EntitySelectionElement.DELETABLE, style);
95
		selection_parentTaxonNode = formFactory
96
				.createTaxonNodeSelectionElement(getConversationHolder(), formElement, "Parent", null,
97
						EntitySelectionElement.DELETABLE, style);
98
		selection_SecRef = formFactory
99
				.createSelectionElement(Reference.class,getConversationHolder(), formElement, "Secundum Reference", null,
100
						EntitySelectionElement.DELETABLE, style);
101
		selection_reuseExistingTaxon = formFactory
102
				.createSelectionElement(Taxon.class,
103
						getConversationHolder(), formElement,
104
						"Reuse existing taxon", null,
105
						EntitySelectionElement.DELETABLE, style);
106

    
107
		selection_reuseExistingName = formFactory
108
				.createSelectionElement(TaxonNameBase.class,
109
						getConversationHolder(), formElement,
110
						"Reuse existing name", null,
111
						EntitySelectionElement.DELETABLE, style);
112

    
113
		textNewTaxonName = formFactory.createTextWithLabelElement(formElement,
114
				"New Taxon", "", style);
115
		textNewTaxonName.setFocus();
116
		preFillParentTaxonName();
117

    
118
		checkbox_openInEditor = formFactory.createCheckbox(formElement,
119
				"Open in Editor", true, style);
120
		setOpenInEditor(true);
121
		setParentTreeNode(entity);
122
	}
123

    
124
	private void preFillParentTaxonName() {
125
        if(getEntity() instanceof TaxonNode){
126
            TaxonNode node = (TaxonNode)getEntity();
127
            if(node.getTaxon()!=null){
128
                Taxon taxon = HibernateProxyHelper.deproxy(node.getTaxon(), Taxon.class);
129
                if(taxon.getName()!=null && taxon.getName().isInstanceOf(NonViralName.class)){
130
                    NonViralName<?> name = HibernateProxyHelper.deproxy(node.getTaxon().getName(), NonViralName.class);
131
                    if( ! name.isSupraGeneric() && name.getRank() != null){
132
                        String taxonName = "";
133
                        if(name.isGenus() || name.isInfraGeneric()|| name.isSpeciesAggregate() ){
134
                            taxonName = name.getGenusOrUninomial();
135
                        }
136
                        else if(name.isSpecies() || name.isInfraSpecific() ){
137
                            taxonName = CdmUtils.concat(" ", name.getGenusOrUninomial(),name.getSpecificEpithet());
138
                        }
139
                        if (StringUtils.isNotBlank(taxonName)){
140
                        	textNewTaxonName.setText(taxonName + " ");
141
                        	if(textNewTaxonName.getMainControl() instanceof Text){
142
                        		Text text = (Text)textNewTaxonName.getMainControl();
143
                        		text.setSelection(textNewTaxonName.getText().length());
144
                        	}
145
                        }
146
                    }
147
                }
148
            }
149
        }
150
    }
151

    
152
	/** {@inheritDoc} */
153
	@Override
154
	public void handleEvent(Object eventSource) {
155
		if (eventSource == selection_classification) {
156
			setClassification(selection_classification.getEntity());
157
		} else if (eventSource == selection_parentTaxonNode) {
158
			setParentTreeNode(selection_parentTaxonNode.getEntity());
159
		} else if (eventSource == selection_SecRef) {
160
			setSecReference(selection_SecRef.getEntity());
161
		} else if (eventSource == selection_reuseExistingTaxon) {
162
				boolean enabled = selection_reuseExistingTaxon.getEntity() == null;
163
				selection_reuseExistingName.setEnabled(enabled);
164
				textNewTaxonName.setEnabled(enabled);
165
				if (!enabled){
166
					setTaxon(selection_reuseExistingTaxon.getEntity());
167
				}
168
				complete = !textNewTaxonName.getText().isEmpty();
169

    
170

    
171
		} else if (eventSource == selection_reuseExistingName) {
172
		    boolean enabled = selection_reuseExistingName.getEntity() == null;
173
			setTaxon(selection_reuseExistingName.getEntity());
174
			selection_reuseExistingTaxon.setEnabled(enabled);
175
			textNewTaxonName.setEnabled(enabled);
176

    
177
			setTaxon(selection_reuseExistingName.getEntity());
178

    
179
			complete = !textNewTaxonName.getText().isEmpty();
180
		} else if (eventSource == textNewTaxonName) {
181
			boolean enabled = CdmUtils.isBlank(textNewTaxonName.getText());
182
			selection_reuseExistingTaxon.setEnabled(enabled);
183
			selection_reuseExistingName.setEnabled(enabled);
184

    
185
			setTaxon(textNewTaxonName.getText());
186
			complete = !textNewTaxonName.getText().isEmpty();
187
		} else if (eventSource == checkbox_openInEditor) {
188
			setOpenInEditor(checkbox_openInEditor.getSelection());
189
		}
190
	}
191

    
192
	/**
193
	 * <p>
194
	 * Getter for the field <code>classification</code>.
195
	 * </p>
196
	 *
197
	 * @return the classification
198
	 */
199
	public Classification getClassification() {
200
		return classification;
201
	}
202

    
203
	public boolean isOpenInEditor() {
204
		return openInEditor;
205
	}
206

    
207
	/**
208
	 * <p>
209
	 * Getter for the field <code>parentTreeNode</code>.
210
	 * </p>
211
	 *
212
	 * @return a {@link eu.etaxonomy.cdm.model.taxon.ITaxonTreeNode} object.
213
	 */
214
	public ITaxonTreeNode getParentTreeNode() {
215
		return parentTreeNode;
216
	}
217

    
218
	/**
219
	 * <p>
220
	 * Getter for the field <code>taxon</code>.
221
	 * </p>
222
	 *
223
	 * @return the taxon
224
	 */
225
	public Taxon getTaxon() {
226
		return taxon;
227
	}
228

    
229
	private void setClassification(Classification classification) {
230
		this.classification = classification;
231
		setParentTreeNode(classification);
232
	}
233

    
234
	private void setParentTreeNode(ITaxonTreeNode parentTreeNode) {
235
		this.parentTreeNode = parentTreeNode;
236

    
237
		if (parentTreeNode instanceof Classification) {
238
			classification = (Classification) parentTreeNode;
239
			selection_classification.setEntity(classification);
240
			selection_parentTaxonNode.setEntity(null);
241
			selection_parentTaxonNode.setClassification(classification);
242
		} else if (parentTreeNode instanceof TaxonNode) {
243
			classification = (Classification) HibernateProxyHelper
244
					.deproxy(((TaxonNode) parentTreeNode).getClassification());
245
			selection_classification.setEntity(classification);
246
			selection_parentTaxonNode.setEntity((TaxonNode) parentTreeNode);
247
			selection_parentTaxonNode.setClassification(classification);
248
		} else if(parentTreeNode == null){
249
			this.parentTreeNode = selection_classification.getEntity();
250
		}
251
	}
252

    
253
	private void setSecReference(Reference secRef){
254
		this.secReference = secRef;
255
		setTaxon(textNewTaxonName.getText());
256
	}
257

    
258
	private void setTaxon(Taxon taxon) {
259
		this.taxon = taxon;
260
		textNewTaxonName.setText(taxon.getName().getTitleCache());
261
		this.secReference = taxon.getSec();
262
	}
263

    
264
	private void setTaxon(String taxonNameString) {
265
		TaxonNameBase taxonName = ParseHandler.parseReferencedName(
266
				taxonNameString, null);
267
		setTaxon(taxonName);
268
	}
269

    
270
	private void setTaxon(TaxonNameBase taxonName) {
271
		Reference secundum = null;
272
		if (getParentTreeNode() != null) {
273
			if (this.secReference != null){
274
				secundum = this.secReference;
275
			} else if (getParentTreeNode() instanceof Classification) {
276
				secundum = ((Classification) getParentTreeNode())
277
						.getReference();
278
			} else if (getParentTreeNode() instanceof TaxonNode) {
279
				secundum = ((TaxonNode) getParentTreeNode()).getTaxon()
280
						.getSec();
281
			}
282
		}
283
		if (taxonName != null){
284
		    taxon = Taxon.NewInstance(taxonName, secundum);
285
		    textNewTaxonName.setText(taxonName.getTitleCache());
286
		} else {
287
		    textNewTaxonName.setText(null);
288
		}
289
	}
290

    
291
	private void setOpenInEditor(boolean openInEditor) {
292
		this.openInEditor = openInEditor;
293
	}
294

    
295
	public TextWithLabelElement getTextNewTaxonName() {
296
        return textNewTaxonName;
297
    }
298

    
299
	public boolean isComplete() {
300
		return complete;
301
	}
302

    
303
}
(4-4/6)