Statistics
| Revision:

svn-gvsig-desktop / trunk / applications / appgvSIG / src / com / iver / cit / gvsig / gui / styling / StylePreviewer.java @ 28368

History | View | Annotate | Download (5.37 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: StylePreviewer.java 28368 2009-05-04 15:30:35Z vcaballero $
45
* $Log$
46
* Revision 1.6  2007-08-16 06:54:35  jvidal
47
* javadoc updated
48
*
49
* Revision 1.5  2007/08/13 11:33:03  jvidal
50
* javadoc
51
*
52
* Revision 1.4  2007/07/30 12:56:04  jaume
53
* organize imports, java 5 code downgraded to 1.4 and added PictureFillSymbol
54
*
55
* Revision 1.3  2007/05/08 15:44:07  jaume
56
* *** empty log message ***
57
*
58
* Revision 1.2  2007/04/04 16:01:14  jaume
59
* *** empty log message ***
60
*
61
* Revision 1.2  2007/03/09 11:25:00  jaume
62
* Advanced symbology (start committing)
63
*
64
* Revision 1.1.2.4  2007/02/21 07:35:14  jaume
65
* *** empty log message ***
66
*
67
* Revision 1.1.2.3  2007/02/08 15:43:04  jaume
68
* some bug fixes in the editor and removed unnecessary imports
69
*
70
* Revision 1.1.2.2  2007/01/30 18:10:10  jaume
71
* start commiting labeling stuff
72
*
73
* Revision 1.1.2.1  2007/01/26 13:49:03  jaume
74
* *** empty log message ***
75
*
76
*
77
*/
78
package com.iver.cit.gvsig.gui.styling;
79

    
80
import java.awt.Color;
81
import java.awt.Font;
82
import java.awt.FontMetrics;
83
import java.awt.Graphics;
84
import java.awt.Graphics2D;
85
import java.awt.Rectangle;
86

    
87
import com.iver.andami.PluginServices;
88
import com.iver.cit.gvsig.fmap.core.SymbologyFactory;
89
import com.iver.cit.gvsig.fmap.core.styles.IStyle;
90
import com.iver.cit.gvsig.fmap.core.symbols.ISymbol;
91
import com.iver.cit.gvsig.fmap.core.symbols.SymbolDrawingException;
92

    
93
/**
94
* Defines the properties of the symbols that are showed in the
95
* SymbolPreviewer panel.Also the user has methods to set this attributes.
96
*
97
* @author jaume dominguez faus - jaume.dominguez@iver.es
98
*
99
*/
100
public class StylePreviewer extends SymbolPreviewer{
101
        private int hGap = 10, vGap = 10;
102
        private IStyle style;
103
        private boolean showOutline;
104

    
105
        /**
106
         * Constructor method
107
         *
108
         */
109
        public StylePreviewer() {
110
                super();
111
                setBackground(Color.WHITE);
112
        }
113
        /**
114
         * Obtains the style of the symbol showed in the SymbolPreviewer panel
115
         * @return style,IStyle
116
         */
117
        public IStyle getStyle() {
118
                return style;
119
        }
120

    
121
        public ISymbol getSymbol() {
122
                throw new Error(PluginServices.getText(this, "undefined_for_StylePreviewer_use")
123
                                +" getStyle() "+
124
                                PluginServices.getText(this, "instead") );
125

    
126
        }
127

    
128
        public void setSymbol(ISymbol symbol) {
129
                throw new Error(PluginServices.getText(this, "undefined_for_StylePreviewer_use")
130
                                +" setStyle(IStyle) "+
131
                                PluginServices.getText(this, "instead") );
132

    
133
        }
134
        /**
135
         * Defines the style of the symbol showed in the SymbolPreviewer panel
136
         * @param style,IStyle
137
         */
138

    
139
        public void setStyle(IStyle style) {
140
                this.style = style;
141
//                repaint();
142

    
143
        }
144

    
145
        public void paint(Graphics g) {
146
                Graphics2D g2 = (Graphics2D) g;
147
                Rectangle r = getBounds();
148
                g2.translate(hGap/2, vGap/2);
149
                r = new Rectangle(0, 0, (int) (r.getWidth()-(hGap)), (int) (r.getHeight()-(vGap)));
150

    
151
                if (style != null) {
152
                        try {
153
                                if (showOutline) {
154
                                        // this is a trick for the editor
155
                                        style.drawOutline(g2, r);
156

    
157
                                } else {
158
                                        style.drawInsideRectangle(g2, r);
159
                                }
160
                        } catch (SymbolDrawingException e) {
161
                                if (e.getType() == SymbolDrawingException.UNSUPPORTED_SET_OF_SETTINGS) {
162
                                        try {
163
                                                SymbologyFactory.getWarningSymbol(
164
                                                                SymbolDrawingException.STR_UNSUPPORTED_SET_OF_SETTINGS,
165
                                                                "",
166
                                                                SymbolDrawingException.UNSUPPORTED_SET_OF_SETTINGS).
167
                                                                drawInsideRectangle(g2, null, r, null);
168
                                        } catch (SymbolDrawingException e1) {
169
                                                // IMPOSSIBLE TO REACH THIS
170
                                        }
171
                                } else {
172
                                        // should be unreachable code
173
                                        throw new Error(PluginServices.getText(this, "symbol_shapetype_mismatch"));
174
                                }
175
                        }
176
                } else {
177
                        String noneSelected = "["+PluginServices.getText(this, "preview_not_available")+"]";
178
                        FontMetrics fm = g2.getFontMetrics();
179
                        int lineWidth = fm.stringWidth(noneSelected);
180
                        float scale = (float) r.getWidth() / lineWidth;
181
                        Font f = g2.getFont();
182
                        float fontSize = f.getSize()*scale;
183
                        g2.setFont(        f.deriveFont( fontSize ) );
184

    
185
                        g2.drawString(noneSelected,         (r.x*scale) - (hGap/4), r.height/2+(vGap/2)*scale);
186
                }
187

    
188
        }
189

    
190
        /**
191
         * Allows to choose between paint styles Outline or the style itself.
192
         * @param b
193
         */
194
        public void setShowOutline(boolean b) {
195
                this.showOutline = b;
196
        }
197
        public int getHGap() {
198
                return hGap;
199
        }
200
        public void setHGap(int gap) {
201
                hGap = gap;
202
        }
203
        public int getVGap() {
204
                return vGap;
205
        }
206
        public void setVGap(int gap) {
207
                vGap = gap;
208
        }
209
}