Statistics
| Revision:

root / trunk / applications / appgvSIG / src / com / iver / cit / gvsig / ShowTable.java @ 9212

History | View | Annotate | Download (5.33 KB)

1 2267 fernando
/*
2
 * Created on 02-mar-2004
3
 *
4
 * To change the template for this generated file go to
5
 * Window>Preferences>Java>Code Generation>Code and Comments
6
 */
7
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
8
 *
9
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
10
 *
11
 * This program is free software; you can redistribute it and/or
12
 * modify it under the terms of the GNU General Public License
13
 * as published by the Free Software Foundation; either version 2
14
 * of the License, or (at your option) any later version.
15
 *
16
 * This program is distributed in the hope that it will be useful,
17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19
 * GNU General Public License for more details.
20
 *
21
 * You should have received a copy of the GNU General Public License
22
 * along with this program; if not, write to the Free Software
23
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
24
 *
25
 * For more information, contact:
26
 *
27
 *  Generalitat Valenciana
28
 *   Conselleria d'Infraestructures i Transport
29
 *   Av. Blasco Ib??ez, 50
30
 *   46010 VALENCIA
31
 *   SPAIN
32
 *
33
 *      +34 963862235
34
 *   gvsig@gva.es
35
 *      www.gvsig.gva.es
36
 *
37
 *    or
38
 *
39
 *   IVER T.I. S.A
40
 *   Salamanca 50
41
 *   46005 Valencia
42
 *   Spain
43
 *
44
 *   +34 963163400
45
 *   dac@iver.es
46
 */
47
package com.iver.cit.gvsig;
48
49
import com.iver.andami.PluginServices;
50
import com.iver.andami.messages.NotificationManager;
51
import com.iver.andami.plugins.Extension;
52
import com.iver.cit.gvsig.fmap.DriverException;
53 3960 caballero
import com.iver.cit.gvsig.fmap.edition.EditableAdapter;
54 3940 caballero
import com.iver.cit.gvsig.fmap.edition.VectorialEditableAdapter;
55 2267 fernando
import com.iver.cit.gvsig.fmap.layers.FLayer;
56 3940 caballero
import com.iver.cit.gvsig.fmap.layers.FLyrVect;
57 4843 caballero
import com.iver.cit.gvsig.fmap.layers.ReadableVectorial;
58 2267 fernando
import com.iver.cit.gvsig.fmap.layers.SelectableDataSource;
59
import com.iver.cit.gvsig.fmap.layers.layerOperations.AlphanumericData;
60
import com.iver.cit.gvsig.project.ProjectFactory;
61 7304 caballero
import com.iver.cit.gvsig.project.documents.table.ProjectTable;
62 7343 caballero
import com.iver.cit.gvsig.project.documents.table.ProjectTableFactory;
63 7304 caballero
import com.iver.cit.gvsig.project.documents.table.gui.Table;
64
import com.iver.cit.gvsig.project.documents.view.gui.View;
65 2267 fernando
66
67
/**
68
 * Extensi?n que abre las tablas asociadas a las vistas.
69
 *
70
 * @author Vicente Caballero Navarro
71
 */
