Revision 35663

View differences:

tags/v1_11_0_Build_1306/extensions/extCenterViewToPoint/.cvsignore
1
bin-test
0 2

  
tags/v1_11_0_Build_1306/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="plugin" value="${pluginName}"/>
18
	<property name="installDir" location="${andamiBaseDir}/gvSIG/extensiones/${pluginName}"/>
19
	<property name="buildNumberFile" location="build.number"/>
20

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

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

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

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

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

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

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

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

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

  
0 92

  
tags/v1_11_0_Build_1306/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="/libFMap"/>
8
	<classpathentry combineaccessrules="false" kind="src" path="/appgvSIG"/>
9
	<classpathentry kind="lib" path="/libFMap/lib/org.cresques.cts.jar"/>
10
	<classpathentry kind="lib" path="/_fwAndami/lib/org.gvsig.ui.jar"/>
11
	<classpathentry kind="var" path="JUNIT_HOME/junit.jar"/>
12
	<classpathentry kind="output" path="bin"/>
13
</classpath>
0 14

  
tags/v1_11_0_Build_1306/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>
0 25

  
tags/v1_11_0_Build_1306/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
}
0 18

  
tags/v1_11_0_Build_1306/extensions/extCenterViewToPoint/config/text_pl.properties
1
#Translations for language [pl]
2
#Mon Sep 21 10:02:02 CEST 2009
3
Centrar_la_Vista_sobre_un_punto=
4
com.iver.cit.gvsig.Herramientas=
5
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=
6
formato_de_numero_incorrecto=
7
no_hay_ninguna_capa_seleccionada=
8
Vista=
0 9

  
tags/v1_11_0_Build_1306/extensions/extCenterViewToPoint/config/text_it.properties
1
#Translations for language [it]
2
#Mon Sep 21 10:02:01 CEST 2009
3
Centrar_la_Vista_sobre_un_punto=Centra la visuale su un punto
4
com.iver.cit.gvsig.Herramientas=
5
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=Selezionare i layers di cui si desiderano informazioni.
6
formato_de_numero_incorrecto=Formato del numero errato.
7
no_hay_ninguna_capa_seleccionada=Nessun layer selezionato
8
Vista=Vista
0 9

  
tags/v1_11_0_Build_1306/extensions/extCenterViewToPoint/config/text_ro.properties
1
#Translations for language [ro]
2
#Mon Sep 21 10:02:02 CEST 2009
3
Centrar_la_Vista_sobre_un_punto=Centrare vedere la punct
4
com.iver.cit.gvsig.Herramientas=
5
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=Selecta\u0163i stratele despre care dori\u0163i s\u0103 ob\u0163ine\u0163i informa\u0163ii
6
formato_de_numero_incorrecto=Format numeric incorect
7
no_hay_ninguna_capa_seleccionada=Niciun strat selectat
8
Vista=Vedere
0 9

  
tags/v1_11_0_Build_1306/extensions/extCenterViewToPoint/config/text.properties
1
#Translations for language [es]
2
#Mon Sep 21 10:02:01 CEST 2009
3
Centrar_la_Vista_sobre_un_punto=Centrar la vista sobre un punto
4
com.iver.cit.gvsig.Herramientas=
5
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=Debe seleccionar las capas de las que quiera obtener informaci\u00f3n.
6
formato_de_numero_incorrecto=Formato de n\u00famero incorrecto.
7
no_hay_ninguna_capa_seleccionada=No hay ninguna capa seleccionada
8
Vista=Vista
0 9

  
tags/v1_11_0_Build_1306/extensions/extCenterViewToPoint/config/text_zh.properties
1
#Translations for language [zh]
2
#Mon Sep 21 10:02:02 CEST 2009
3
Centrar_la_Vista_sobre_un_punto=\u5411\u4e00\u70b9\u96c6\u4e2d
4
com.iver.cit.gvsig.Herramientas=
5
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=\u60a8\u5fc5\u987b\u9009\u5b9a\u60a8\u8981\u8bfb\u53d6\u4fe1\u606f\u7684\u56fe\u5c42
6
formato_de_numero_incorrecto=\u6570\u5b57\u683c\u5f0f\u65e0\u6548
7
no_hay_ninguna_capa_seleccionada=\u672a\u9009\u5b9a\u56fe\u5c42
8
Vista=\u89c6\u56fe
0 9

  
tags/v1_11_0_Build_1306/extensions/extCenterViewToPoint/config/text_pt.properties
1
#Translations for language [pt]
2
#Mon Sep 21 10:02:01 CEST 2009
3
Centrar_la_Vista_sobre_un_punto=Centrar vista no ponto
4
com.iver.cit.gvsig.Herramientas=
5
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=Seleccione os temas dos quais quer receber informa\u00e7\u00e3o.
6
formato_de_numero_incorrecto=Formato do n\u00famero incorrecto.
7
no_hay_ninguna_capa_seleccionada=N\u00e3o existe um tema seleccionado
8
Vista=Vista
0 9

  
tags/v1_11_0_Build_1306/extensions/extCenterViewToPoint/config/text_ca.properties
1
#Translations for language [ca]
2
#Mon Sep 21 10:02:01 CEST 2009
3
Centrar_la_Vista_sobre_un_punto=Centrar la Vista sobre un punt
4
com.iver.cit.gvsig.Herramientas=
5
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=Ha de seleccionar les capes de les quals vol obtindre informaci\u00f3
6
formato_de_numero_incorrecto=Format de n\u00famero incorrecte
7
no_hay_ninguna_capa_seleccionada=No hi ha cap capa seleccionada
8
Vista=Vista
0 9

  
tags/v1_11_0_Build_1306/extensions/extCenterViewToPoint/config/text_sr.properties
1
#Translations for language [sr]
2
#Mon Nov 02 08:36:02 CET 2009
3
Centrar_la_Vista_sobre_un_punto=Centrirati prikaz u jednoj ta\u010dki
4
com.iver.cit.gvsig.Herramientas=
5
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=Obele\u017eite lejere za koje su vam potrebne informacije.
6
formato_de_numero_incorrecto=Pogre\u0161an broj formata.
7
no_hay_ninguna_capa_seleccionada=Nijedan lejer nije obele\u017een.
8
Vista=Prikaz
0 9

  
tags/v1_11_0_Build_1306/extensions/extCenterViewToPoint/config/text_tr.properties
1
#Translations for language [tr]
2
#Mon Sep 21 10:02:02 CEST 2009
3
Centrar_la_Vista_sobre_un_punto=Pencereyi noktaya ortala
4
com.iver.cit.gvsig.Herramientas=
5
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=Bilgiyi elde etmek istedi\u011finiz katmanlar\u0131 se\u00e7in
6
formato_de_numero_incorrecto=Do\u011fru olmayan say\u0131 bi\u00e7imi
7
no_hay_ninguna_capa_seleccionada=Hi\u00e7 katman se\u00e7ilemedi
8
Vista=Pencere
tags/v1_11_0_Build_1306/extensions/extCenterViewToPoint/config/text_ru.properties
1
#Translations for language [ru]
2
#Mon Sep 21 10:02:02 CEST 2009
3
Centrar_la_Vista_sobre_un_punto=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u041a\u0430\u0440\u0442\u0443 \u043a \u0442\u043e\u0447\u043a\u0435
4
com.iver.cit.gvsig.Herramientas=
5
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0441\u043b\u043e\u0438 \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438
6
formato_de_numero_incorrecto=\u041d\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u0444\u043e\u0440\u043c\u0430\u0442 \u0447\u0438\u0441\u043b\u0430
7
no_hay_ninguna_capa_seleccionada=\u0421\u043b\u043e\u0439 \u043d\u0435 \u0432\u044b\u0431\u0440\u0430\u043d
8
Vista=\u041a\u0430\u0440\u0442\u0430
tags/v1_11_0_Build_1306/extensions/extCenterViewToPoint/config/text_de.properties
1
#Translations for language [de]
2
#Mon Sep 21 10:02:01 CEST 2009
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
0 9

  
tags/v1_11_0_Build_1306/extensions/extCenterViewToPoint/config/text_sw.properties
1
#Translations for language [sw]
2
#Mon Sep 21 10:02:02 CEST 2009
3
Centrar_la_Vista_sobre_un_punto=Weka Mtazamo wa Kati juu ya Nukta
4
com.iver.cit.gvsig.Herramientas=
5
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=Chagua Safu Unayotaka Kuitumia Kupata Habari
6
formato_de_numero_incorrecto=Namba ya Muundo Siyo Sahihi.
7
no_hay_ninguna_capa_seleccionada=Hakuna Tabaka Iliyochaguliwa
8
Vista=Angalia/kagua
0 9

  
tags/v1_11_0_Build_1306/extensions/extCenterViewToPoint/config/text_el.properties
1
#Translations for language [el]
2
#Mon Sep 21 10:02:02 CEST 2009
3
Centrar_la_Vista_sobre_un_punto=\u039a\u03b5\u03bd\u03c4\u03c1\u03ac\u03c1\u03b9\u03c3\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03cc\u03c8\u03b7\u03c2 \u03c3\u03b5 \u03c3\u03b7\u03bc\u03b5\u03af\u03bf
4
com.iver.cit.gvsig.Herramientas=
5
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03c4\u03b1 \u03b5\u03c0\u03af\u03c0\u03b5\u03b4\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b1 \u03bf\u03c0\u03bf\u03af\u03b1 \u03b5\u03c0\u03b9\u03b8\u03c5\u03bc\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03bd\u03c4\u03bb\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2
6
formato_de_numero_incorrecto=\u0395\u03c3\u03c6\u03b1\u03bb\u03bc\u03ad\u03bd\u03bf \u03b1\u03c1\u03b9\u03b8\u03bc\u03b7\u03c4\u03b9\u03ba\u03cc \u03c6\u03bf\u03c1\u03bc\u03ac\u03c4
7
no_hay_ninguna_capa_seleccionada=\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u03b5\u03c0\u03af\u03c0\u03b5\u03b4\u03bf
8
Vista=\u038c\u03c8\u03b7
tags/v1_11_0_Build_1306/extensions/extCenterViewToPoint/config/text_en.properties
1
#Translations for language [en]
2
#Mon Sep 21 10:02:01 CEST 2009
3
Centrar_la_Vista_sobre_un_punto=Center view to point
4
com.iver.cit.gvsig.Herramientas=
5
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=Select the layers you want to get information from
6
formato_de_numero_incorrecto=Incorrect number format
7
no_hay_ninguna_capa_seleccionada=No layer has been selected
8
Vista=View
0 9

  
tags/v1_11_0_Build_1306/extensions/extCenterViewToPoint/config/text_gl.properties
1
#Translations for language [gl]
2
#Mon Sep 21 10:02:01 CEST 2009
3
Centrar_la_Vista_sobre_un_punto=Centrar a vista sobre un punto
4
com.iver.cit.gvsig.Herramientas=
5
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=Debe seleccionar as capas das que desexe obter informaci\u00f3n
6
formato_de_numero_incorrecto=Formato de n\u00famero incorrecto.
7
no_hay_ninguna_capa_seleccionada=Non hai ningunha capa seleccionada
8
Vista=Vista
0 9

  
tags/v1_11_0_Build_1306/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>
0 21

  
tags/v1_11_0_Build_1306/extensions/extCenterViewToPoint/config/text_cs.properties
1
#Translations for language [cs]
2
#Mon Sep 21 10:02:01 CEST 2009
3
Centrar_la_Vista_sobre_un_punto=Centruj pohled na st\u0159ed
4
com.iver.cit.gvsig.Herramientas=
5
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=Ozna\u010dte vrstvy, ze kter\u00fdch chcete z\u00edskat informace
6
formato_de_numero_incorrecto=Neplatn\u00e9 \u010d\u00edslo form\u00e1tu
7
no_hay_ninguna_capa_seleccionada=Nebyla vybr\u00e1na \u017e\u00e1dn\u00e1 vrstva
8
Vista=Pohled
0 9

  
tags/v1_11_0_Build_1306/extensions/extCenterViewToPoint/config/text_pt_BR.properties
1
#Translations for language [pt_BR]
2
#Mon Sep 21 10:02:01 CEST 2009
3
Centrar_la_Vista_sobre_un_punto=Centrar o bloco no ponto
4
com.iver.cit.gvsig.Herramientas=
5
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=Selecione os planos de informa\u00e7\u00f5es que queira obter informa\u00e7\u00f5es.
6
formato_de_numero_incorrecto=Formato do n\u00famero incorreto.
7
no_hay_ninguna_capa_seleccionada=N\u00e3o existe nenhum plano de informa\u00e7\u00e3o selecionado
8
Vista=Bloco
tags/v1_11_0_Build_1306/extensions/extCenterViewToPoint/config/text_fr.properties
1
#Translations for language [fr]
2
#Mon Sep 21 10:02:01 CEST 2009
3
Centrar_la_Vista_sobre_un_punto=Centrer la vue sur un point
4
com.iver.cit.gvsig.Herramientas=
5
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=Vous devez s\u00e9lectionner les couches pour lesquelles vous souhaitez obtenir des informations.
6
formato_de_numero_incorrecto=Format incorrect
7
no_hay_ninguna_capa_seleccionada=Aucune couche s\u00e9lectionn\u00e9e
8
Vista=Vue
0 9

  
tags/v1_11_0_Build_1306/extensions/extCenterViewToPoint/config/text_en_US.properties
1
#Translations for language [en_US]
2
#Mon Sep 21 10:02:01 CEST 2009
3
Centrar_la_Vista_sobre_un_punto=Center view on point...
4
com.iver.cit.gvsig.Herramientas=
5
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=Select one or more layers to query.
6
formato_de_numero_incorrecto=Incorrect number format.
7
no_hay_ninguna_capa_seleccionada=No layer has been selected.
8
Vista=View
tags/v1_11_0_Build_1306/extensions/extCenterViewToPoint/config/text_eu.properties
1
#Translations for language [eu]
2
#Mon Sep 21 10:02:01 CEST 2009
3
Centrar_la_Vista_sobre_un_punto=Zentratu bista puntu batekiko
4
com.iver.cit.gvsig.Herramientas=
5
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=Geruzak hautatu behar dituzu horien gaineko informazioa jasotzeko.
6
formato_de_numero_incorrecto=Zenbakiaren formatua okerra da
7
no_hay_ninguna_capa_seleccionada=Ez dago hautatutako geruzarik
8
Vista=Bista
0 9

  
tags/v1_11_0_Build_1306/extensions/extCenterViewToPoint/config/text_nl.properties
1
#Translations for language [nl]
2
#Tue Aug 11 10:49:14 CEST 2009
3
Centrar_la_Vista_sobre_un_punto=
4
com.iver.cit.gvsig.Herramientas=
5
debe_seleccionar_las_capas_de_las_que_quiera_obtener_informacion=
6
formato_de_numero_incorrecto=
7
no_hay_ninguna_capa_seleccionada=
8
Vista=
0 9

  
tags/v1_11_0_Build_1306/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.
0 341

  
tags/v1_11_0_Build_1306/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

  
0 6

  
tags/v1_11_0_Build_1306/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

  
0 12

  
tags/v1_11_0_Build_1306/extensions/extCenterViewToPoint/build.number
1
#Build Number for ANT. Do not edit!
2
#Fri Jul 08 10:28:50 CEST 2011
3
build.number=1306
0 4

  
tags/v1_11_0_Build_1306/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 com.iver.andami.PluginServices;
49
import com.iver.andami.plugins.Extension;
50
import com.iver.cit.gvsig.fmap.MapContext;
51
import com.iver.cit.gvsig.fmap.layers.FLayers;
52
import com.iver.cit.gvsig.project.documents.view.IProjectView;
53
import com.iver.cit.gvsig.project.documents.view.gui.View;
54
import com.iver.gvsig.centerviewtopoint.gui.InputCoordinatesPanel;
55

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

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

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

  
110
    }
