Statistics
| Revision:

root / branches / v2_0_0_prep / extensions / org.gvsig.app.document.table.app / org.gvsig.app.document.table.app.mainplugin / src / main / java / org / gvsig / app / extension / ClearSelectionExtension.java @ 38564

History | View | Annotate | Download (3.12 KB)

1 36443 cordinyana
/* gvSIG. Geographic Information System of the Valencian Government
2
 *
3
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
4
 * of the Valencian Government (CIT)
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 */
22
package org.gvsig.app.extension;
23
24 38564 jjdelcerro
import org.gvsig.andami.IconThemeHelper;
25 36443 cordinyana
import org.gvsig.andami.PluginServices;
26
import org.gvsig.andami.messages.NotificationManager;
27
import org.gvsig.andami.plugins.Extension;
28
import org.gvsig.andami.ui.mdiManager.IWindow;
29
import org.gvsig.app.project.documents.table.gui.FeatureTableDocumentPanel;
30
import org.gvsig.fmap.dal.exception.DataException;
31
import org.gvsig.fmap.dal.feature.FeatureSelection;
32
33
/**
34
 * Extensi?n encargada de limpiar la selecci?n.
35
 *
36
 * @author Vicente Caballero Navarro
37
 */
38
public class ClearSelectionExtension extends Extension {
39
40
    public void execute(String s) {
41 38564 jjdelcerro
        if (s.compareTo("selection-clear-table") == 0) {
42 36443 cordinyana
            IWindow activeWindow =
43
                PluginServices.getMDIManager().getActiveWindow();
44
45
            if (isFeatureTableDocumentPanel(activeWindow)) {
46
                try {
47
                    FeatureSelection selection = getSelection(activeWindow);
48
                    selection.deselectAll();
49
                } catch (DataException e) {
50
                    NotificationManager.addError(e);
51
                }
52
            }
53
        }
54
    }
55
56
    public boolean isVisible() {
57
        IWindow activeWindow = PluginServices.getMDIManager().getActiveWindow();
58
        return isFeatureTableDocumentPanel(activeWindow);
59
    }
60
61
    private boolean isFeatureTableDocumentPanel(IWindow activeWindow) {
62
        return activeWindow instanceof FeatureTableDocumentPanel;
63
    }
64
65
    public boolean isEnabled() {
66
        IWindow activeWindow = PluginServices.getMDIManager().getActiveWindow();
67
68
        if (isFeatureTableDocumentPanel(activeWindow)) {
69
            try {
70
                return !getSelection(activeWindow).isEmpty();
71
            } catch (DataException e) {
72
                throw new RuntimeException(
73
                    "Error getting the selection to check if it is empty", e);
74
            }
75
        }
76
77
        return false;
78
    }
79
80
    private FeatureSelection getSelection(IWindow activeWindow)
81
        throws DataException {
82
        return (FeatureSelection) ((FeatureTableDocumentPanel) activeWindow)
83
            .getModel().getStore().getSelection();
84
    }
85
86
    public void initialize() {
87 38564 jjdelcerro
        IconThemeHelper.registerIcon("action", "selection-clear", this);
88 36443 cordinyana
    }
89
90
}