Refactoring of selection elements. Additional minor refactoring. Fixed a bug with...
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / section / description / DescriptionElementDetailSection.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.ui.section.description;
12
13 import org.eclipse.jface.action.Action;
14 import org.eclipse.jface.action.ToolBarManager;
15 import org.eclipse.jface.viewers.ISelectionProvider;
16 import org.eclipse.swt.SWT;
17 import org.eclipse.swt.widgets.Control;
18
19 import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
20 import eu.etaxonomy.cdm.model.description.DescriptionElementBase;
21 import eu.etaxonomy.cdm.model.description.TextData;
22 import eu.etaxonomy.taxeditor.store.CdmStore;
23 import eu.etaxonomy.taxeditor.store.StoreUtil;
24 import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
25 import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory.DetailType;
26 import eu.etaxonomy.taxeditor.ui.element.ICdmFormElement;
27 import eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection;
28 import eu.etaxonomy.taxeditor.ui.section.description.operation.ChangeDescriptionElementType;
29
30 /**
31 * <p>DescriptionElementDetailSection class.</p>
32 *
33 * @author n.hoffmann
34 * @created Mar 5, 2010
35 * @version 1.0
36 */
37 public class DescriptionElementDetailSection extends
38 AbstractCdmDetailSection<DescriptionElementBase> {
39
40 /**
41 * <p>Constructor for DescriptionElementDetailSection.</p>
42 *
43 * @param cdmFormFactory a {@link eu.etaxonomy.taxeditor.ui.element.CdmFormFactory} object.
44 * @param conversation a {@link eu.etaxonomy.cdm.api.conversation.ConversationHolder} object.
45 * @param parentElement a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement} object.
46 * @param selectionProvider a {@link org.eclipse.jface.viewers.ISelectionProvider} object.
47 * @param style a int.
48 */
49 public DescriptionElementDetailSection(CdmFormFactory cdmFormFactory, ConversationHolder conversation,
50 ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style) {
51 super(cdmFormFactory, conversation, parentElement, selectionProvider, style);
52 }
53
54
55 protected Control createToolbar() {
56 if(! hasSpecificElement()){
57 return null;
58 }
59
60 ToolBarManager toolBarManager = new ToolBarManager(SWT.FLAT);
61
62 final String destinationString = (getEntity() instanceof TextData) ? "the specific element" : "free text";
63
64 final String label = "Change to " + destinationString;
65
66 Action addAction = new Action("Change Type", Action.AS_PUSH_BUTTON) {
67 /* (non-Javadoc)
68 * @see org.eclipse.jface.action.Action#run()
69 */
70 @Override
71 public void run() {
72 boolean confirmed = StoreUtil.confirmDialog("Confirmation", "Do you really want to change to "
73 + destinationString + "? Current data will be lost.");
74 if (confirmed) {
75 // FIXME
76 ChangeDescriptionElementType operation = new ChangeDescriptionElementType(label,
77 getEntity(), StoreUtil.getDetailsView(), StoreUtil.getUndoContext());
78 StoreUtil.executeOperation(operation);
79 }
80 }
81 };
82 // TODO enable this once a proper icon has been found
83 // addAction.setImageDescriptor(new ImageDescriptor() {
84 //
85 // @Override
86 // public ImageData getImageData() {
87 // return ImageResources.getImage(ImageResources.ADD_ICON).getImageData();
88 // }
89 // });
90 addAction.setToolTipText(label);
91
92 toolBarManager.add(addAction);
93
94 return toolBarManager.createControl(this);
95 }
96
97 /** {@inheritDoc} */
98 @Override
99 public String getHeading() {
100 return "Description Element";
101 }
102
103 /** {@inheritDoc} */
104 @Override
105 protected DetailType getDetailType() {
106 return DetailType.DESCRIPTIONELEMENT;
107 }
108
109 /** {@inheritDoc} */
110 @Override
111 protected void setSectionTitle() {
112 this.setText(getHeading() + ": " + getEntity().getFeature().getLabel(CdmStore.getDefaultLanguage()));
113 setTextClient(createToolbar());
114 }
115
116 private boolean hasSpecificElement(){
117 return getEntity().getFeature().isSupportsCategoricalData()
118 || getEntity().getFeature().isSupportsCommonTaxonName()
119 || getEntity().getFeature().isSupportsDistribution()
120 || getEntity().getFeature().isSupportsIndividualAssociation()
121 || getEntity().getFeature().isSupportsQuantitativeData()
122 || getEntity().getFeature().isSupportsTaxonInteraction();
123 }
124 }