Revision 27475

View differences:

branches/v2_0_0_prep/extensions/extCenterViewToPoint/.cvsignore
1
bin-test
branches/v2_0_0_prep/extensions/extCenterViewToPoint/build.xml
1
<project name="extCenterViewToPoint" default="dist" basedir=".">
2
	<description>
3
		Instala el plugin de Centrar la Vista sobre un punto en Andami.
4
	</description>
5
	<!-- set global properties for this build -->
6
	<import file="../binaries/ant/utilities.xml"/>
7
	<property name="src" location="src"/>
8
	<property name="build" location="bin"/>
9
	<property name="src-test" location="src-test"/>
10
	<property name="build-test" location="bin-test"/>
11
	<property name="dist"  location="dist"/>
12
	<property name="andamiBaseDir" location="../_fwAndami"/>
13
	<property name="andamiLibs" location="${andamiBaseDir}/lib"/>
14
	<property name="gvsigLibs" location="${andamiBaseDir}/gvSIG/extensiones/com.iver.cit.gvsig/lib"/>
15
	<!--<property name="compile-classpath" value="${andamiBaseDir}/andami.jar:${andamiLibs}/beans.jar:${gvsigLibs}/cms.jar:${gvsigLibs}/fmap.jar:${gvsigLibs}/com.iver.cit.gvsig.jar"/>-->
16
	<property name="pluginName" value="com.iver.gvsig.centerviewpoint"/>
17
	<property name="installDir" location="${andamiBaseDir}/gvSIG/extensiones/${pluginName}"/>
18
	<property name="buildNumberFile" location="build.number"/>
19

  
20
	<target name="init">
21
		<!-- Create the time stamp -->
22
		<tstamp/>
23
		<echo>
24
			Compiling ${ant.project.name}...</echo>
25
	</target>
26

  
27
	<target name="batch-build"
28
			description="compile the sources, create the jar file"
29
			depends="init,compile,create-jar,copy-data-files,move-to-installDir">
30
	</target>
31

  
32
	<target name="dist"
33
			description="create the jar file"
34
			depends="init,create-jar,copy-data-files,move-to-installDir">
35
	</target>
36

  
37
	<target name="compile" description="compile the Java source code from ${src} to ${build}" >
38
		<!-- Compile the Java code from ${src} to ${build} -->
39
		<antcall target="gvSIG-import-build-number"/>
40
		<mkdir dir="${build}" />
41
		<loadEclipseClasspath project="${basedir}"/>
42
		<gvSIG-javac
43
			classpath="${eclipseClasspath}"
44
		/>
45
		<!--<javac  srcdir="${src}"
46
			destdir="${build}"
47
    		source="${JavaSourceVersion}"
48
			target="${JavaTargetVersion}"
49
			debug="${debug}"
50
			debuglevel="${debuglevel}"
51
			classpath="${compile-classpath}"/>-->
52
	</target>
53

  
54
	<target name="create-jar"
55
			description="Creates the plugin jar">
56
		<mkdir dir="${dist}"/>
57
	    <jar jarfile="${dist}/${pluginName}.jar" basedir="${build}" />
58
	</target>
59

  
60
	<target name="copy-data-files">
61
	    <copy file="config/config.xml" todir="${dist}"/>
62
		<copy file="build.number" todir="${dist}"/>
63
		<copy todir="${dist}">
64
			<fileset dir="config" includes="text*.properties"/>
65
		</copy>
66
		<copy todir="${dist}/images">
67
			<fileset dir="images/" includes="*"/>
68
		</copy>
69
	</target>
70

  
71
	<target name="move-to-installDir">
72
		<move todir="${installDir}">
73
			<fileset dir="${dist}" includes="**/**"/>
74
		</move>
75
	</target>
76

  
77
	<target name="clean"
78
			description="clean dist directory" >
79
		<!-- Clean the distribution directory -->
80
		<delete dir="${dist}" failonerror="false"/>
81
	</target>
82

  
83
	<target name="run-tests" depends="batch-build,compile-tests">
84
		<antcall target="generic-run-tests">
85
			<param name="TestSuite.Name" value="com.iver.gvsig.centerviewpoint.AllTests"/>
86
		</antcall>
87
	</target>
88
</project>
89

  
branches/v2_0_0_prep/extensions/extCenterViewToPoint/.classpath
1
<?xml version="1.0" encoding="UTF-8"?>
2
<classpath>
3
	<classpathentry kind="src" path="src"/>
4
	<classpathentry kind="src" output="bin-test" path="src-test"/>
5
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
6
	<classpathentry combineaccessrules="false" kind="src" path="/_fwAndami"/>
7
	<classpathentry combineaccessrules="false" kind="src" path="/appgvSIG"/>
8
	<classpathentry kind="lib" path="/_fwAndami/lib/org.gvsig.ui.jar"/>
9
	<classpathentry kind="var" path="JUNIT_HOME/junit.jar"/>
10
	<classpathentry kind="lib" path="/appgvSIG/lib/org.gvsig.fmap.control.jar" sourcepath="/libFMap_controls"/>
11
	<classpathentry kind="lib" path="/appgvSIG/lib/org.gvsig.fmap.dal.jar" sourcepath="/libFMap_dal"/>
12
	<classpathentry kind="lib" path="/appgvSIG/lib/org.gvsig.fmap.geometry.jar"/>
13
	<classpathentry kind="lib" path="/appgvSIG/lib/org.gvsig.fmap.mapcontext.jar" sourcepath="/libFMap_mapcontext"/>
14
	<classpathentry kind="lib" path="/appgvSIG/lib/org.gvsig.tools.jar"/>
15
	<classpathentry kind="lib" path="/libFMap_dal/lib/org.cresques.cts.jar"/>
16
	<classpathentry kind="lib" path="/_fwAndami/lib/iver-utiles.jar" sourcepath="/libIverUtiles"/>
17
	<classpathentry combineaccessrules="false" kind="src" path="/libFMap_geometries"/>
18
	<classpathentry kind="lib" path="/_fwAndami/lib/log4j-1.2.14.jar"/>
19
	<classpathentry kind="output" path="bin"/>
