Statistics
| Revision:

root / trunk / applications / appgvSIG / src / com / iver / cit / gvsig / AdvancedSymbologyExtension.java @ 14821

History | View | Annotate | Download (8.88 KB)

1
/* 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 14821 2007-10-22 12:15:26Z jmvivo $
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
*/
93
package com.iver.cit.gvsig;
94

    
95
import com.iver.andami.PluginServices;
96
import com.iver.andami.plugins.Extension;
97
import com.iver.cit.gvsig.fmap.core.FShape;
98
import com.iver.cit.gvsig.fmap.rendering.styling.AttrInTableLabeling;
99
import com.iver.cit.gvsig.fmap.rendering.styling.DefaultLabelingMethod;
100
import com.iver.cit.gvsig.fmap.rendering.styling.FeatureDependentLabeled;
101
import com.iver.cit.gvsig.fmap.rendering.styling.GeneralLabelingStrategy;
102
import com.iver.cit.gvsig.fmap.rendering.styling.OnSelectionLabeled;
103
import com.iver.cit.gvsig.gui.styling.CharacterMarker;
104
import com.iver.cit.gvsig.gui.styling.GradientFill;
105
import com.iver.cit.gvsig.gui.styling.LineFill;
106
import com.iver.cit.gvsig.gui.styling.MarkerFill;
107
import com.iver.cit.gvsig.gui.styling.MarkerLine;
108
import com.iver.cit.gvsig.gui.styling.PictureFill;
109
import com.iver.cit.gvsig.gui.styling.PictureLine;
110
import com.iver.cit.gvsig.gui.styling.PictureMarker;
111
import com.iver.cit.gvsig.gui.styling.SimpleFill;
112
import com.iver.cit.gvsig.gui.styling.SimpleLine;
113
import com.iver.cit.gvsig.gui.styling.SimpleMarker;
114
import com.iver.cit.gvsig.gui.styling.SimpleText;
115
import com.iver.cit.gvsig.gui.styling.SymbolEditor;
116
import com.iver.cit.gvsig.project.documents.view.legend.gui.Categories;
117
import com.iver.cit.gvsig.project.documents.view.legend.gui.DotDensity;
118
import com.iver.cit.gvsig.project.documents.view.legend.gui.Features;
119
import com.iver.cit.gvsig.project.documents.view.legend.gui.FilePage;
120
import com.iver.cit.gvsig.project.documents.view.legend.gui.General;
121
import com.iver.cit.gvsig.project.documents.view.legend.gui.GraduatedSymbols;
122
import com.iver.cit.gvsig.project.documents.view.legend.gui.LabelingManager;
123
import com.iver.cit.gvsig.project.documents.view.legend.gui.LegendManager;
124
import com.iver.cit.gvsig.project.documents.view.legend.gui.MultipleAttributes;
125
import com.iver.cit.gvsig.project.documents.view.legend.gui.ProportionalSymbols;
126
import com.iver.cit.gvsig.project.documents.view.legend.gui.Quantities;
127
import com.iver.cit.gvsig.project.documents.view.legend.gui.QuantityByCategory;
128
import com.iver.cit.gvsig.project.documents.view.legend.gui.SingleSymbol;
129
import com.iver.cit.gvsig.project.documents.view.legend.gui.SuitableVectorialLegend;
130
import com.iver.cit.gvsig.project.documents.view.legend.gui.ThemeManagerWindow;
131
import com.iver.cit.gvsig.project.documents.view.legend.gui.VectorialInterval;
132
import com.iver.cit.gvsig.project.documents.view.legend.gui.VectorialUniqueValue;
133
import com.iver.utiles.extensionPoints.ExtensionPoints;
134
import com.iver.utiles.extensionPoints.ExtensionPointsSingleton;
135
/**
136
 * Extension for enable the symbology. It only installs the core symbology.
137
 * @author jaume dominguez faus - jaume.dominguez@iver.es
138
 *
139
 */
