Merge branch 'release/4.7.0'
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / dialog / configurator / deleteConfigurator / DeleteConfiguratorDialog.java
1 /**
2 * Copyright (C) 2015 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.ui.dialog.configurator.deleteConfigurator;
10
11 import org.eclipse.jface.dialogs.IDialogConstants;
12 import org.eclipse.jface.dialogs.MessageDialog;
13 import org.eclipse.swt.SWT;
14 import org.eclipse.swt.graphics.Image;
15 import org.eclipse.swt.widgets.Composite;
16 import org.eclipse.swt.widgets.Control;
17 import org.eclipse.swt.widgets.Shell;
18
19 import eu.etaxonomy.cdm.api.service.config.DeleteConfiguratorBase;
20 import eu.etaxonomy.cdm.api.service.config.MediaDeletionConfigurator;
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 import eu.etaxonomy.taxeditor.ui.dialog.configurator.ConfiguratorComposite;
27
28 /**
29 * Abstract subclass of MessageDialog providing the functionality to configure
30 * a {@link DeleteConfiguratorBase}
31 * @author pplitzner
32 * @date Jan 28, 2015
33 *
34 */
35 public class DeleteConfiguratorDialog extends MessageDialog{
36
37 private final DeleteConfiguratorBase configurator;
38 private final boolean fromBulkEditor;
39
40 public DeleteConfiguratorDialog(DeleteConfiguratorBase configurator, Shell parentShell, String dialogTitle,
41 Image dialogTitleImage, String dialogMessage, int dialogImageType, String[] dialogButtonLabels, int defaultIndex, boolean fromBulkEditor) {
42 super(parentShell, dialogTitle, dialogTitleImage, dialogMessage, dialogImageType, dialogButtonLabels, defaultIndex);
43 this.configurator = configurator;
44 this.fromBulkEditor = fromBulkEditor;
45 }
46
47 public DeleteConfiguratorDialog(DeleteConfiguratorBase configurator, Shell parentShell, String dialogTitle,
48 Image dialogTitleImage, String dialogMessage, int dialogImageType, String[] dialogButtonLabels, int defaultIndex) {
49 this(configurator, parentShell, dialogTitle, dialogTitleImage, dialogMessage, dialogImageType, dialogButtonLabels, defaultIndex, false);
50 }
51
52 @Override
53 protected Control createCustomArea(Composite parent) {
54 ConfiguratorComposite composite = new ConfiguratorComposite(parent, NONE);
55 if(configurator instanceof TaxonDeletionConfigurator){
56 composite.addConfiguratorComposite(new DeleteTaxonConfiguratorComposite((TaxonDeletionConfigurator) configurator, composite.getSectionConfigure(), SWT.NONE));
57 }else if (configurator instanceof SynonymDeletionConfigurator){
58 composite.addConfiguratorComposite(new DeleteTaxonBaseConfiguratorComposite((SynonymDeletionConfigurator) configurator, composite.getSectionConfigure(), SWT.NONE));
59 }else if(configurator instanceof SpecimenDeleteConfigurator){
60 composite.addConfiguratorComposite(new DeleteSpecimenConfiguratorComposite((SpecimenDeleteConfigurator) configurator, composite.getSectionConfigure(), SWT.NONE));
61 } else if(configurator instanceof TaxonNodeDeletionConfigurator){
62 composite.addConfiguratorComposite(new DeleteNodeConfiguratorComposite((TaxonNodeDeletionConfigurator) configurator, composite.getSectionConfigure(), SWT.NONE));
63 } else if(configurator instanceof NameDeletionConfigurator){
64 composite.addConfiguratorComposite(new DeleteNameConfiguratorComposite((NameDeletionConfigurator) configurator, composite.getSectionConfigure(), SWT.NONE));
65 } else if(configurator instanceof MediaDeletionConfigurator){
66 composite.addConfiguratorComposite(new DeleteMediaConfiguratorComposite((MediaDeletionConfigurator) configurator, composite.getSectionConfigure(), SWT.NONE, fromBulkEditor));
67 }
68
69
70 return composite;
71 }
72
73 public static boolean openConfirmWithConfigurator(DeleteConfiguratorBase configurator, Shell parent, String title, String message) {
74 DeleteConfiguratorDialog dialog = new DeleteConfiguratorDialog(configurator, parent, title, getDefaultImage(), message, QUESTION, getButtonLabels(QUESTION), 0);
75 return dialog.open() == 0;
76 }
77
78 @Override
79 protected boolean isResizable() {
80 return true;
81 }
82
83
84 protected static String[] getButtonLabels(int kind) {
85 String[] dialogButtonLabels;
86 switch (kind) {
87 case ERROR:
88 case INFORMATION:
89 case WARNING: {
90 dialogButtonLabels = new String[] { IDialogConstants.OK_LABEL };
91 break;
92 }
93 case CONFIRM: {
94 dialogButtonLabels = new String[] { IDialogConstants.OK_LABEL,
95 IDialogConstants.CANCEL_LABEL };
96 break;
97 }
98 case QUESTION: {
99 dialogButtonLabels = new String[] { IDialogConstants.YES_LABEL,
100 IDialogConstants.NO_LABEL };
101 break;
102 }
103 case QUESTION_WITH_CANCEL: {
104 dialogButtonLabels = new String[] { IDialogConstants.YES_LABEL,
105 IDialogConstants.NO_LABEL,
106 IDialogConstants.CANCEL_LABEL };
107 break;
108 }
109 default: {
110 throw new IllegalArgumentException(
111 "Illegal value for kind in MessageDialog.open()"); //$NON-NLS-1$
112 }
113 }
114 return dialogButtonLabels;
115 }
116 }