20
</classpath>
branches/v2_0_0_prep/extensions/extCenterViewToPoint/.project
1
<?xml version="1.0" encoding="UTF-8"?>
2
<projectDescription>
3
	<name>extCenterViewToPoint</name>
4
	<comment></comment>
5
	<projects>
6
	</projects>
7
	<buildSpec>
8
		<buildCommand>
9
			<name>org.eclipse.jdt.core.javabuilder</name>
10
			<arguments>
11
			</arguments>
12
		</buildCommand>
13
		<buildCommand>
14
			<name>de.loskutov.FileSync.FSBuilder</name>
15
			<arguments>
16
			</arguments>
17
		</buildCommand>
18
	</buildSpec>
19
	<natures>
20
		<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
21
		<nature>org.eclipse.jdt.core.javanature</nature>
22
		<nature>org.eclipse.jem.beaninfo.BeanInfoNature</nature>
23
	</natures>
24
</projectDescription>
branches/v2_0_0_prep/extensions/extCenterViewToPoint/src-test/com/iver/gvsig/centerviewpoint/AllTests.java
1
package com.iver.gvsig.centerviewpoint;
2

  
3
import junit.framework.Test;
4
import junit.framework.TestSuite;
5

  
6
public class AllTests {
7

  
8
	public static Test suite() {
9
		TestSuite suite = new TestSuite(
10
				"Test for com.iver.gvsig.centerviewpoint");
11
		//$JUnit-BEGIN$
12

  
13
		//$JUnit-END$
14
		return suite;
15
	}
16

  
17
}
branches/v2_0_0_prep/extensions/extCenterViewToPoint/config/text_zh.properties
1
#Translations for language [en]
2
#Fri Nov 03 13:14:56 CET 2006
3
Centrar_la_Vista_sobre_un_punto=\u5411\u4e00\u70b9\u96c6\u4e2d
4
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=\u60a8\u5fc5\u987b\u9009\u5b9a\u60a8\u8981\u8bfb\u53d6\u4fe1\u606f\u7684\u56fe\u5c42
5
formato_de_numero_incorrecto=\u6570\u5b57\u683c\u5f0f\u65e0\u6548
6
no_hay_ninguna_capa_seleccionada=\u672a\u9009\u5b9a\u56fe\u5c42
7
Vista=\u89c6\u56fe
branches/v2_0_0_prep/extensions/extCenterViewToPoint/config/text_en.properties
1
#Translations for language [en]
2
#Mon Oct 30 09:38:21 CET 2006
3
Centrar_la_Vista_sobre_un_punto=Center view to point
4
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=Select the layers you want to get information from
5
formato_de_numero_incorrecto=Incorrect number format
6
no_hay_ninguna_capa_seleccionada=No layer has been selected
7
Vista=View
branches/v2_0_0_prep/extensions/extCenterViewToPoint/config/text_gl.properties
1
#Translations for language [gl]
2
#Mon Oct 30 09:38:21 CET 2006
3
Centrar_la_Vista_sobre_un_punto=Centrar a vista sobre un punto
4
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=Debe seleccionar as capas das que desexe obter informaci\u00f3n
5
formato_de_numero_incorrecto=
6
no_hay_ninguna_capa_seleccionada=
7
Vista=Vista
branches/v2_0_0_prep/extensions/extCenterViewToPoint/config/text_ca.properties
1
#Translations for language [ca]
2
#Mon Oct 30 09:38:21 CET 2006
3
Centrar_la_Vista_sobre_un_punto=Centrar la Vista sobre un punt
4
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=Ha de seleccionar les capes de les quals vol obtindre informaci\u00f3
5
formato_de_numero_incorrecto=Format de n\u00famero incorrecte
6
no_hay_ninguna_capa_seleccionada=
7
Vista=Vista
branches/v2_0_0_prep/extensions/extCenterViewToPoint/config/text_pt.properties
1
#Translations for language [pt]
2
#Mon Oct 30 09:38:21 CET 2006
3
Centrar_la_Vista_sobre_un_punto=
4
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=
5
formato_de_numero_incorrecto=
6
no_hay_ninguna_capa_seleccionada=
7
Vista=Vista
branches/v2_0_0_prep/extensions/extCenterViewToPoint/config/config.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<plugin-config>
3
	<libraries library-dir="."/>
4
	<depends plugin-name="com.iver.cit.gvsig"/>
5
		<resourceBundle name="text"/>
6
	<extensions>
7
		<extension class-name="com.iver.gvsig.centerviewpoint.CenterViewToPointExtension"
8
			description="CenterViewToPoint 0.1RC1  Extensi?n que permite hacer zooms en funci?n de un par de coordenadas introducidas por el usuario."
9
			active="true">
10
			<menu text="Vista/Centrar_la_Vista_sobre_un_punto" tooltip="Centrar_la_Vista_sobre_un_punto" 
11
				action-command="CENTERVIEWTOPOINT" 
12
				icon="view-center-to-point" />
13
			<tool-bar name="com.iver.cit.gvsig.Herramientas">
14
				<action-tool icon="view-center-to-point"
15
					action-command="CENTERVIEWTOPOINT" tooltip="Centrar_la_Vista_sobre_un_punto"
16
					enable-text="deber?a de estar activada" last="true"/>
17
			</tool-bar>
18
		</extension>
19
	</extensions>
