Project

General

Profile

Download (5.13 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2014 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
package eu.etaxonomy.taxeditor.preference;
10

    
11
import org.eclipse.jface.preference.BooleanFieldEditor;
12
import org.eclipse.swt.SWT;
13
import org.eclipse.swt.layout.GridData;
14
import org.eclipse.swt.widgets.Label;
15

    
16
import eu.etaxonomy.cdm.api.application.ICdmRepository;
17
import eu.etaxonomy.cdm.api.service.IPreferenceService;
18
import eu.etaxonomy.cdm.model.metadata.CdmPreference;
19
import eu.etaxonomy.cdm.model.metadata.CdmPreference.PrefKey;
20
import eu.etaxonomy.cdm.model.metadata.PreferencePredicate;
21
import eu.etaxonomy.cdm.model.metadata.PreferenceSubject;
22
import eu.etaxonomy.taxeditor.preference.menu.FieldEditorPreferencePageE4;
23
import eu.etaxonomy.taxeditor.store.CdmStore;
24

    
25
/**
26
 * @author pplitzner
27
 * @date 13.02.2014
28
 *
29
 */
30
public class SpecimenOrObservationPreferences extends FieldEditorPreferencePageE4 {
31

    
32
    private static final String LOCAL_SETTINGS_NOT_ALLOWED = "The CDM settings don't allow to set the preferences for the display of specimen and obeservations locally. If you need to make local settings, please ask an administrator.";
33
    private static final String DESCRIPTION = "Set the preferences for the display of specimen and observations.";
34

    
35
    public SpecimenOrObservationPreferences(){
36
        super();
37
        setPreferenceStore(PreferencesUtil.getPreferenceStore());
38
        if (getPreferenceStore().getBoolean(IPreferenceKeys.SHOW_SPECIMEN_ALLOW_OVERRIDE)){
39
            setDescription(DESCRIPTION);
40
        }else{
41
            setDescription(LOCAL_SETTINGS_NOT_ALLOWED);
42
        }
43
    }
44

    
45

    
46
    @Override
47
    public void init() {
48
        super.init();
49
//        setPreferenceStore(PreferencesUtil.getPreferenceStore());
50
        if(!CdmStore.isActive()){
51
            return;
52
        }
53
        ICdmRepository controller = CdmStore.getCurrentApplicationConfiguration();
54
        if (controller != null){
55
            IPreferenceService service = controller.getPreferenceService();
56
            PrefKey keyTaxonAssociation = CdmPreference.NewKey(PreferenceSubject.NewTaxEditorInstance(), PreferencePredicate.ShowTaxonAssociations);
57
            CdmPreference prefTaxonAssociation = service.find(keyTaxonAssociation);
58
            PrefKey keyDeterminationFieldUnit = CdmPreference.NewKey(PreferenceSubject.NewTaxEditorInstance(), PreferencePredicate.DeterminationOnlyForFieldUnits);
59
            CdmPreference prefDeterminationFieldUnit = service.find(keyDeterminationFieldUnit);
60
            PrefKey keyCollectingAreas = CdmPreference.NewKey(PreferenceSubject.NewTaxEditorInstance(), PreferencePredicate.ShowCollectingAreasInGeneralSection);
61
            CdmPreference prefCollectingAreas = service.find(keyCollectingAreas);
62

    
63
            getPreferenceStore().setValue(IPreferenceKeys.SHOW_TAXON_ASSOCIATIONS_ALLOW_OVERRIDE, prefTaxonAssociation == null? true : prefTaxonAssociation.isAllowOverride());
64
            getPreferenceStore().setValue(IPreferenceKeys.DETERMINATIONS_ONLY_FOR_FIELDUNITS_ALLOW_OVERRIDE, prefTaxonAssociation == null? true : prefTaxonAssociation.isAllowOverride());
65
            getPreferenceStore().setValue(IPreferenceKeys.SHOW_COLLECTING_AREAS_IN_GENERAL_SECTION_ALLOW_OVERRIDE, prefTaxonAssociation == null? true : prefTaxonAssociation.isAllowOverride());
66
            getPreferenceStore().setValue(IPreferenceKeys.SHOW_LIFE_FORM_ALLOW_OVERRIDE, prefTaxonAssociation == null? true : prefTaxonAssociation.isAllowOverride());
67
         }
68
        if (getPreferenceStore().getBoolean(IPreferenceKeys.SHOW_TAXON_ASSOCIATIONS_OVERRIDE)) {
69
            setDescription(DESCRIPTION);
70
        }else{
71
            setDescription(LOCAL_SETTINGS_NOT_ALLOWED);
72

    
73
        }
74
    }
75

    
76
    @Override
77
    protected void createFieldEditors() {
78
        if (getPreferenceStore().getBoolean(IPreferenceKeys.SHOW_SPECIMEN_ALLOW_OVERRIDE)) {
79
            addField(new BooleanFieldEditor(IPreferenceKeys.DETERMINATION_ONLY_FOR_FIELD_UNITS,
80
                    "Taxon determination only on FieldUnit level",
81
                    getFieldEditorParent()));
82
            addField(new BooleanFieldEditor(IPreferenceKeys.SHOW_COLLECTING_AREAS_IN_GENERAL_SECTION,
83
                    "Show \"Collecting Areas\" in \"General\" section of details view",
84
                    getFieldEditorParent()));
85
            addField(new BooleanFieldEditor(IPreferenceKeys.SHOW_TAXON_ASSOCIATIONS,
86
                    "Show taxon associations of a specimen in the details view",
87
                    getFieldEditorParent()));
88
            addField(new BooleanFieldEditor(IPreferenceKeys.SHOW_LIFE_FORM,
89
                    "Show life form of a specimen in the details view",
90
                    getFieldEditorParent()));
91
            Label label = new Label(getFieldEditorParent(), SWT.NONE);
92

    
93
            label.setLayoutData(new GridData(SWT.FILL, SWT.TOP, false, false, 1, 1));
94

    
95
            addField(new BooleanFieldEditor(
96
                    IPreferenceKeys.SHOW_SPECIMEN_OVERRIDE,
97
                    "Use local specimen preferences",
98
                    getFieldEditorParent()));
99

    
100

    
101
        }
102

    
103
    }
104

    
105

    
106
}
(22-22/25)