Project

General

Profile

Download (4.6 KB) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
* Copyright (C) 2015 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
package eu.etaxonomy.taxeditor.ui.dialog.deleteConfigurator;
11

    
12
import org.eclipse.jface.dialogs.IDialogConstants;
13
import org.eclipse.jface.dialogs.MessageDialog;
14
import org.eclipse.swt.SWT;
15
import org.eclipse.swt.graphics.Image;
16
import org.eclipse.swt.widgets.Composite;
17
import org.eclipse.swt.widgets.Control;
18
import org.eclipse.swt.widgets.Shell;
19

    
20
import eu.etaxonomy.cdm.api.service.config.DeleteConfiguratorBase;
21
import eu.etaxonomy.cdm.api.service.config.NameDeletionConfigurator;
22
import eu.etaxonomy.cdm.api.service.config.SpecimenDeleteConfigurator;
23
import eu.etaxonomy.cdm.api.service.config.SynonymDeletionConfigurator;
24
import eu.etaxonomy.cdm.api.service.config.TaxonDeletionConfigurator;
25
import eu.etaxonomy.cdm.api.service.config.TaxonNodeDeletionConfigurator;
26

    
27
/**
28
 * Abstract subclass of MessageDialog providing the functionality to configure
29
 * a {@link DeleteConfiguratorBase}
30
 * @author pplitzner
31
 * @date Jan 28, 2015
32
 *
33
 */
34
public class DeleteConfiguratorDialog extends MessageDialog{
35

    
36
    private final DeleteConfiguratorBase configurator;
37

    
38
    public DeleteConfiguratorDialog(DeleteConfiguratorBase configurator, Shell parentShell, String dialogTitle,
39
            Image dialogTitleImage, String dialogMessage, int dialogImageType, String[] dialogButtonLabels, int defaultIndex) {
40
        super(parentShell, dialogTitle, dialogTitleImage, dialogMessage, dialogImageType, dialogButtonLabels, defaultIndex);
41
        this.configurator = configurator;
42
    }
43

    
44
    @Override
45
    protected Control createCustomArea(Composite parent) {
46
        DeleteConfiguratorComposite composite = new DeleteConfiguratorComposite(parent, NONE);
47
        if(configurator instanceof TaxonDeletionConfigurator){
48
            composite.addConfiguratorComposite(new DeleteTaxonConfiguratorComposite((TaxonDeletionConfigurator) configurator, composite.getSectionConfigure(), SWT.NONE));
49
        }else if (configurator instanceof SynonymDeletionConfigurator){
50
            composite.addConfiguratorComposite(new DeleteTaxonBaseConfiguratorComposite((SynonymDeletionConfigurator) configurator, composite.getSectionConfigure(), SWT.NONE));
51
        }else if(configurator instanceof SpecimenDeleteConfigurator){
52
            composite.addConfiguratorComposite(new DeleteSpecimenConfiguratorComposite((SpecimenDeleteConfigurator) configurator, composite.getSectionConfigure(), SWT.NONE));
53
        } else if(configurator instanceof TaxonNodeDeletionConfigurator){
54
            composite.addConfiguratorComposite(new DeleteNodeConfiguratorComposite((TaxonNodeDeletionConfigurator) configurator, composite.getSectionConfigure(), SWT.NONE));
55
        }  else if(configurator instanceof NameDeletionConfigurator){
56
            composite.addConfiguratorComposite(new DeleteNameConfiguratorComposite((NameDeletionConfigurator) configurator, composite.getSectionConfigure(), SWT.NONE));
57
        }
58

    
59
        return composite;
60
    }
61

    
62
    public static boolean openConfirmWithConfigurator(DeleteConfiguratorBase configurator, Shell parent, String title, String message) {
63
        DeleteConfiguratorDialog dialog = new DeleteConfiguratorDialog(configurator, parent, title, getDefaultImage(), message, QUESTION, getButtonLabels(QUESTION), 0);
64
        return dialog.open() == 0;
65
    }
66

    
67
    @Override
68
    protected boolean isResizable() {
69
        return true;
70
    }
71

    
72

    
73
    protected static String[] getButtonLabels(int kind) {
74
        String[] dialogButtonLabels;
75
        switch (kind) {
76
        case ERROR:
77
        case INFORMATION:
78
        case WARNING: {
79
            dialogButtonLabels = new String[] { IDialogConstants.OK_LABEL };
80
            break;
81
        }
82
        case CONFIRM: {
83
            dialogButtonLabels = new String[] { IDialogConstants.OK_LABEL,
84
                    IDialogConstants.CANCEL_LABEL };
85
            break;
86
        }
87
        case QUESTION: {
88
            dialogButtonLabels = new String[] { IDialogConstants.YES_LABEL,
89
                    IDialogConstants.NO_LABEL };
90
            break;
91
        }
92
        case QUESTION_WITH_CANCEL: {
93
            dialogButtonLabels = new String[] { IDialogConstants.YES_LABEL,
94
                    IDialogConstants.NO_LABEL,
95
                    IDialogConstants.CANCEL_LABEL };
96
            break;
97
        }
98
        default: {
99
            throw new IllegalArgumentException(
100
                    "Illegal value for kind in MessageDialog.open()"); //$NON-NLS-1$
101
        }
102
        }
103
        return dialogButtonLabels;
104
    }
105
}
(2-2/7)