140
public class AdvancedSymbologyExtension extends Extension {
141

    
142
        public void initialize() {
143
                // Install required features
144

    
145
                // modules for symbol editor
146
                SymbolEditor.addSymbolEditorPanel(SimpleFill.class, FShape.POLYGON);
147
                SymbolEditor.addSymbolEditorPanel(MarkerFill.class, FShape.POLYGON);
148
                SymbolEditor.addSymbolEditorPanel(PictureFill.class, FShape.POLYGON);
149
                SymbolEditor.addSymbolEditorPanel(LineFill.class, FShape.POLYGON);
150
                SymbolEditor.addSymbolEditorPanel(GradientFill.class, FShape.POLYGON);
151

    
152
                SymbolEditor.addSymbolEditorPanel(CharacterMarker.class, FShape.POINT);
153
                SymbolEditor.addSymbolEditorPanel(SimpleMarker.class, FShape.POINT);
154
                SymbolEditor.addSymbolEditorPanel(PictureMarker.class, FShape.POINT);
155

    
156
                SymbolEditor.addSymbolEditorPanel(SimpleLine.class, FShape.LINE);
157
                SymbolEditor.addSymbolEditorPanel(PictureLine.class, FShape.LINE);
158
                SymbolEditor.addSymbolEditorPanel(MarkerLine.class, FShape.LINE);
159

    
160
                SymbolEditor.addSymbolEditorPanel(SimpleText.class, FShape.TEXT);
161

    
162
                // pages
163
                ThemeManagerWindow.addPage(General.class);
164
                ThemeManagerWindow.addPage(LegendManager.class);
165
                ThemeManagerWindow.addPage(LabelingManager.class);
166
                ThemeManagerWindow.addPage(FilePage.class);
167

    
168

    
169
                // labeling strategies (inverse order to the wanted to be shown)
170
                LabelingManager.addLabelingStrategy(
171
                                PluginServices.getText(this, "label_attributes_defined_in_table"),
172
                                AttrInTableLabeling.class);
173
                LabelingManager.addLabelingStrategy(
174
                                PluginServices.getText(this, "user_defined_labels"),
175
                                GeneralLabelingStrategy.class);
176
                
177

    
178
                // labeling methods in the labeling page
179
                //                                                (inverse order to the wanted to be shown)
180
                LabelingManager.addLabelingMethod(
181
                                PluginServices.getText(this, "label_only_when_selected")+".",
182
                                OnSelectionLabeled.class);
183
                LabelingManager.addLabelingMethod(
184
                                PluginServices.getText(this, "define_classes_of_features_and_label_each_differently")+".",
185
                                FeatureDependentLabeled.class);
186
                LabelingManager.addLabelingMethod(
187
                                PluginServices.getText(this, "label_features_in_the_same_way")+".",
188
                                DefaultLabelingMethod.class);
189

    
190

    
191
                // legends available in the legend page
192
                LegendManager.addLegendPage(Quantities.class);
193
                LegendManager.addLegendPage(Features.class);
194
                LegendManager.addLegendPage(Categories.class);
195
                LegendManager.addLegendPage(MultipleAttributes.class);
196

    
197
                LegendManager.addLegendPage(SingleSymbol.class);
198
                LegendManager.addLegendPage(DotDensity.class);
199
                LegendManager.addLegendPage(GraduatedSymbols.class);
200
                LegendManager.addLegendPage(VectorialInterval.class);
201
                LegendManager.addLegendPage(VectorialUniqueValue.class);
202
                LegendManager.addLegendPage(QuantityByCategory.class);
203
                LegendManager.addLegendPage(ProportionalSymbols.class);
204
                ExtensionPoints extensionPoints = ExtensionPointsSingleton
205
                        .getInstance();
206
                extensionPoints.add("IsSuitable",SuitableVectorialLegend.class.getName(),SuitableVectorialLegend.class);
207
                
208
                registerIcons();
209
        }
210

    
211
        private void registerIcons(){
212
                PluginServices.getIconTheme().register(
213
                                "chain",
214
                                this.getClass().getClassLoader().getResource("images/chain.png")
215
                        );
216
                PluginServices.getIconTheme().register(
217
                                "broken-chain",
218
                                this.getClass().getClassLoader().getResource("images/broken-chain.png")
219
                        );
220
                PluginServices.getIconTheme().register(
221
                                "underline-icon",
222
                                this.getClass().getClassLoader().getResource("images/underlined.png")
223
                        );
224
                PluginServices.getIconTheme().register(
225
                                "italic-icon",
226
                                this.getClass().getClassLoader().getResource("images/italic.png")
227
                        );
228
                PluginServices.getIconTheme().register(
229
                                "bold-icon",
230
                                this.getClass().getClassLoader().getResource("images/bold.png")
231
                        );
232
                
233
        }
234
        
235
        public void execute(String actionCommand) {
236

    
237
        }
238

    
239
        public boolean isEnabled() {
240
                return true; // or whatever
241
        }
242

    
243
        public boolean isVisible() {
244
                return true; // or whatever
245
        }
246

    
247
}