111

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

  
133
}
0 134

  
tags/v1_11_0_Build_1306/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.awt.geom.Rectangle2D;
53
import java.util.prefs.Preferences;
54

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

  
61
import org.cresques.cts.IProjection;
62
import org.gvsig.gui.beans.AcceptCancelPanel;
63

  
64
import com.iver.andami.PluginServices;
65
import com.iver.andami.ui.mdiManager.IWindow;
66
import com.iver.andami.ui.mdiManager.WindowInfo;
67
import com.iver.cit.gvsig.fmap.MapContext;
68
import com.iver.cit.gvsig.fmap.MapControl;
69
import com.iver.cit.gvsig.fmap.core.FShape;
70
import com.iver.cit.gvsig.fmap.core.IGeometry;
71
import com.iver.cit.gvsig.fmap.core.ShapeFactory;
72
import com.iver.cit.gvsig.fmap.core.SymbologyFactory;
73
import com.iver.cit.gvsig.fmap.core.symbols.ISymbol;
74
import com.iver.cit.gvsig.fmap.layers.GraphicLayer;
75
import com.iver.cit.gvsig.fmap.rendering.FGraphic;
76
import com.iver.cit.gvsig.fmap.tools.BehaviorException;
77
import com.iver.cit.gvsig.fmap.tools.Events.PointEvent;
78
import com.iver.cit.gvsig.gui.panels.ColorChooserPanel;
79
import com.iver.cit.gvsig.project.documents.view.toolListeners.InfoListener;
80
import com.iver.gvsig.centerviewpoint.CenterViewToPointExtension;
81

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

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

  
131
    /**
132
     * Move the view's extent so that the specified point gets
133
     * centered.
134
     *
135
     * @throws Exception
136
     */
