Project

General

Profile

Download (5.67 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.name;
12

    
13
import org.eclipse.jface.action.Action;
14
import org.eclipse.jface.action.IAction;
15
import org.eclipse.jface.action.ToolBarManager;
16
import org.eclipse.jface.viewers.ISelectionProvider;
17
import org.eclipse.swt.SWT;
18
import org.eclipse.swt.widgets.Control;
19

    
20
import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
21
import eu.etaxonomy.cdm.api.service.ITaxonNodeService;
22
import eu.etaxonomy.cdm.hibernate.HibernateProxyHelper;
23
import eu.etaxonomy.cdm.model.name.NonViralName;
24
import eu.etaxonomy.cdm.model.name.TaxonNameBase;
25
import eu.etaxonomy.cdm.model.taxon.TaxonBase;
26
import eu.etaxonomy.cdm.model.taxon.TaxonNode;
27
import eu.etaxonomy.taxeditor.model.ImageResources;
28
import eu.etaxonomy.taxeditor.model.MessagingUtils;
29
import eu.etaxonomy.taxeditor.store.CdmStore;
30
import eu.etaxonomy.taxeditor.ui.dialog.selection.NameSelectionDialog;
31
import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
32
import eu.etaxonomy.taxeditor.ui.element.CdmPropertyChangeEvent;
33
import eu.etaxonomy.taxeditor.ui.element.ICdmFormElement;
34
import eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailElement;
35
import eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection;
36
import eu.etaxonomy.taxeditor.ui.section.ITaxonBaseDetailSection;
37

    
38
/**
39
 * @author n.hoffmann
40
 * @created May 20, 2010
41
 * @version 1.0
42
 */
43
public class NonViralNameDetailSection extends AbstractCdmDetailSection<NonViralName>
44
		implements ITaxonBaseDetailSection {
45

    
46
	private TaxonBase taxonBase;
47
	boolean nameChoosable = false;
48

    
49
	/**
50
	 * <p>Constructor for NonViralNameDetailSection.</p>
51
	 *
52
	 * @param formFactory a {@link eu.etaxonomy.taxeditor.ui.element.CdmFormFactory} object.
53
	 * @param conversation a {@link eu.etaxonomy.cdm.api.conversation.ConversationHolder} object.
54
	 * @param parentElement a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement} object.
55
	 * @param selectionProvider a {@link org.eclipse.jface.viewers.ISelectionProvider} object.
56
	 * @param nameChoosable if <code>true</code> adds a button to choose the displayed name
57
	 * @param style a int.
58
	 */
59
	public NonViralNameDetailSection(CdmFormFactory formFactory, ConversationHolder conversation,
60
			ICdmFormElement parentElement, ISelectionProvider selectionProvider, boolean nameChoosable, int style) {
61
		super(formFactory, conversation, parentElement, selectionProvider, style);
62
		this.nameChoosable = nameChoosable;
63
	}
64

    
65
	@Override
66
	protected Control createToolbar() {
67
	        ToolBarManager toolBarManager = new ToolBarManager(SWT.FLAT);
68

    
69
	        if(nameChoosable){
70
	            //choose name
71
	            Action chooseNameAction = new Action("Choose Name", IAction.AS_PUSH_BUTTON){
72
	                @Override
73
	                public void run() {
74
	                    TaxonNameBase taxonName = NameSelectionDialog.select(getShell(), getConversationHolder(), null);
75
	                    if(taxonName!=null){
76
	                        if(taxonName.isInstanceOf(NonViralName.class)){
77
	                            CdmStore.getService(ITaxonNodeService.class).list(TaxonNode.class, null, null, null, null);
78
	                            NonViralName nonViralName = HibernateProxyHelper.deproxy(taxonName, NonViralName.class);
79
	                            taxonBase.setName(nonViralName);
80
	                            //				        taxonBase.getTitleCache();
81
	                            setEntity(nonViralName);
82
	                            firePropertyChangeEvent(NonViralNameDetailSection.this);
83
	                        }
84
	                        else{
85
	                            MessagingUtils.warningDialog("Invalid name", this, "The selected name can not be used for this taxon.");
86
	                        }
87
	                    }
88
	                }
89
	            };
90
	            chooseNameAction.setToolTipText("Choose name for this taxon");
91
	            chooseNameAction.setImageDescriptor(ImageResources.getImageDescriptor(ImageResources.BROWSE_ICON));
92

    
93
	            toolBarManager.add(chooseNameAction);
94
	    }
95

    
96
		//clone
97
		if(getEntity() != null && checkForMultipleNameUsages(getEntity())){
98

    
99
			Action cloneAction = new Action("Clone", IAction.AS_PUSH_BUTTON){
100
			    @Override
101
			    public void run() {
102
					boolean confirm = MessagingUtils.confirmDialog("Confirm cloning", "Do you really want to clone the name?");
103

    
104
					if(confirm){
105
						NonViralName clonedName;
106
						clonedName = (NonViralName) getEntity().clone();
107
						setEntity(clonedName);
108
						taxonBase.setName(clonedName);
109
						taxonBase.generateTitle();
110
						firePropertyChangeEvent(new CdmPropertyChangeEvent(NonViralNameDetailSection.this, null));
111
					}
112

    
113
				};
114
			};
115

    
116
			cloneAction.setToolTipText("Clone the name if you do not want to edit the shared instance");
117

    
118
			toolBarManager.add(cloneAction);
119

    
120
		}
121
		return toolBarManager.createControl(this);
122
	}
123

    
124

    
125
	private boolean checkForMultipleNameUsages(NonViralName nonViralName) {
126
		return nonViralName.getTaxonBases().size() != 1;
127
	}
128

    
129
	/** {@inheritDoc} */
130
	@Override
131
	public String getHeading() {
132
		return "Name";
133
	}
134

    
135
	/** {@inheritDoc} */
136
	@Override
137
    public void setTaxonBase(TaxonBase taxon) {
138
		taxonBase = taxon;
139
		NonViralName name = (NonViralName) HibernateProxyHelper.deproxy(taxon.getName());
140
		setEntity(name);
141
	}
142

    
143
	@Override
144
	public TaxonBase getTaxonBase() {
145
		return taxonBase;
146
	}
147

    
148
	@Override
149
	protected AbstractCdmDetailElement<NonViralName> createCdmDetailElement(AbstractCdmDetailSection<NonViralName> parentElement, int style) {
150
	    return formFactory.createNonViralNameDetailElement(parentElement);
151
	}
152
}
(16-16/25)