20
</plugin-config>
branches/v2_0_0_prep/extensions/extCenterViewToPoint/config/text_cs.properties
1
#Translations for language [cs]
2
#Mon Nov 06 09:04:31 CET 2006
3
Centrar_la_Vista_sobre_un_punto=Centruj pohled na st\u0159ed
4
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=Ozna\u010dte vrstvy, ze kter\u00fdch chcete z\u00edskat informace
5
formato_de_numero_incorrecto=Neplatn\u00e9 \u010d\u00edslo form\u00e1tu
6
no_hay_ninguna_capa_seleccionada=Nebyla vybr\u00e1na \u017e\u00e1dn\u00e1 vrstva
7
Vista=Pohled
branches/v2_0_0_prep/extensions/extCenterViewToPoint/config/text_fr.properties
1
#Translations for language [fr]
2
#Mon Oct 30 09:38:21 CET 2006
3
Centrar_la_Vista_sobre_un_punto=Centrer la vue sur un point
4
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=Vous devez s\u00e9lectionner les couches pour lesquelles vous souhaitez obtenir des informations.
5
formato_de_numero_incorrecto=Format incorrect
6
no_hay_ninguna_capa_seleccionada=
7
Vista=Vue
branches/v2_0_0_prep/extensions/extCenterViewToPoint/config/text_de.properties
1
#Translations for language [de]
2
#Wed Oct 08 17:44:19 CEST 2008
3
Centrar_la_Vista_sobre_un_punto=View auf Koordinate zentrieren
4
com.iver.cit.gvsig.Herramientas=
5
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=W\u00e4hlen Sie die Ebenen aus, von denen Sie Informationen bekommen wollen
6
formato_de_numero_incorrecto=Ung\u00fcltiges Zahlenformat
7
no_hay_ninguna_capa_seleccionada=Es wurde kein Layer ausgew\u00e4hlt
8
Vista=Ansicht
branches/v2_0_0_prep/extensions/extCenterViewToPoint/config/text_eu.properties
1
#Translations for language [eu]
2
#Mon Oct 30 09:38:21 CET 2006
3
Centrar_la_Vista_sobre_un_punto=Zentratu bista puntu batekiko
4
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=Geruzak hautatu behar dituzu horien gaineko informazioa jasotzeko.
5
formato_de_numero_incorrecto=Zenbakiaren formatua okerra da
6
no_hay_ninguna_capa_seleccionada=
7
Vista=Bista
branches/v2_0_0_prep/extensions/extCenterViewToPoint/config/text_it.properties
1
#Translations for language [it]
2
#Tue Nov 07 12:30:01 CET 2006
3
Centrar_la_Vista_sobre_un_punto=Centra la visuale su un punto
4
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=Selezionare i layers di cui si desiderano informazioni.
5
formato_de_numero_incorrecto=Formato del numero errato.
6
no_hay_ninguna_capa_seleccionada=Nessun layer selezionato
7
Vista=Vista
branches/v2_0_0_prep/extensions/extCenterViewToPoint/config/text.properties
1
#Translations for language [es]
2
#Mon Oct 30 09:38:21 CET 2006
3
Centrar_la_Vista_sobre_un_punto=Centrar la vista sobre un punto
4
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=Debe seleccionar las capas de las que quiera obtener informaci\u00f3n.
5
formato_de_numero_incorrecto=Formato de n\u00famero incorrecto.
6
no_hay_ninguna_capa_seleccionada=No hay ninguna capa seleccionada
7
Vista=Vista
branches/v2_0_0_prep/extensions/extCenterViewToPoint/doc/gpl.txt
1
		    GNU GENERAL PUBLIC LICENSE
2
		       Version 2, June 1991
3

  
4
 Copyright (C) 1989, 1991 Free Software Foundation, Inc.
5
                       59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
6
 Everyone is permitted to copy and distribute verbatim copies
7
 of this license document, but changing it is not allowed.
8

  
9
			    Preamble
10

  
11
  The licenses for most software are designed to take away your
12
freedom to share and change it.  By contrast, the GNU General Public
13
License is intended to guarantee your freedom to share and change free
14
software--to make sure the software is free for all its users.  This
15
General Public License applies to most of the Free Software
16
Foundation's software and to any other program whose authors commit to
17
using it.  (Some other Free Software Foundation software is covered by
18
the GNU Library General Public License instead.)  You can apply it to
19
your programs, too.
20

  
21
  When we speak of free software, we are referring to freedom, not
22
price.  Our General Public Licenses are designed to make sure that you
23
have the freedom to distribute copies of free software (and charge for
24
this service if you wish), that you receive source code or can get it
25
if you want it, that you can change the software or use pieces of it
26
in new free programs; and that you know you can do these things.
27

  
28
  To protect your rights, we need to make restrictions that forbid
29
anyone to deny you these rights or to ask you to surrender the rights.
30
These restrictions translate to certain responsibilities for you if you
31
distribute copies of the software, or if you modify it.
32

  
33
  For example, if you distribute copies of such a program, whether
34
gratis or for a fee, you must give the recipients all the rights that
35
you have.  You must make sure that they, too, receive or can get the
36
source code.  And you must show them these terms so they know their
37
rights.
38

  
39
  We protect your rights with two steps: (1) copyright the software, and
40
(2) offer you this license which gives you legal permission to copy,
41
distribute and/or modify the software.
42

  
43
  Also, for each author's protection and ours, we want to make certain
44
that everyone understands that there is no warranty for this free
45
software.  If the software is modified by someone else and passed on, we
46
want its recipients to know that what they have is not the original, so
47
that any problems introduced by others will not reflect on the original
48
authors' reputations.
49

  
50
  Finally, any free program is threatened constantly by software
51
patents.  We wish to avoid the danger that redistributors of a free
52
program will individually obtain patent licenses, in effect making the
53
program proprietary.  To prevent this, we have made it clear that any
54
patent must be licensed for everyone's free use or not licensed at all.
55

  
56
  The precise terms and conditions for copying, distribution and
57
modification follow.
58

59
		    GNU GENERAL PUBLIC LICENSE
60
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
61

  
62
  0. This License applies to any program or other work which contains
63
a notice placed by the copyright holder saying it may be distributed
64
under the terms of this General Public License.  The "Program", below,
65
refers to any such program or work, and a "work based on the Program"
66
means either the Program or any derivative work under copyright law:
67
that is to say, a work containing the Program or a portion of it,
68
either verbatim or with modifications and/or translated into another
69
language.  (Hereinafter, translation is included without limitation in
70
the term "modification".)  Each licensee is addressed as "you".
71

  
72
Activities other than copying, distribution and modification are not
73
covered by this License; they are outside its scope.  The act of
74
running the Program is not restricted, and the output from the Program
75
is covered only if its contents constitute a work based on the
76
Program (independent of having been made by running the Program).
77
Whether that is true depends on what the Program does.
78

  
79
  1. You may copy and distribute verbatim copies of the Program's