137
    private void zoomToCoordinates() throws Exception {
138
       try{
139
    	Rectangle2D oldExtent = mapControl.getViewPort().getAdjustedExtent();
140
        double oldCenterX = oldExtent.getCenterX();
141
        double oldCenterY = oldExtent.getCenterY();
142
        double centerX = (new Double((String)textX.getText())).doubleValue();
143
        double centerY = (new Double((String)textY.getText())).doubleValue();
144
        center=new Point2D.Double(centerX,centerY);
145
        double movX = centerX-oldCenterX;
146
        double movY = centerY-oldCenterY;
147
        double upperLeftCornerX = oldExtent.getMinX()+movX;
148
        double upperLeftCornerY = oldExtent.getMinY()+movY;
149
        double width = oldExtent.getWidth();
150
        double height = oldExtent.getHeight();
151
        Rectangle2D extent = new Rectangle2D.Double(upperLeftCornerX, upperLeftCornerY, width, height);
152
        mapControl.getViewPort().setExtent(extent);
153
       }catch (NumberFormatException e) {
154
    	   throw new Exception();
155
       }
156

  
157
    }
158

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

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

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

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

  
251
    /**
252
     * Draws the selected point on the view.
253
     *
254
     * @param color
255
     */
256
    private void drawPoint(Color color){
257
    	CenterViewToPointExtension.COLOR=color;
258
    	lyr.clearAllGraphics();
259
    	ISymbol theSymbol = SymbologyFactory.createDefaultSymbolByShapeType(FShape.POINT,color);
260
        int idSymbol = lyr.addSymbol(theSymbol);
261
        IGeometry geom = ShapeFactory.createPoint2D(center.getX(),center.getY());
262
        FGraphic theGraphic = new FGraphic(geom, idSymbol);
263
        lyr.addGraphic(theGraphic);
264
        mapControl.drawGraphics();
265

  
266
    }
