Statistics
| Revision:

root / branches / v2_0_0_prep / applications / appgvSIG / src / com / iver / cit / gvsig / TableManageFields.java @ 22932

History | View | Annotate | Download (3.92 KB)

1
/*
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 org.gvsig.fmap.data.feature.FeatureStore;
50

    
51
import com.iver.andami.PluginServices;
52
import com.iver.andami.plugins.Extension;
53
import com.iver.andami.ui.mdiManager.IWindow;
54
import com.iver.cit.gvsig.project.documents.table.ProjectTable;
55
import com.iver.cit.gvsig.project.documents.table.gui.DlgFieldManager;
56
import com.iver.cit.gvsig.project.documents.table.gui.Table;
57

    
58

    
59
/**
60
 * Extensi?n que abre las tablas asociadas a las vistas.
61
 *
62
 * @author Vicente Caballero Navarro
63
 */
64
public class TableManageFields extends Extension {
65

    
66
        /**
67
         * @see com.iver.mdiApp.plugins.IExtension#updateUI(java.lang.String)
68
         */
69
        public void execute(String s) {
70
                IWindow v = PluginServices.getMDIManager().getActiveWindow();
71

    
72
            Table t = (Table) v;
73
            ProjectTable pt = t.getModel();
74
            FeatureStore fs = pt.getModel();
75
            if (fs.canAlterFeatureType())
76
            {
77
//                    IFieldManager fieldManager = (IFieldManager) writer;
78
                    DlgFieldManager dlg = new DlgFieldManager(fs);
79
                    PluginServices.getMDIManager().addWindow(dlg);
80
            }
81
//            if (ies.getOriginalDriver() instanceof IWriteable)
82
//            {
83
//                    IWriteable aux = (IWriteable) ies.getOriginalDriver();
84
//                    IWriter writer = aux.getWriter();
85
//                    // No todos los writer pueden cambiar los campos (ejemplo: el dxf
86
//                    // o el dgn siempre tienen los mismos campos).
87
//                    if (writer.canAlterTable())
88
//                    {
89
////                            IFieldManager fieldManager = (IFieldManager) writer;
90
//                            DlgFieldManager dlg = new DlgFieldManager(fs);
91
//                            PluginServices.getMDIManager().addWindow(dlg);
92
//                    }
93
//            }
94

    
95
        }
96

    
97
        /**
98
         * @see com.iver.andami.plugins.IExtension#initialize()
99
         */
100
        public void initialize() {
101
        }
102

    
103
    public boolean isEnabled() {
104
                IWindow v = PluginServices.getMDIManager().getActiveWindow();
105

    
106
                if (v == null) {
107
                        return false;
108
                }
109

    
110
                if (v instanceof Table) {
111
                    Table t = (Table) v;
112
                    FeatureStore fs = t.getModel().getModel();
113
//                    ProjectTable pt = t.getModel();
114
                    return fs.isEditing();
115

    
116
//                    if (ies.getOriginalDriver() instanceof IWriteable)
117
//                    {
118
//                            IWriter writer = ((IWriteable) ies.getOriginalDriver()).getWriter();
119
//                                if ((writer != null) && (writer.canAlterTable()))
120
//                                {
121
//                                        if (ies.isEditing())
122
//                                        {
123
//                                                return true;
124
//                                        }
125
//                                }
126
//                    }
127
                }
128
                return false;
129
    }
130

    
131
    /**
132
     * @see com.iver.andami.plugins.IExtension#isVisible()
133
     */
134
    public boolean isVisible() {
135
                IWindow v = PluginServices.getMDIManager().getActiveWindow();
136

    
137
                if (v == null) {
138
                        return false;
139
                }
140

    
141
                if (v instanceof Table) {
142
                    return true;
143
                }
144
                return false;
145
    }
146

    
147
}