80
source code as you receive it, in any medium, provided that you
81
conspicuously and appropriately publish on each copy an appropriate
82
copyright notice and disclaimer of warranty; keep intact all the
83
notices that refer to this License and to the absence of any warranty;
84
and give any other recipients of the Program a copy of this License
85
along with the Program.
86

  
87
You may charge a fee for the physical act of transferring a copy, and
88
you may at your option offer warranty protection in exchange for a fee.
89

  
90
  2. You may modify your copy or copies of the Program or any portion
91
of it, thus forming a work based on the Program, and copy and
92
distribute such modifications or work under the terms of Section 1
93
above, provided that you also meet all of these conditions:
94

  
95
    a) You must cause the modified files to carry prominent notices
96
    stating that you changed the files and the date of any change.
97

  
98
    b) You must cause any work that you distribute or publish, that in
99
    whole or in part contains or is derived from the Program or any
100
    part thereof, to be licensed as a whole at no charge to all third
101
    parties under the terms of this License.
102

  
103
    c) If the modified program normally reads commands interactively
104
    when run, you must cause it, when started running for such
105
    interactive use in the most ordinary way, to print or display an
106
    announcement including an appropriate copyright notice and a
107
    notice that there is no warranty (or else, saying that you provide
108
    a warranty) and that users may redistribute the program under
109
    these conditions, and telling the user how to view a copy of this
110
    License.  (Exception: if the Program itself is interactive but
111
    does not normally print such an announcement, your work based on
112
    the Program is not required to print an announcement.)
113

114
These requirements apply to the modified work as a whole.  If
115
identifiable sections of that work are not derived from the Program,
116
and can be reasonably considered independent and separate works in
117
themselves, then this License, and its terms, do not apply to those
118
sections when you distribute them as separate works.  But when you
119
distribute the same sections as part of a whole which is a work based
120
on the Program, the distribution of the whole must be on the terms of
121
this License, whose permissions for other licensees extend to the
122
entire whole, and thus to each and every part regardless of who wrote it.
123

  
124
Thus, it is not the intent of this section to claim rights or contest
125
your rights to work written entirely by you; rather, the intent is to
126
exercise the right to control the distribution of derivative or
127
collective works based on the Program.
128

  
129
In addition, mere aggregation of another work not based on the Program
130
with the Program (or with a work based on the Program) on a volume of
131
a storage or distribution medium does not bring the other work under
132
the scope of this License.
133

  
134
  3. You may copy and distribute the Program (or a work based on it,
135
under Section 2) in object code or executable form under the terms of
136
Sections 1 and 2 above provided that you also do one of the following:
137

  
138
    a) Accompany it with the complete corresponding machine-readable
139
    source code, which must be distributed under the terms of Sections
140
    1 and 2 above on a medium customarily used for software interchange; or,
141

  
142
    b) Accompany it with a written offer, valid for at least three
143
    years, to give any third party, for a charge no more than your
144
    cost of physically performing source distribution, a complete
145
    machine-readable copy of the corresponding source code, to be
146
    distributed under the terms of Sections 1 and 2 above on a medium
147
    customarily used for software interchange; or,
148

  
149
    c) Accompany it with the information you received as to the offer
150
    to distribute corresponding source code.  (This alternative is
151
    allowed only for noncommercial distribution and only if you
152
    received the program in object code or executable form with such
153
    an offer, in accord with Subsection b above.)
154

  
155
The source code for a work means the preferred form of the work for
156
making modifications to it.  For an executable work, complete source
157
code means all the source code for all modules it contains, plus any
158
associated interface definition files, plus the scripts used to
159
control compilation and installation of the executable.  However, as a
160
special exception, the source code distributed need not include
161
anything that is normally distributed (in either source or binary
162
form) with the major components (compiler, kernel, and so on) of the
163
operating system on which the executable runs, unless that component
164
itself accompanies the executable.
165

  
166
If distribution of executable or object code is made by offering
167
access to copy from a designated place, then offering equivalent
168
access to copy the source code from the same place counts as
169
distribution of the source code, even though third parties are not
170
compelled to copy the source along with the object code.
171

172
  4. You may not copy, modify, sublicense, or distribute the Program
173
except as expressly provided under this License.  Any attempt
174
otherwise to copy, modify, sublicense or distribute the Program is
175
void, and will automatically terminate your rights under this License.
176
However, parties who have received copies, or rights, from you under
177
this License will not have their licenses terminated so long as such
178
parties remain in full compliance.
179

  
180
  5. You are not required to accept this License, since you have not
181
signed it.  However, nothing else grants you permission to modify or
182
distribute the Program or its derivative works.  These actions are
183
prohibited by law if you do not accept this License.  Therefore, by
184
modifying or distributing the Program (or any work based on the
185
Program), you indicate your acceptance of this License to do so, and
186
all its terms and conditions for copying, distributing or modifying
187
the Program or works based on it.
188

  
189
  6. Each time you redistribute the Program (or any work based on the
190
Program), the recipient automatically receives a license from the
191
original licensor to copy, distribute or modify the Program subject to
192
these terms and conditions.  You may not impose any further
193
restrictions on the recipients' exercise of the rights granted herein.
194
You are not responsible for enforcing compliance by third parties to
195
this License.
196

  
197
  7. If, as a consequence of a court judgment or allegation of patent
198
infringement or for any other reason (not limited to patent issues),
199
conditions are imposed on you (whether by court order, agreement or
200
otherwise) that contradict the conditions of this License, they do not
201
excuse you from the conditions of this License.  If you cannot
202
distribute so as to satisfy simultaneously your obligations under this
203
License and any other pertinent obligations, then as a consequence you
204
may not distribute the Program at all.  For example, if a patent
205
license would not permit royalty-free redistribution of the Program by
206
all those who receive copies directly or indirectly through you, then
207
the only way you could satisfy both it and this License would be to
208
refrain entirely from distribution of the Program.
209

  
210
If any portion of this section is held invalid or unenforceable under
211
any particular circumstance, the balance of the section is intended to
212
apply and the section as a whole is intended to apply in other
213
circumstances.
214

  
215
It is not the purpose of this section to induce you to infringe any
216
patents or other property right claims or to contest validity of any
217
such claims; this section has the sole purpose of protecting the
218
integrity of the free software distribution system, which is
219
implemented by public license practices.  Many people have made
220
generous contributions to the wide range of software distributed
221
through that system in reliance on consistent application of that
222
system; it is up to the author/donor to decide if he or she is willing
223
to distribute software through any other system and a licensee cannot
224
impose that choice.
225

  
226
This section is intended to make thoroughly clear what is believed to
227
be a consequence of the rest of this License.
228

