Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / applications / appgvSIG / src / com / iver / cit / gvsig / BasicSymbologyExtension.java @ 28833

History | View | Annotate | Download (7.21 KB)

1 18623 jdominguez
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2005 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 *
19
 * For more information, contact:
20
 *
21
 *  Generalitat Valenciana
22
 *   Conselleria d'Infraestructures i Transport
23
 *   Av. Blasco Ib??ez, 50
24
 *   46010 VALENCIA
25
 *   SPAIN
26
 *
27
 *      +34 963862235
28
 *   gvsig@gva.es
29
 *      www.gvsig.gva.es
30
 *
31
 *    or
32
 *
33
 *   IVER T.I. S.A
34
 *   Salamanca 50
35
 *   46005 Valencia
36
 *   Spain
37
 *
38
 *   +34 963163400
39
 *   dac@iver.es
40
 */
41
42
/* CVS MESSAGES:
43
*
44
* $Id: AdvancedSymbologyExtension.java 16205 2007-11-08 16:33:35Z jdominguez $
45
* $Log: AdvancedSymbologyExtension.java,v $
46
* Revision 1.12  2007/09/19 15:34:59  jaume
47
* removed unnecessary imports
48
*
49
* Revision 1.11  2007/09/17 09:11:28  jaume
50
* order of the elements inverted
51
*
52
* Revision 1.10  2007/09/13 11:37:09  jvidal
53
* *** empty log message ***
54
*
55
* Revision 1.9  2007/09/04 10:53:10  caballero
56
* show page
57
*
58
* Revision 1.8  2007/08/09 10:39:04  jaume
59
* first round of found bugs fixed
60
*
61
* Revision 1.7  2007/08/01 13:03:31  jaume
62
* plugable symbol editor
63
*
64
* Revision 1.6  2007/05/22 12:17:12  jaume
65
* *** empty log message ***
66
*
67
* Revision 1.5  2007/05/17 09:32:37  jaume
68
* *** empty log message ***
69
*
70
* Revision 1.4  2007/03/21 08:03:03  jaume
71
* refactored to use ISymbol instead of FSymbol
72
*
73
* Revision 1.3  2007/03/13 16:57:35  jaume
74
* Added MultiVariable legend
75
*
76
* Revision 1.2  2007/03/09 11:25:00  jaume
77
* Advanced symbology (start committing)
78
*
79
* Revision 1.1.2.4  2007/02/21 07:35:14  jaume
80
* *** empty log message ***
81
*
82
* Revision 1.1.2.3  2007/02/12 15:14:41  jaume
83
* refactored interval legend and added graduated symbol legend
84
*
85
* Revision 1.1.2.2  2007/02/01 17:47:12  jaume
86
* *** empty log message ***
87
*
88
* Revision 1.1.2.1  2007/02/01 12:12:41  jaume
89
* theme manager window and all its components are now dynamic
90
*
91
*/
92
package com.iver.cit.gvsig;
93
94 21354 vcaballero
import org.gvsig.fmap.geom.Geometry;
95 20994 jmvivo
import org.gvsig.fmap.mapcontext.layers.vectorial.FLyrVect;
96 21354 vcaballero
import org.gvsig.fmap.mapcontext.rendering.legend.driver.gvl.FMapGVLDriver;
97 20994 jmvivo
98 18623 jdominguez
import com.iver.andami.PluginServices;
99
import com.iver.andami.plugins.Extension;
100
import com.iver.andami.preferences.IPreference;
101
import com.iver.andami.preferences.IPreferenceExtension;
102
import com.iver.cit.gvsig.gui.preferencespage.CartographicSupportPage;
103
import com.iver.cit.gvsig.gui.preferencespage.SymbologyPage;
104
import com.iver.cit.gvsig.gui.styling.SimpleFill;
105
import com.iver.cit.gvsig.gui.styling.SimpleLine;
106
import com.iver.cit.gvsig.gui.styling.SimpleMarker;
107
import com.iver.cit.gvsig.gui.styling.SimpleText;
108
import com.iver.cit.gvsig.gui.styling.SymbolEditor;
109
import com.iver.cit.gvsig.project.documents.view.legend.gui.AttrInTableLabeling;
110
import com.iver.cit.gvsig.project.documents.view.legend.gui.Categories;
111
import com.iver.cit.gvsig.project.documents.view.legend.gui.Features;
112
import com.iver.cit.gvsig.project.documents.view.legend.gui.General;
113
import com.iver.cit.gvsig.project.documents.view.legend.gui.LabelingManager;
114
import com.iver.cit.gvsig.project.documents.view.legend.gui.LegendManager;
115
import com.iver.cit.gvsig.project.documents.view.legend.gui.MultipleAttributes;
116
import com.iver.cit.gvsig.project.documents.view.legend.gui.Quantities;
117
import com.iver.cit.gvsig.project.documents.view.legend.gui.SingleSymbol;
118
import com.iver.cit.gvsig.project.documents.view.legend.gui.ThemeManagerWindow;
119
import com.iver.cit.gvsig.project.documents.view.legend.gui.VectorialInterval;
120
import com.iver.cit.gvsig.project.documents.view.legend.gui.VectorialUniqueValue;
121
/**
122
 * Extension for enable the symbology. It only installs the core symbology.
123
 * @author jaume dominguez faus - jaume.dominguez@iver.es
124
 *
125
 */
