Project

General

Profile

Download (4.31 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.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.singlesource.ui.forms.CdmFormFactoryFacade;
23
import eu.etaxonomy.taxeditor.singlesource.ui.forms.CdmFormFactoryFacade.DetailType;
24
import eu.etaxonomy.taxeditor.store.CdmStore;
25
import eu.etaxonomy.taxeditor.store.StoreUtil;
26
import eu.etaxonomy.taxeditor.ui.forms.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.singlesource.ui.forms.CdmFormFactoryFacade} object.
44
	 * @param conversation a {@link eu.etaxonomy.cdm.api.conversation.ConversationHolder} object.
45
	 * @param parentElement a {@link eu.etaxonomy.taxeditor.ui.forms.ICdmFormElement} object.
46
	 * @param selectionProvider a {@link org.eclipse.jface.viewers.ISelectionProvider} object.
47
	 * @param style a int.
48
	 */
49
	public DescriptionElementDetailSection(CdmFormFactoryFacade 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
		ICdmFormElement parentElement = this.getParentElement();
95
		
96
		
97
		return toolBarManager.createControl(this);
98
	}
99
	
100
	/** {@inheritDoc} */
101
	@Override
102
	public String getHeading() {
103
		return "Description Element";
104
	}
105

    
106
	/** {@inheritDoc} */
107
	@Override
108
	protected DetailType getDetailType() {
109
		return DetailType.DESCRIPTIONELEMENT;
110
	}
111
	
112
	/** {@inheritDoc} */
113
	@Override
114
	protected void setSectionTitle() {
115
		this.setText(getHeading() + ": " + getEntity().getFeature().getLabel(CdmStore.getDefaultLanguage()));
116
		setTextClient(createToolbar());
117
	}
118
	
119
	private boolean hasSpecificElement(){
120
		return  getEntity().getFeature().isSupportsCategoricalData() 
121
				|| getEntity().getFeature().isSupportsCommonTaxonName()
122
				|| getEntity().getFeature().isSupportsDistribution()
123
				|| getEntity().getFeature().isSupportsIndividualAssociation()
124
				|| getEntity().getFeature().isSupportsQuantitativeData()
125
				|| getEntity().getFeature().isSupportsTaxonInteraction();
126
	}
127
}
(6-6/24)