229
  8. If the distribution and/or use of the Program is restricted in
230
certain countries either by patents or by copyrighted interfaces, the
231
original copyright holder who places the Program under this License
232
may add an explicit geographical distribution limitation excluding
233
those countries, so that distribution is permitted only in or among
234
countries not thus excluded.  In such case, this License incorporates
235
the limitation as if written in the body of this License.
236

  
237
  9. The Free Software Foundation may publish revised and/or new versions
238
of the General Public License from time to time.  Such new versions will
239
be similar in spirit to the present version, but may differ in detail to
240
address new problems or concerns.
241

  
242
Each version is given a distinguishing version number.  If the Program
243
specifies a version number of this License which applies to it and "any
244
later version", you have the option of following the terms and conditions
245
either of that version or of any later version published by the Free
246
Software Foundation.  If the Program does not specify a version number of
247
this License, you may choose any version ever published by the Free Software
248
Foundation.
249

  
250
  10. If you wish to incorporate parts of the Program into other free
251
programs whose distribution conditions are different, write to the author
252
to ask for permission.  For software which is copyrighted by the Free
253
Software Foundation, write to the Free Software Foundation; we sometimes
254
make exceptions for this.  Our decision will be guided by the two goals
255
of preserving the free status of all derivatives of our free software and
256
of promoting the sharing and reuse of software generally.
257

  
258
			    NO WARRANTY
259

  
260
  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
261
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
262
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
263
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
264
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
265
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
266
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
267
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
268
REPAIR OR CORRECTION.
269

  
270
  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
271
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
272
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
273
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
274
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
275
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
276
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
277
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
278
POSSIBILITY OF SUCH DAMAGES.
279

  
280
		     END OF TERMS AND CONDITIONS
281

282
	    How to Apply These Terms to Your New Programs
283

  
284
  If you develop a new program, and you want it to be of the greatest
285
possible use to the public, the best way to achieve this is to make it
286
free software which everyone can redistribute and change under these terms.
287

  
288
  To do so, attach the following notices to the program.  It is safest
289
to attach them to the start of each source file to most effectively
290
convey the exclusion of warranty; and each file should have at least
291
the "copyright" line and a pointer to where the full notice is found.
292

  
293
    <one line to give the program's name and a brief idea of what it does.>
294
    Copyright (C) <year>  <name of author>
295

  
296
    This program is free software; you can redistribute it and/or modify
297
    it under the terms of the GNU General Public License as published by
298
    the Free Software Foundation; either version 2 of the License, or
299
    (at your option) any later version.
300

  
301
    This program is distributed in the hope that it will be useful,
302
    but WITHOUT ANY WARRANTY; without even the implied warranty of
303
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
304
    GNU General Public License for more details.
305

  
306
    You should have received a copy of the GNU General Public License
307
    along with this program; if not, write to the Free Software
308
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
309

  
310

  
311
Also add information on how to contact you by electronic and paper mail.
312

  
313
If the program is interactive, make it output a short notice like this
314
when it starts in an interactive mode:
315

  
316
    Gnomovision version 69, Copyright (C) year name of author
317
    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
318
    This is free software, and you are welcome to redistribute it
319
    under certain conditions; type `show c' for details.
320

  
321
The hypothetical commands `show w' and `show c' should show the appropriate
322
parts of the General Public License.  Of course, the commands you use may
323
be called something other than `show w' and `show c'; they could even be
324
mouse-clicks or menu items--whatever suits your program.
325

  
326
You should also get your employer (if you work as a programmer) or your
327
school, if any, to sign a "copyright disclaimer" for the program, if
328
necessary.  Here is a sample; alter the names:
329

  
330
  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
