Statistics
| Revision:

root / trunk / applications / appgvSIG / src / com / iver / cit / gvsig / TableManageFields.java @ 7738

History | View | Annotate | Download (3.76 KB)

1 6127 fjp
/*
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.plugins.Extension;
51 6877 cesar
import com.iver.andami.ui.mdiManager.IWindow;
52 6356 fjp
import com.iver.cit.gvsig.fmap.edition.IEditableSource;
53 6127 fjp
import com.iver.cit.gvsig.fmap.edition.IWriteable;
54
import com.iver.cit.gvsig.fmap.edition.IWriter;
55 7304 caballero
import com.iver.cit.gvsig.project.documents.table.ProjectTable;
56
import com.iver.cit.gvsig.project.documents.table.gui.Table;
57
import com.iver.cit.gvsig.project.documents.view.info.gui.DlgFieldManager;
58 6127 fjp
59
60
/**
61
 * Extensi?n que abre las tablas asociadas a las vistas.
62
 *
63
 * @author Vicente Caballero Navarro
64
 */
65
public class TableManageFields extends Extension {
66
67
        /**
68
         * @see com.iver.mdiApp.plugins.IExtension#updateUI(java.lang.String)
69
         */
70
        public void execute(String s) {
71 6880 cesar
                IWindow v = PluginServices.getMDIManager().getActiveWindow();
72 6127 fjp
73
            Table t = (Table) v;
74
            ProjectTable pt = t.getModel();
75 6356 fjp
            IEditableSource ies = pt.getModelo();
76 6365 fjp
            if (ies.getOriginalDriver() instanceof IWriteable)
77 6356 fjp
            {
78 6365 fjp
                    IWriteable aux = (IWriteable) ies.getOriginalDriver();
79 6356 fjp
                    IWriter writer = aux.getWriter();
80
                    // No todos los writer pueden cambiar los campos (ejemplo: el dxf
81
                    // o el dgn siempre tienen los mismos campos).
82
                    if (writer.canAlterTable())
83
                    {
84
//                            IFieldManager fieldManager = (IFieldManager) writer;
85
                            DlgFieldManager dlg = new DlgFieldManager(ies);
86 6880 cesar
                            PluginServices.getMDIManager().addWindow(dlg);
87 6356 fjp
                    }
88
            }
89 6127 fjp
90
        }
91
92
        /**
93
         * @see com.iver.andami.plugins.IExtension#initialize()
94
         */
95
        public void initialize() {
96
        }
97
98
    public boolean isEnabled() {
99 6880 cesar
                IWindow v = PluginServices.getMDIManager().getActiveWindow();
100 6127 fjp
101
                if (v == null) {
102
                        return false;
103
                }
104
105
                if (v instanceof Table) {
106
                    Table t = (Table) v;
107 6356 fjp
                    IEditableSource ies = t.getModel().getModelo();
108
//                    ProjectTable pt = t.getModel();
109 6365 fjp
                    if (ies.getOriginalDriver() instanceof IWriteable)
110 6356 fjp
                    {
111 6365 fjp
                            IWriter writer = ((IWriteable) ies.getOriginalDriver()).getWriter();
112 6356 fjp
                                if ((writer != null) && (writer.canAlterTable()))
113
                                {
114
                                        if (ies.isEditing())
115
                                        {
116
                                                return true;
117
                                        }
118
                                }
119
                    }
120 6127 fjp
                }
121
                return false;
122
    }
123
124
    /**
125
     * @see com.iver.andami.plugins.IExtension#isVisible()
126
     */
127
    public boolean isVisible() {
128 6880 cesar
                IWindow v = PluginServices.getMDIManager().getActiveWindow();
129 6127 fjp
130
                if (v == null) {
131
                        return false;
132
                }
133
134
                if (v instanceof Table) {
135
                    return true;
136
                }
137
                return false;
138
    }
139
140
}