72 5005 jorpiell
public class ShowTable extends Extension {
73 2267 fernando
        /**
74 5005 jorpiell
         * @see com.iver.andami.plugins.IExtension#isEnabled()
75 2267 fernando
         */
76
        public boolean isEnabled() {
77 6880 cesar
                View f = (View) PluginServices.getMDIManager().getActiveWindow();
78 2267 fernando
79
                if (f == null) {
80
                        return false;
81
                }
82
83
                FLayer[] selected = f.getModel().getMapContext().getLayers().getActives();
84
85
                boolean algunaTabla = false;
86
87
                for (int i = 0; i < selected.length; i++) {
88 7304 caballero
                        if (selected[i].isAvailable() && selected[i] instanceof AlphanumericData) {
89 2267 fernando
                                AlphanumericData co = (AlphanumericData) selected[i];
90 3940 caballero
91 2267 fernando
                                try {
92
                                        if (co.getRecordset() != null) {
93
                                                algunaTabla = true;
94
                                        }
95
                                } catch (DriverException e) {
96 3435 caballero
                                }catch(NullPointerException e){
97
                                        return false;
98 2267 fernando
                                }
99
                        }
100
                }
101
102
                return algunaTabla;
103
        }
104
105
        /**
106 5005 jorpiell
         * @see com.iver.andami.plugins.IExtension#isVisible()
107 2267 fernando
         */
108
        public boolean isVisible() {
109 6877 cesar
                com.iver.andami.ui.mdiManager.IWindow f = PluginServices.getMDIManager()
110 6880 cesar
                                                                                                                         .getActiveWindow();
111 2267 fernando
112
                if (f == null) {
113
                        return false;
114
                }
115
116 5900 jorpiell
                return (f instanceof View);
117 2267 fernando
        }
118
119
        /**
120 5005 jorpiell
         * @see com.iver.mdiApp.plugins.IExtension#updateUI(java.lang.String)
121 2267 fernando
         */
122
        public void execute(String s) {
123 6880 cesar
                View vista = (View) PluginServices.getMDIManager().getActiveWindow();
124 7304 caballero
                FLayer[] actives = vista.getModel().getMapContext().getLayers()
125 2267 fernando
                                                        .getActives();
126
127
                try {
128
                        for (int i = 0; i < actives.length; i++) {
129
                                if (actives[i] instanceof AlphanumericData) {
130
                                        AlphanumericData co = (AlphanumericData) actives[i];
131
132 3960 caballero
                                        //SelectableDataSource dataSource;
133
                                        //dataSource = co.getRecordset();
134 2267 fernando
135
                                        ProjectExtension ext = (ProjectExtension) PluginServices.getExtension(ProjectExtension.class);
136
137
                                        ProjectTable projectTable = ext.getProject().getTable(co);
138 3960 caballero
                                        EditableAdapter ea=null;
139 4843 caballero
                                        ReadableVectorial rv=((FLyrVect)actives[i]).getSource();
140
                                        if (rv instanceof VectorialEditableAdapter){
141 3960 caballero
                                                ea=(EditableAdapter)((FLyrVect)actives[i]).getSource();
142 3942 caballero
                                        }else{
143 3960 caballero
                                                ea=new EditableAdapter();
144 3963 caballero
                                                SelectableDataSource sds=((FLyrVect)actives[i]).getRecordset();
145 3960 caballero
                                                ea.setOriginalDataSource(sds);
146 3942 caballero
                                        }
147
148 2267 fernando
                                        if (projectTable == null) {
149 5503 cesar
                                                projectTable = ProjectFactory.createTable(PluginServices.getText(this, "Tabla_de_Atributos") + ": " + actives[i].getName(),
150 3960 caballero
                                                                ea);
151 7343 caballero
                                                projectTable.setProjectDocumentFactory(new ProjectTableFactory());
152 2267 fernando
                                                projectTable.setAssociatedTable(co);
153 7304 caballero
                                                ext.getProject().addDocument(projectTable);
154 2267 fernando
                                        }
155 3960 caballero
                                        projectTable.setModel(ea);
156 2267 fernando
                                        Table t = new Table();
157
                                        t.setModel(projectTable);
158 6880 cesar
                                        PluginServices.getMDIManager().addWindow(t);
159 2267 fernando
                                }
160
                        }
161 2565 fernando
                } catch (com.hardcode.gdbms.engine.data.driver.DriverException e) {
162 5258 jmvivo
            NotificationManager.addError(PluginServices.getText(this,"No_se_pudo_obtener_la_tabla_de_la_capa"), e);
163 4455 fjp
        } catch (DriverException e) {
164
                        e.printStackTrace();
165 5258 jmvivo
                        NotificationManager.addError(PluginServices.getText(this,"No_se_pudo_obtener_la_tabla_de_la_capa"), e);
166 4455 fjp
                }
167 2267 fernando
        }
168
169
        /**
170 5005 jorpiell
         * @see com.iver.andami.plugins.IExtension#initialize()
171 2267 fernando
         */
172 5005 jorpiell
        public void initialize() {
173 2267 fernando
        }
174
}