267

  
268

  
269
	/**
270
	 * This method initializes jPanel
271
	 *
272
	 * @return javax.swing.JPanel
273
	 */
274
	private JPanel getColorPanel() {
275
		if (colorPanel==null){
276
		 	colorPanel=new ColorChooserPanel();
277
		 	colorPanel.setAlpha(250);
278
		 	colorPanel.setColor(CenterViewToPointExtension.COLOR);
279
		 	colorPanel.setBounds(new java.awt.Rectangle(40,59,123,24));
280
		}
281
		 	return colorPanel;
282
	}
283

  
284
	/**
285
	 * This method initializes okCancelPanel
286
	 *
287
	 * @return javax.swing.JPanel
288
	 */
289
	private AcceptCancelPanel getOkCancelPanel() {
290
		if (okCancelPanel == null) {
291
			ActionListener okAction, cancelAction;
292
			okAction = new java.awt.event.ActionListener() {
293
    			public void actionPerformed(java.awt.event.ActionEvent e) {
294
    				try{
295
    				zoomToCoordinates();
296
    				}catch (Exception e1) {
297
    					JOptionPane.showMessageDialog((Component)PluginServices.getMainFrame(),PluginServices.getText(this,"formato_de_numero_incorrecto"));
298
    					return;
299
    				}
300
    				// y sale.
301
                    if (PluginServices.getMainFrame() == null)
302
                        ((JDialog) (getParent().getParent().getParent().getParent())).dispose();
303
                    else
304
                        PluginServices.getMDIManager().closeWindow(InputCoordinatesPanel.this);
305
                    Preferences prefs = Preferences.userRoot().node( "gvsig.centerViewToPoint" );
306
                    if( prefs.get("showInfo", "True").equalsIgnoreCase("True")){
307
                    	openInfo();
308
                    }
309
                    drawPoint(((ColorChooserPanel)getColorPanel()).getColor());
310
    			}
311
    		};
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff