Statistics
| Revision:

root / trunk / applications / appgvSIG / src / com / iver / cit / gvsig / gui / styling / AbstractTypeSymbolEditorPanel.java @ 10679

History | View | Annotate | Download (4.66 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: AbstractTypeSymbolEditorPanel.java 10679 2007-03-09 11:25:01Z jaume $
45
* $Log$
46
* Revision 1.2  2007-03-09 11:25:00  jaume
47
* Advanced symbology (start committing)
48
*
49
* Revision 1.1.2.3  2007/02/21 07:35:14  jaume
50
* *** empty log message ***
51
*
52
* Revision 1.1.2.2  2007/02/08 15:42:13  jaume
53
* *** empty log message ***
54
*
55
* Revision 1.1.2.1  2007/01/26 13:49:03  jaume
56
* *** empty log message ***
57
*
58
* Revision 1.1  2007/01/16 11:52:11  jaume
59
* *** empty log message ***
60
*
61
* Revision 1.6  2006/11/13 09:15:23  jaume
62
* javadoc and some clean-up
63
*
64
* Revision 1.5  2006/11/06 16:06:52  jaume
65
* *** empty log message ***
66
*
67
* Revision 1.4  2006/10/31 16:16:34  jaume
68
* *** empty log message ***
69
*
70
* Revision 1.3  2006/10/30 19:30:35  jaume
71
* *** empty log message ***
72
*
73
* Revision 1.2  2006/10/29 23:53:49  jaume
74
* *** empty log message ***
75
*
76
* Revision 1.1  2006/10/27 12:41:09  jaume
77
* GUI
78
*
79
*
80
*/
81
package com.iver.cit.gvsig.gui.styling;
82

    
83
import java.awt.event.ActionEvent;
84
import java.awt.event.ActionListener;
85

    
86
import javax.swing.JPanel;
87

    
88
import com.iver.cit.gvsig.fmap.core.symbols.ISymbol;
89
import com.iver.utiles.XMLEntity;
90
/**
91
 * Abstract class that all the Symbol settings interface must extend.
92
 *
93
 * @author jaume dominguez faus - jaume.dominguez@iver.es
94
 */
95
public abstract class AbstractTypeSymbolEditorPanel {
96
        protected SymbolEditor owner;
97

    
98
        /**
99
         * Produces and returns  the ISymbol according with the user settings.
100
         *
101
         * @return XMLEntity defining the ISymbol.
102
         * @see getSymbolClass() method
103
         */
104
        public abstract ISymbol getLayer();
105

    
106
        /**
107
         * Creates a new instance of this type symbol editor panel associated to
108
         * its parent SymbolEditor which will be notified of the changes in
109
         * order to keep the symbol preview in sync with the user settings.
110
         * @param owner, the SymbolEditor which created this.
111
         */
112
        public AbstractTypeSymbolEditorPanel(SymbolEditor owner) {
113
                this.owner = owner;
114
        }
115

    
116
        /**
117
         * <p>Returns the name of the config tabs that will be shown in the selector combo box.
118
         * This is typically a human-readable (and also translatable) name for the symbol that
119
         * this TypeEditorPanel deals with, but maybe you prefer to use any other one.<br>
120
         * </p>
121
         * <p>
122
         * The order of the entries in the combo is alphabetically-based. So you can force a
123
         * position by defining a name that suits your needs.
124
         * </p>
125
         * @return A human-readable text naming this panel
126
         */
127
        public abstract String getName();
128

    
129
        /**
130
         * <p>Due to the complexity that many symbols settings can reach, the SymbolEditorPanel is
131
         * designed in a tabbed-based fashion. So, you can use as many of pages you want to put
132
         * your components. This pages are regular JPanels that will be automatically added to
133
         * the SymbolEditor dialog.<br>
134
         * </p>
135
         * <p>
136
         * In case you need only one page, just return a JPanel array with a length of 1.
137
         * </p>
138
         * @return An array of JPanel containing the setting's interface.
139
         */
140
        public abstract JPanel[] getTabs();
141

    
142
        /**
143
         * Invoked when the user selects or adds a new layer. This method fills up
144
         * the components on the right according on the layer properties
145
         * @param <b>ISymbol</b> layer, the symbol
146
         */
147
        public abstract void refreshControls(ISymbol layer);
148

    
149
        public final String toString() {
150
                return getName();
151
        }
152

    
153
        protected final void fireSymbolChangedEvent() {
154
                owner.setLayerToSymbol(getLayer());
155
                owner.refresh();
156
        }
157

    
158
        /**
159
         * Returns the symbol class that is handled by this configuration panel.
160
         * @return <b>Class</b> (of the concrete ISymbol that this configuration panel deals with)
161
         */
162
        public abstract Class getSymbolClass();
163
}
164