331
  `Gnomovision' (which makes passes at compilers) written by James Hacker.
332

  
333
  <signature of Ty Coon>, 1 April 1989
334
  Ty Coon, President of Vice
335

  
336
This General Public License does not permit incorporating your program into
337
proprietary programs.  If your program is a subroutine library, you may
338
consider it more useful to permit linking proprietary applications with the
339
library.  If this is what you want to do, use the GNU Library General
340
Public License instead of this License.
branches/v2_0_0_prep/extensions/extCenterViewToPoint/doc/install.txt
1
Plugin de Centrado de la Vista sobre un punto para gvSIG. Instrucciones de instalaci?n
2

  
3
- Copiar el contenido de la carpeta bin/ en:
4
  gvSIG/extensiones/
5

  
branches/v2_0_0_prep/extensions/extCenterViewToPoint/doc/version_history.txt
1
Center View to point Plugin for gvSIG. Version history
2

  
3
This document lists the Change History of release versions of the Center View to point
4
Plugin for gvSIG
5

  
6

  
7
Version 0.1
8
Release Date: 16-11-2005
9

  
10
- Baseline version
11

  
branches/v2_0_0_prep/extensions/extCenterViewToPoint/build.number
1
#Build Number for ANT. Do not edit!
2
#Wed Mar 18 13:00:31 CET 2009
3
build.number=1228
branches/v2_0_0_prep/extensions/extCenterViewToPoint/src/com/iver/gvsig/centerviewpoint/CenterViewToPointExtension.java
1
/*
2
 * Created on 22-jun-2005
3
 *
4
 * gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
5
 *
6
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
7
 *
8
 * This program is free software; you can redistribute it and/or
9
 * modify it under the terms of the GNU General Public License
10
 * as published by the Free Software Foundation; either version 2
11
 * of the License, or (at your option) any later version.
12
 *
13
 * This program is distributed in the hope that it will be useful,
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 * GNU General Public License for more details.
17
 *
18
 * You should have received a copy of the GNU General Public License
19
 * along with this program; if not, write to the Free Software
20
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
21
 *
22
 * For more information, contact:
23
 *
24
 *  Generalitat Valenciana
25
 *   Conselleria d'Infraestructures i Transport
26
 *   Av. Blasco Ib??ez, 50
27
 *   46010 VALENCIA
28
 *   SPAIN
29
 *
30
 *      +34 963862235
31
 *   gvsig@gva.es
32
 *      www.gvsig.gva.es
33
 *
34
 *    or
35
 *
36
 *   IVER T.I. S.A
37
 *   Salamanca 50
38
 *   46005 Valencia
39
 *   Spain
40
 *
41
 *   +34 963163400
42
 *   dac@iver.es
43
 */
44
package com.iver.gvsig.centerviewpoint;
45

  
46
import java.awt.Color;
47

  
48
import org.gvsig.fmap.mapcontext.MapContext;
49
import org.gvsig.fmap.mapcontext.layers.FLayers;
50

  
51
import com.iver.andami.PluginServices;
52
import com.iver.andami.plugins.Extension;
53
import com.iver.cit.gvsig.project.documents.view.IProjectView;
54
import com.iver.cit.gvsig.project.documents.view.gui.View;
55
import com.iver.gvsig.centerviewtopoint.gui.InputCoordinatesPanel;
56

  
57
/**
58
 * The CenterViewToPointExtension class allows to center the View over a
59
 * concrete point given by its coordinates.
60
 *
61
 * @author jmorell
62
 */
63
public class CenterViewToPointExtension extends Extension {
64
	private View vista;
65
	public static Color COLOR=Color.red;
66
    /* (non-Javadoc)
67
     * @see com.iver.andami.plugins.Extension#inicializar()
68
     */
69
    public void initialize() {
70
        // TODO Auto-generated method stub
71
    	PluginServices.getIconTheme().registerDefault(
72
				"view-center-to-point",
73
				this.getClass().getClassLoader().getResource("images/centerviewtopoint.png")
74
			);
75
    }
76

  
77
    /* (non-Javadoc)
78
     * @see com.iver.andami.plugins.Extension#execute(java.lang.String)
79
     */
80
    public void execute(String actionCommand) {
81
		vista = (View)PluginServices.getMDIManager().getActiveWindow();
82
        MapContext mapContext = vista.getModel().getMapContext();
83
        InputCoordinatesPanel dataSelectionPanel = new InputCoordinatesPanel(mapContext);
84
        //dataSelectionPanel.setColor(color);
85
		PluginServices.getMDIManager().addWindow(dataSelectionPanel);
86
    }
87

  
88
    public View getView(){
89
    	return vista;
90
    }
91
    /* (non-Javadoc)
92
     * @see com.iver.andami.plugins.Extension#isEnabled()
93
     */
94
    public boolean isEnabled() {
95
		com.iver.andami.ui.mdiManager.IWindow f = PluginServices.getMDIManager()
96
		 .getActiveWindow();
97
		if (f == null) {
98
		    return false;
99
		}
100
		if (f.getClass() == View.class) {
101
		    View vista = (View) f;
102
		    IProjectView model = vista.getModel();
103
		    MapContext mapa = model.getMapContext();
104
		    FLayers layers = mapa.getLayers();
105
		    for (int i=0;i < layers.getLayersCount();i++) {
106
               if (layers.getLayer(i).isAvailable()) return true;
107
		    }
108
		}
109
		return false;
110

  
111
    }
112

  
113
    /* (non-Javadoc)
114
     * @see com.iver.andami.plugins.Extension#isVisible()
115
     */
116
    public boolean isVisible() {
117
		com.iver.andami.ui.mdiManager.IWindow f = PluginServices.getMDIManager()
118
		 .getActiveWindow();
119
		if (f == null) {
120
		    return false;
121
		}
122
		if (f.getClass() == View.class) {
123
		    View vista = (View) f;
124
		    IProjectView model = vista.getModel();
125
		    MapContext mapa = model.getMapContext();
126
            if (mapa.getLayers().getLayersCount() > 0) {
127
                return true;
128
            }
129
            return false;
130
        }
131
		return false;
132
	}
133

  
134
}
branches/v2_0_0_prep/extensions/extCenterViewToPoint/src/com/iver/gvsig/centerviewtopoint/gui/InputCoordinatesPanel.java
1
/*
2
 * Created on 08-nov-2005
3
 *
4
 * gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
5
 *
6
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
7
 *
8
 * This program is free software; you can redistribute it and/or
9
 * modify it under the terms of the GNU General Public License
10
 * as published by the Free Software Foundation; either version 2
11
 * of the License, or (at your option) any later version.
12
 *
13
 * This program is distributed in the hope that it will be useful,
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 * GNU General Public License for more details.
17
 *
18
 * You should have received a copy of the GNU General Public License
19
 * along with this program; if not, write to the Free Software
20
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
21
 *
22
 * For more information, contact:
23
 *
24
 *  Generalitat Valenciana
25
 *   Conselleria d'Infraestructures i Transport
26
 *   Av. Blasco Ib??ez, 50
27
 *   46010 VALENCIA
28
 *   SPAIN
29
 *
30
 *      +34 963862235
31
 *   gvsig@gva.es
32
 *      www.gvsig.gva.es
33
 *
34
 *    or
35
 *
36
 *   IVER T.I. S.A
37
 *   Salamanca 50
38
 *   46005 Valencia
39
 *   Spain
40
 *
41
 *   +34 963163400
42
 *   dac@iver.es
43
 */
44
package com.iver.gvsig.centerviewtopoint.gui;
45

  
46
import java.awt.Color;
47
import java.awt.Component;
48
import java.awt.event.ActionEvent;
49
import java.awt.event.ActionListener;
50
import java.awt.event.MouseEvent;
51
import java.awt.geom.Point2D;
52
import java.util.prefs.Preferences;
53

  
54
import javax.swing.JDialog;
55
import javax.swing.JLabel;
56
import javax.swing.JOptionPane;
57
import javax.swing.JPanel;
58
import javax.swing.JTextField;
59

  
60
import org.apache.log4j.Logger;
61
import org.cresques.cts.IProjection;
62
import org.gvsig.fmap.dal.feature.exception.CreateGeometryException;
63
import org.gvsig.fmap.geom.Geometry;
64
import org.gvsig.fmap.geom.GeometryLocator;
65
import org.gvsig.fmap.geom.GeometryManager;
66
import org.gvsig.fmap.geom.Geometry.SUBTYPES;
67
import org.gvsig.fmap.geom.Geometry.TYPES;
68
import org.gvsig.fmap.geom.primitive.Envelope;
69
import org.gvsig.fmap.geom.primitive.Point;
70
import org.gvsig.fmap.mapcontext.MapContext;
71
import org.gvsig.fmap.mapcontext.layers.GraphicLayer;
72
import org.gvsig.fmap.mapcontext.rendering.legend.FGraphic;
73
import org.gvsig.fmap.mapcontext.rendering.symbols.SymbologyFactory;
74
import org.gvsig.fmap.mapcontrol.MapControl;
75
import org.gvsig.fmap.mapcontrol.tools.Events.PointEvent;
76
import org.gvsig.gui.beans.AcceptCancelPanel;
77

  
78
import com.iver.andami.PluginServices;
79
import com.iver.andami.ui.mdiManager.IWindow;
80
import com.iver.andami.ui.mdiManager.WindowInfo;
81
import com.iver.cit.gvsig.gui.panels.ColorChooserPanel;
82
import com.iver.cit.gvsig.project.documents.view.toolListeners.InfoListener;
83
import com.iver.gvsig.centerviewpoint.CenterViewToPointExtension;
84

  
85
/**
86
 * The InputCoordinatesPanel class creates a JPanel where the
87
 * user can input the coordinates of the point of reference
88
 * for center the View.
89
 *
90
 * @author jmorell
91
 */
92
public class InputCoordinatesPanel extends JPanel implements IWindow {
93
    private static final long serialVersionUID = 1L;
94
    private JLabel labelX = null;
95
    private JTextField textX = null;
96
    private JLabel labelY = null;
97
    private JTextField textY = null;
98
    private MapControl mapControl;
99
    private WindowInfo viewInfo = null;
100
    private String firstCoordinate;
101
    private String secondCoordinate;
102
    private Point2D center;
103
    private GraphicLayer lyr;
104
    private ColorChooserPanel colorPanel;
105
	private AcceptCancelPanel okCancelPanel = null;
106
	protected static Logger logger = Logger.getLogger(InputCoordinatesPanel.class
107
			.getName());
108
	/**
109
     * This is the default constructor
110
     */
111
    public InputCoordinatesPanel(MapContext mapContext) {
112
        super();
113
        this.mapControl = new MapControl();
114
        mapControl.setMapContext(mapContext);
115
        lyr=mapControl.getMapContext().getGraphicsLayer();
116
        initializeCoordinates();
117
        initialize();
118
    }
119

  
120
    /**
121
     * Sets the proper text for the first and second coordinate labels,
122
     * depending on the kind of selected projection.
123
     *
124
     */
125
    private void initializeCoordinates() {
126
        IProjection proj = mapControl.getProjection();
127
        if (proj.isProjected()) {
128
            firstCoordinate = "X";
129
            secondCoordinate = "Y";
130
        } else {
131
            firstCoordinate = "Lon";
132
            secondCoordinate = "Lat";
133
        }
134
    }
135

  
136
    /**
137
     * Move the view's extent so that the specified point gets
138
     * centered.
139
     *
140
     * @throws Exception
141
     */
142
    private void zoomToCoordinates() throws Exception {
143
       try{
144
    	Envelope oldExtent = mapControl.getViewPort().getAdjustedExtent();
145
        double oldCenterX = oldExtent.getCenter(0);
146
        double oldCenterY = oldExtent.getCenter(1);
147
        double centerX = (new Double((String)textX.getText())).doubleValue();
148
        double centerY = (new Double((String)textY.getText())).doubleValue();
149
        center=new Point2D.Double(centerX,centerY);
150
        double movX = centerX-oldCenterX;
151
        double movY = centerY-oldCenterY;
152
        double upperLeftCornerX = oldExtent.getMinimum(0)+movX;
153
        double upperLeftCornerY = oldExtent.getMinimum(1)+movY;
154
        double maxX = oldExtent.getMaximum(0);
155
        double maxY = oldExtent.getMaximum(1);
156
        Envelope extent = GeometryLocator.getGeometryManager().createEnvelope(upperLeftCornerX, upperLeftCornerY, maxX, maxY, SUBTYPES.GEOM2D);
157
        mapControl.getViewPort().setEnvelope(extent);
158
       }catch (NumberFormatException e) {
159
    	   throw new Exception();
160
       }
161

  
162
    }
163

  
164
    /**
165
     * This method initializes this
166
     *
167
     * @return void
168
     */
169
    private void initialize() {
170
        labelY = new JLabel();
171
        labelY.setBounds(10, 35, 28, 20);
172
        labelY.setText(secondCoordinate + ":");
173
        labelX = new JLabel();
174
        labelX.setBounds(10, 10, 28, 20);
175
        labelX.setText(firstCoordinate + ":");
176
        this.setLayout(null);
177
        this.setSize(307, 100);
178
        this.add(labelX, null);
179
        this.add(getTextX(), null);
180
        this.add(labelY, null);
181
        this.add(getTextY(), null);
182
        this.add(getColorPanel());
183
        this.add(getOkCancelPanel(), null);
184
    }
185

  
186
    /**
187
     * This method initializes textX
188
     *
189
     * @return javax.swing.JTextField
190
     */
191
    private JTextField getTextX() {
192
    	if (textX == null) {
193
    		textX = new JTextField();
194
    		textX.setBounds(40, 10, 260, 20);
195
    		textX.addActionListener(new java.awt.event.ActionListener() {
196
    			public void actionPerformed(java.awt.event.ActionEvent e) {
197
    				textX.transferFocus();
198
    			}
199
    		});
200
    	}
201
    	return textX;
202
    }
203

  
204
    /**
205
     * This method initializes textY
206
     *
207
     * @return javax.swing.JTextField
208
     */
209
    private JTextField getTextY() {
210
    	if (textY == null) {
211
    		textY = new JTextField();
212
    		textY.setBounds(40, 35, 260, 20);
213
    		textY.addActionListener(new java.awt.event.ActionListener() {
214
    			public void actionPerformed(java.awt.event.ActionEvent e) {
215
    				textY.transferFocus();
216
    			}
217
    		});
218
    	}
219
    	return textY;
220
    }
221

  
222
    /* (non-Javadoc)
223
     * @see com.iver.andami.ui.mdiManager.View#getViewInfo()
224
     */
225
    public WindowInfo getWindowInfo() {
226
        // TODO Auto-generated method stub
227
        if (viewInfo == null) {
228
            viewInfo=new WindowInfo(WindowInfo.MODALDIALOG);
229
            viewInfo.setTitle(PluginServices.getText(this,"Centrar_la_Vista_sobre_un_punto"));
230
            viewInfo.setWidth(this.getWidth()+8);
231
            viewInfo.setHeight(this.getHeight());
232
        }
233
        return viewInfo;
234
    }
235
    /**
236
     * Opens the infoByPoint dialog for the selected point.
237
     *
238
     */
239
    private void openInfo(){
240
    	InfoListener infoListener=new InfoListener(mapControl);
241
    	MouseEvent e=new MouseEvent((Component)(((CenterViewToPointExtension)PluginServices.getExtension(CenterViewToPointExtension.class)).getView()),MouseEvent.BUTTON1,MouseEvent.ACTION_EVENT_MASK,MouseEvent.MOUSE_CLICKED,500,400,1,true);
242
    	Point2D centerPixels=mapControl.getViewPort().fromMapPoint(center.getX(),center.getY());
243
    	PointEvent pe=new PointEvent(centerPixels,e);
244
    	try {
245
			infoListener.point(pe);
246
		} catch (org.gvsig.fmap.mapcontrol.tools.BehaviorException e1) {
247
			// TODO Auto-generated catch block
248
			e1.printStackTrace();
249
		}
250
		if (mapControl.getMapContext().getLayers().getActives().length==0){
251
			JOptionPane.showMessageDialog((Component)PluginServices.getMainFrame(),PluginServices.getText(this,"no_hay_ninguna_capa_seleccionada")+" \n"+
252
					PluginServices.getText(this,"debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion"));
253
		}
254
    }
255

  
256
    /**
257
     * Draws the selected point on the view.
258
     *
259
     * @param color
260
     */
261
    private void drawPoint(Color color){
262
    	CenterViewToPointExtension.COLOR=color;
263
    	lyr.clearAllGraphics();
264
    	org.gvsig.fmap.mapcontext.rendering.symbols.ISymbol theSymbol = SymbologyFactory.createDefaultSymbolByShapeType(Geometry.TYPES.POINT,color);
265
        int idSymbol = lyr.addSymbol(theSymbol);
266
        GeometryManager geomManager = GeometryLocator.getGeometryManager();
267
//        org.gvsig.fmap.geom.Geometry geom = geomManager.create(center.getX(),center.getY());
268
        Point geom = null;
269
		try {
270
			geom = (Point)geomManager.create(TYPES.POINT, SUBTYPES.GEOM2D);
271
			geom.setX(center.getX());
272
			geom.setY(center.getY());
273
		} catch (org.gvsig.fmap.geom.exception.CreateGeometryException e) {
274
			logger.error(new CreateGeometryException(TYPES.POINT, SUBTYPES.GEOM2D, e));
275
		}
276
        FGraphic theGraphic = new FGraphic(geom, idSymbol);
277
        lyr.addGraphic(theGraphic);
278
        mapControl.drawGraphics();
279

  
280
    }
281

  
282

  
283
	/**
284
	 * This method initializes jPanel
285
	 *
286
	 * @return javax.swing.JPanel
287
	 */
288
	private JPanel getColorPanel() {
289
		if (colorPanel==null){
290
		 	colorPanel=new ColorChooserPanel();
291
		 	colorPanel.setAlpha(250);
292
		 	colorPanel.setColor(CenterViewToPointExtension.COLOR);
293
		 	colorPanel.setBounds(new java.awt.Rectangle(40,59,123,24));
294
		}
295
		 	return colorPanel;
296
	}
297

  
298
	/**
299
	 * This method initializes okCancelPanel
300
	 *
301
	 * @return javax.swing.JPanel
302
	 */
303
	private AcceptCancelPanel getOkCancelPanel() {
304
		if (okCancelPanel == null) {
305
			ActionListener okAction, cancelAction;
306
			okAction = new java.awt.event.ActionListener() {
307
    			public void actionPerformed(java.awt.event.ActionEvent e) {
308
    				try{
309
    				zoomToCoordinates();
310
    				}catch (Exception e1) {
311
    					JOptionPane.showMessageDialog((Component)PluginServices.getMainFrame(),PluginServices.getText(this,"formato_de_numero_incorrecto"));
312
    					return;
313
    				}
314
    				// y sale.
315
                    if (PluginServices.getMainFrame() == null)
316
                        ((JDialog) (getParent().getParent().getParent().getParent())).dispose();
317
                    else
318
                        PluginServices.getMDIManager().closeWindow(InputCoordinatesPanel.this);
319
                    Preferences prefs = Preferences.userRoot().node( "gvsig.centerViewToPoint" );
320
                    if( prefs.get("showInfo", "True").equalsIgnoreCase("True")){
321
                    	openInfo();
322
                    }
323
                    drawPoint(((ColorChooserPanel)getColorPanel()).getColor());
324
    			}
325
    		};
326
    		cancelAction = new ActionListener() {
327
				public void actionPerformed(ActionEvent e) {
328
					closeThis();
329
				}
330
    		};
331
			okCancelPanel = new AcceptCancelPanel(okAction, cancelAction);
332
			okCancelPanel.setBounds(new java.awt.Rectangle(40, 88, 260, 30));
333
		}
334
		return okCancelPanel;
335
	}
336

  
337
	/**
338
	 * Close the window.
339
	 *
340
	 */
341
	private void closeThis() {
342
		PluginServices.getMDIManager().closeWindow(this);
343

  
344
	}
345

  
346
	public Object getWindowProfile() {
347
		return WindowInfo.DIALOG_PROFILE;
348
	}
349

  
350

  
351
}  //  @jve:decl-index=0:visual-constraint="103,18"

Also available in: Unified diff