126
public class BasicSymbologyExtension extends Extension implements IPreferenceExtension{
127
128
        public void initialize() {
129
                // Install required features
130
131
                // modules for symbol editor
132 21354 vcaballero
                SymbolEditor.addSymbolEditorPanel(SimpleFill.class, Geometry.TYPES.SURFACE);
133
                SymbolEditor.addSymbolEditorPanel(SimpleMarker.class, Geometry.TYPES.POINT);
134
                SymbolEditor.addSymbolEditorPanel(SimpleLine.class, Geometry.TYPES.CURVE);
135
                SymbolEditor.addSymbolEditorPanel(SimpleText.class, Geometry.TYPES.TEXT);
136 18623 jdominguez
137
                // pages
138
                ThemeManagerWindow.addPage(General.class);
139
                ThemeManagerWindow.addPage(LegendManager.class);
140
                ThemeManagerWindow.addPage(LabelingManager.class);
141
142
                ThemeManagerWindow.setTabEnabledForLayer(General.class, FLyrVect.class, true);
143
                ThemeManagerWindow.setTabEnabledForLayer(LegendManager.class, FLyrVect.class, true);
144
                ThemeManagerWindow.setTabEnabledForLayer(LabelingManager.class, FLyrVect.class, true);
145
                // labeling strategies (inverse order to the wanted to be shown)
146
                LabelingManager.addLabelingStrategy(AttrInTableLabeling.class);
147
148 21354 vcaballero
149 18623 jdominguez
                // legends available in the legend page
150
                LegendManager.addLegendPage(Quantities.class);
151
                LegendManager.addLegendPage(Features.class);
152
                LegendManager.addLegendPage(Categories.class);
153
                LegendManager.addLegendPage(MultipleAttributes.class);
154
155
                LegendManager.addLegendPage(SingleSymbol.class);
156
                LegendManager.addLegendPage(VectorialInterval.class);
157
                LegendManager.addLegendPage(VectorialUniqueValue.class);
158 21354 vcaballero
159 18623 jdominguez
                LegendManager.addLegendDriver(FMapGVLDriver.class);
160
                registerIcons();
161
        }
162
163
        private void registerIcons(){
164
                PluginServices.getIconTheme().registerDefault(
165
                                "chain",
166
                                this.getClass().getClassLoader().getResource("images/chain.png")
167
                        );
168
                PluginServices.getIconTheme().registerDefault(
169
                                "broken-chain",
170
                                this.getClass().getClassLoader().getResource("images/broken-chain.png")
171
                        );
172
                PluginServices.getIconTheme().registerDefault(
173
                                "underline-icon",
174
                                this.getClass().getClassLoader().getResource("images/underlined.png")
175
                        );
176
                PluginServices.getIconTheme().registerDefault(
177
                                "italic-icon",
178
                                this.getClass().getClassLoader().getResource("images/italic.png")
179
                        );
180
                PluginServices.getIconTheme().registerDefault(
181
                                "bold-icon",
182
                                this.getClass().getClassLoader().getResource("images/bold.png")
183
                        );
184
                PluginServices.getIconTheme().registerDefault(
185 21354 vcaballero
                                "symbol-pref",
186 25750 vcaballero
                                this.getClass().getClassLoader().getResource("images/QuantitiesByCategory.png"));
187 21354 vcaballero
188 18623 jdominguez
        }
189 21354 vcaballero
190 18623 jdominguez
        public void execute(String actionCommand) {
191
192
        }
193
194
        public boolean isEnabled() {
195
                return true; // or whatever
196
        }
197
198
        public boolean isVisible() {
199
                return true; // or whatever
200
        }
201
202
        public IPreference[] getPreferencesPages() {
203
                return new IPreference[] {
204 21354 vcaballero
                        new CartographicSupportPage(), new SymbologyPage()
205 18623 jdominguez
                };
206
        }
207
}