Revision 46

View differences:

tags/2059/prepare-workspace.xml
1
<project name="org.gvsig.initial.build" default="prepare-workspace">
2

  
3
	<dirname property="org.gvsig.initial.build.basedir" file="${ant.file.org.gvsig.initial.build}" />
4

  
5
	<property name="workspace.basedir" value="${org.gvsig.initial.build.basedir}/.." />
6
	<property name="build.basedir"
7
		value="${workspace.basedir}/org.gvsig.maven.base.build" description="Eclipse workspace location" />
8
	<property name="build.jar.version" value="1.0.8-SNAPSHOT" />
9
	<property name="build.jar.file"
10
		value="org.gvsig.maven.base.build-${build.jar.version}.jar" />
11

  
12
	<property name="ant.libs.dir" location="${build.basedir}"
13
		description="Additional ant tasks libs folder" />
14

  
15
	<target name="check-maven-base-build-available">
16
		<available
17
			file="${user.home}/.m2/repository/org/gvsig/org.gvsig.maven.base.build/${build.jar.version}/${build.jar.file}"
18
			property="maven-base-build-available" />
19
	</target>
20

  
21
	<target name="get-maven-base-build-local" depends="check-maven-base-build-available"
22
		if="maven-base-build-available">
23
		<!-- Unzip de build jar file from the maven repository into the workspace 
24
			root folder -->
25
		<copy todir="${workspace.basedir}" preservelastmodified="false"
26
			filtering="false">
27
			<zipfileset
28
				src="${user.home}/.m2/repository/org/gvsig/org.gvsig.maven.base.build/${build.jar.version}/${build.jar.file}">
29
				<patternset>
30
					<exclude name="META-INF/**" />
31
				</patternset>
32
			</zipfileset>
33
		</copy>
34
	</target>
35

  
36
	<target name="get-maven-base-build-remote" depends="check-maven-base-build-available"
37
		unless="maven-base-build-available">
38
		<mkdir dir="target" />
39

  
40
		<!-- Download the build jar file -->
41
		<get
42
			src="http://devel.gvsig.org/m2repo/j2se/org/gvsig/org.gvsig.maven.base.build/${build.jar.version}/${build.jar.file}"
43
			dest="target/${build.jar.file}" verbose="true" />
44

  
45
		<!-- Unzip de build jar file into the workspace root folder -->
46
		<copy todir="${workspace.basedir}" preservelastmodified="false"
47
			filtering="false">
48
			<zipfileset src="target/${build.jar.file}">
49
				<patternset>
50
					<exclude name="META-INF/**" />
51
				</patternset>
52
			</zipfileset>
53
		</copy>
54

  
55
	</target>
56

  
57
	<target name="find.depends.natives.file">
58
		<condition property="depends.natives.file.exists">
59
			<available
60
				file="${org.gvsig.initial.build.basedir}/DEPENDS_ON_NATIVE_LIBRARIES" />
61
		</condition>
62
	</target>
63

  
64
	<target name="find.gvsig.platform.properties.file" depends="find.depends.natives.file"
65
		if="depends.natives.file.exists">
66
		<condition property="gvsig.platform.exists">
67
			<available file="${user.home}/.gvsig.platform.properties" />
68
		</condition>
69
	</target>
70

  
71
	<target name="check.gvsig.platform.properties" depends="find.gvsig.platform.properties.file">
72
		<fail if="depends.natives.file.exists" unless="gvsig.platform.exists">
73
			ERROR!!
74

  
75
			You have to define your gvSIG platform properties,
76
			by creating the file: ${user.home}/.gvsig.platform.properties
77
			with the following content:
78

  
79
			native_platform=linux
80
			native_distribution=all
81
			native_compiler=gcc4
82
			native_arch=i386
83
			native_libraryType=dynamic
84
			export
85
			native_classifier=${native_platform}-${native_distribution}-${native_compiler}-${native_arch}-${native_libraryType}
86

  
87
			Replace the fifth initial variables values with the ones appropiate
88
			to your platform.
89

  
90
			If you use maven in the command line, you can use the previous file
91
			also
92
			to define the MAVEN_OPTS environment variable, by adding to your
93
			.bash_rc file something like this:
94

  
95
			if [ -f "${HOME}/.gvsig.platform.properties" ]
96
			then
97
			. ${HOME}/.gvsig.platform.properties
98
			export MAVEN_OPTS="-Xmx256M -XX:MaxPermSize=64m
99
			-Dnative-classifier=${native_classifier}"
100
			else
101
			export MAVEN_OPTS="-Xmx256M -XX:MaxPermSize=64m"
102
			fi
103

  
104
			It will work if you use the bash shell. In any other case or platform,
105
			you'll
106
			have to define your MAVEN_OPTS environment variable and set the
107
			"native-classifier" parameter directly.
108
		</fail>
109

  
110
	</target>
111

  
112
	<target name="prepare-workspace"
113
		depends="get-maven-base-build-local,get-maven-base-build-remote,check.gvsig.platform.properties">
114

  
115
		<mkdir dir="target" />
116

  
117
		<chmod dir="${build.basedir}/maven/bin" perm="u+x" includes="m2,mvn,mvnDebug" />
118

  
119
		<!-- Copy the maven launchers to the workspace metadata folder -->
120
		<copy todir="${workspace.basedir}/.metadata">
121
			<fileset dir="${build.basedir}/eclipse-launchers">
122
				<exclude name="**/org.eclipse.jdt.core.prefs" />
123
				<exclude name="**/org.eclipse.core.variables.prefs" />
124
			</fileset>
125
		</copy>
126

  
127
		<concat
128
			destfile="${workspace.basedir}/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.core.prefs"
129
			append="true">
130
			<filelist
131
				dir="${build.basedir}/eclipse-launchers/.plugins/org.eclipse.core.runtime/.settings"
132
				files="org.eclipse.jdt.core.prefs" />
133
		</concat>
134
		<concat
135
			destfile="${workspace.basedir}/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.variables.prefs"
136
			append="true">
137
			<filelist
138
				dir="${build.basedir}/eclipse-launchers/.plugins/org.eclipse.core.runtime/.settings"
139
				files="org.eclipse.core.variables.prefs" />
140
		</concat>
141

  
142
		<!-- Configure the eclipse workspace -->
143
		<ant antfile="${build.basedir}/maven-goals.xml" target="mvn-configure-eclipse-workspace" />
144

  
145
		<!-- Configure the gvSIG profile -->
146
		<ant antfile="${build.basedir}/check-gvsig-profile.xml" />
147

  
148
		<property name="user-settings-file-location" value="${user.home}/.m2/settings.xml" />
149

  
150
		<taskdef name="stringutil" classname="ise.antelope.tasks.StringUtilTask"
151
			classpath="${workspace.basedir}/org.gvsig.maven.base.build/antelopetasks-3.2.10.jar" />
152

  
153
		<taskdef name="xmltask" classname="com.oopsconsultancy.xmltask.ant.XmlTask">
154
			<classpath>
155
				<pathelement
156
					location="${ant.libs.dir}/com.oopsconsultancy.xmltask-1.16.1.jar" />
157
			</classpath>
158
		</taskdef>
159

  
160
		<xmltask source="${user-settings-file-location}" dest="${user-settings-file-location}">
161
			<copy
162
				path="//:settings/:profiles/:profile[:id/text() = 'gvsig-install']/:properties/:gvsig.install.dir/text()"
163
				property="current-gvsig-location" />
164
		</xmltask>
165
		<echo>current-gvsig-location = ${current-gvsig-location}</echo>
166

  
167

  
168
		<stringutil string="${current-gvsig-location}" property="current-gvsig-location">
169

  
170
			<replace regex="\\" replacement="/" />
171
		</stringutil>
172
		<stringutil string="${workspace.basedir}" property="workspace.basedir">
173

  
174
			<replace regex="\\" replacement="/" />
175
		</stringutil>
176

  
177
		<replace
178
			file="${workspace.basedir}/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.core.prefs"
179
			token="@GVSIG_HOME@" value="${current-gvsig-location}" />
180
		<replace
181
			file="${workspace.basedir}/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.variables.prefs"
182
			token="@GVSIG_HOME@" value="${current-gvsig-location}" />
183

  
184
		<!-- Compile, install and generate eclipse projects -->
185
		<ant antfile="${build.basedir}/maven-goals.xml" target="mvn-install-and-eclipse-eclipse" 
186
			/> 
187
		<echo>INFORMATION!!!</echo>
188
		<echo>Restart eclipse and then proceed to import the subprojects
189
			contained into the main project</echo>
190

  
191
		<!-- TODO: copiar al proyecto de configuración general -->
192
	</target>
193

  
194
	<target name="clean">
195
		<delete dir="target" />
196
	</target>
197

  
198
</project>
tags/2059/pom.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2

  
3
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
	<modelVersion>4.0.0</modelVersion>
6
	<artifactId>org.gvsig.app.document.layout.app</artifactId>
7
	<packaging>pom</packaging>
8
	<version>2.0.0-SNAPSHOT</version>
9
    <name>Layout document plugins</name>
10
    <description>Layout document plugins</description>
11
	<parent>
12
		<groupId>org.gvsig</groupId>
13
		<artifactId>org.gvsig.maven.base.extension.pom</artifactId>
14
		<version>1.0.8-SNAPSHOT</version>
15
	</parent>
16

  
17
    <scm>
18
        <connection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep/extensions/org.gvsig.app.document.layout.app</connection>
19
        <developerConnection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep/extensions/org.gvsig.app.document.layout.app</developerConnection>
20
        <url>https://devel.gvsig.org/redmine/projects/gvsig-desktop/repository/show/branches/v2_0_0_prep/extensions/org.gvsig.app.document.layout.app</url>
21
    </scm>
22

  
23
	<developers>
24
		<developer>
25
			<id>jjdelcerro</id>
26
			<name>Joaqu?n Jos? del Cerro</name>
27
			<email>jjdelcerro@gvsig.org</email>
28
			<roles>
29
				<role>Architect</role>
30
				<role>Developer</role>
31
			</roles>
32
		</developer>
33
		<developer>
34
			<id>cordinyana</id>
35
			<name>C?sar Ordi?ana</name>
36
			<email>cordinyana@gvsig.com</email>
37
			<roles>
38
				<role>Architect</role>
39
				<role>Developer</role>
40
			</roles>
41
		</developer>
42
	</developers>
43
	<repositories>
44
		<repository>
45
			<id>gvsig-public-http-repository</id>
46
			<name>gvSIG maven public HTTP repository</name>
47
            <url>http://devel.gvsig.org/m2repo/j2se</url>
48
			<releases>
49
				<enabled>true</enabled>
50
				<updatePolicy>daily</updatePolicy>
51
				<checksumPolicy>warn</checksumPolicy>
52
			</releases>
53
			<snapshots>
54
				<enabled>true</enabled>
55
				<updatePolicy>daily</updatePolicy>
56
				<checksumPolicy>warn</checksumPolicy>
57
			</snapshots>
58
		</repository>
59
	</repositories>
60
	<dependencyManagement>
61
		<dependencies>
62
			<dependency>
63
				<groupId>org.gvsig</groupId>
64
				<artifactId>org.gvsig.core.maven.dependencies</artifactId>
65
				<version>2.0.1-SNAPSHOT</version>
66
				<type>pom</type>
67
				<scope>import</scope>
68
			</dependency>
69
			<dependency>
70
				<groupId>org.gvsig</groupId>
71
				<artifactId>org.gvsig.andami</artifactId>
72
				<version>2.0-SNAPSHOT</version>
73
				<scope>compile</scope>
74
			</dependency>
75
			<dependency>
76
				<groupId>org.gvsig</groupId>
77
				<artifactId>org.gvsig.app</artifactId>
78
				<version>2.0-SNAPSHOT</version>
79
				<scope>compile</scope>
80
			</dependency>
81
		</dependencies>
82
	</dependencyManagement>
83
	<modules>
84
		<module>org.gvsig.app.document.layout.app.mainplugin</module>
85
	</modules>
86
	<properties>
87
		<package.info.state>beta2</package.info.state>
88
		<!-- alpha-devel -->
89
	</properties>
90
</project>
tags/2059/org.gvsig.app.document.layout.app.mainplugin/src/test/resources/README.txt
1
Put into this folder the resources needed by your test classes.
2

  
3
This folder is added to the Tests classpath, so you can load any resources 
4
through the ClassLoader.
5

  
6
By default, in this folder you can find an example of log4j configuration,
7
prepared to log messages through the console, so logging works when you
8
run your tests classes.
tags/2059/org.gvsig.app.document.layout.app.mainplugin/src/test/resources/log4j.xml
1
<?xml version="1.0" encoding="ISO-8859-1" ?>
2
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
3

  
4
<!-- 
5
Log4J configuration file for unit tests execution.
6
 -->
7
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
8

  
9
	<!-- Appender configuration to show logging messages through the console -->
10
	<appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
11
		<layout class="org.apache.log4j.PatternLayout">
12
			<param name="ConversionPattern" value="%d{HH:mm:ss,SSS} %-5p [%c{2}.%M()]\n  %m%n" />
13
		</layout>
14
	</appender>
15

  
16
	<!-- 
17
	Activate logging messages of DEBUG level of higher only for the
18
	org.gvsig.tools packages.
19
	You can put full classes names or packages instead, to configure
20
	logging for all the classes and subpackages of the package.
21
	-->
22
	<category name="org.gvsig.tools">
23
		<priority value="DEBUG" />
24
	</category>
25
	<category name="org.gvsig.app.document.layout">
26
		<priority value="DEBUG" />
27
	</category>
28

  
29
	<!-- 
30
	By default, show only logging messages of INFO level or higher, 
31
	through the previously configured CONSOLE appender. 
32
	-->
33
	<root>
34
		<priority value="INFO" />
35
		<appender-ref ref="CONSOLE" />
36
	</root>
37
</log4j:configuration>
tags/2059/org.gvsig.app.document.layout.app.mainplugin/src/main/resources/text.properties
1
Encuadre_Vista=Encuadre sobre la vista
2
Zoom_Completo_Vista=Zoom completo sobre la vista
3
Zoom_Mas_Vista=Zoom m\u00e1s sobre la vista
4
Zoom_Menos_Vista=Zoom menos sobre la vista
5
seleccionar_por_rectangulo=Seleccionar por rect\u00e1ngulo
6
pila_de_comandos=Pila de comandos
7
Imprimir=Imprimir
8
tamano_posicion=Tama\u00f1o/posici\u00f3n
9
insertar_localizador=Insertar localizador
10
_Undo_redo_history=Pila de comandos
11

  
tags/2059/org.gvsig.app.document.layout.app.mainplugin/src/main/resources/text_en.properties
1
Encuadre_Vista=View frame pan
2
Zoom_Completo_Vista=Full zoom on view
3
Zoom_Mas_Vista=Zoom in on view
4
Zoom_Menos_Vista=Zoom out on view
5
seleccionar_por_rectangulo=Select by rectangle
6
pila_de_comandos=Command stack
7
Imprimir=Print
8
tamano_posicion=Size/location
9
insertar_localizador=Insert locator
10
_Undo_redo_history=Command stack
tags/2059/org.gvsig.app.document.layout.app.mainplugin/src/main/resources/config.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<plugin-config>
3
    <libraries library-dir="lib"/>
4
    <depends plugin-name="org.gvsig.app" />
5
	<resourceBundle name="text"/>
6
	<label-set class-name="org.gvsig.app.project.documents.layout.gui.LayoutPanel">
7
		<label id="units" size="80"/>
8
		<label id="2" size="180"/>
9
		<label id="3" size="180"/>
10
		<label id="4" size="50"/>
11
		<label id="5" size="50"/>
12
	</label-set>
13
	<extensions>
14
		<extension class-name="org.gvsig.app.extension.LayoutMainExtension"
15
			description="Extensi?n encargada de gestionar los layouts."
16
			active="true"
17
			priority="10">
18
			
19
			<!-- Makes no sense here (?)
20
			<menu text="Mapa"
21
				position="500"
22
				is_separator="true"/>
23
			-->
24
			
25
			<action 
26
        		name="application-layout-template-open"
27
            	label="abrir_plantilla" 
28
            	tooltip="abrir_plantilla" 
29
        		action-command="application-layout-template-open" 
30
        		icon="application-layout-template-open"
31
        		position="700600000"
32
        		/>
33

  
34
			<menu text="Mapa/abrir_plantilla"
35
				name="application-layout-template-open" />
36
			
37
		</extension>
38

  
39
		<extension class-name="org.gvsig.app.extension.ExportLayoutExtension"
40
			description="Extension for exporting the layout to PDF and PostScript."
41
			active="true">
42

  
43
			<!-- Makes no sense here?
44
			<menu text="Mapa/exportar"
45
				position="50010"
46
				is_separator="true"/>
47
			-->
48
			
49
			<action 
50
        		name="application-export-to-pdf"
51
            	label="exportar_pdf" 
52
            	tooltip="exportar_pdf" 
53
        		action-command="application-export-to-pdf" 
54
        		icon="application-export-to-pdf"
55
        		position="100900200"
56
        		/>
57

  
58
			<action 
59
        		name="application-export-to-postscript"
60
            	label="exportar_ps" 
61
            	tooltip="exportar_ps" 
62
        		action-command="application-export-to-postscript" 
63
        		icon="application-export-to-postscript"
64
        		position="100900300"
65
        		/>
66
				 
67
			<tool-bar name="gvSIG" position="1">
68
				<action-tool name="application-export-to-pdf"/>
69
				<action-tool name="application-export-to-postscript"/>
70
			</tool-bar>
71
		</extension>
72

  
73
		<extension class-name="org.gvsig.app.extension.LayoutExtension"
74
			description="Extensi?n encargada de gestionar los eventos realizados sobre el Layout."
75
			active="true">
76

  
77
			<action 
78
        		name="application-layout-template-save"
79
            	label="guardar_como_plantilla" 
80
            	tooltip="guardar_como_plantilla" 
81
        		action-command="application-layout-template-save" 
82
        		icon="application-layout-template-save"
83
        		position="700650000"
84
        		/>
85
        		
86
			<menu text="Mapa/guardar_como_plantilla"
87
				name="application-layout-template-save"/>
88
				 
89
			<menu text="Mapa/navegacion"
90
				position="700100000" 
91
				is_separator="true"/>
92
				
93
			<!-- ###################### -->
94
			
95
			<action 
96
        		name="layout-navigation-zoom-in-topoint"
97
            	label="Zoom_Mas" 
98
            	tooltip="Zoom_Mas" 
99
        		action-command="layout-navigation-zoom-in-topoint" 
100
        		icon="layout-navigation-zoom-in-topoint"
101
        		position="700100400"
102
        		/>
103
			<action 
104
        		name="layout-navigation-zoom-out-topoint"
105
            	label="Zoom_Menos" 
106
            	tooltip="Zoom_Menos" 
107
        		action-command="layout-navigation-zoom-out-topoint" 
108
        		icon="layout-navigation-zoom-out-topoint"
109
        		position="700100500"
110
        		/>
111
			<action 
112
        		name="layout-navigation-zoom-in-center"
113
            	label="Zoom_Acercar" 
114
            	tooltip="Zoom_Acercar" 
115
        		action-command="layout-navigation-zoom-in-center" 
116
        		icon="layout-navigation-zoom-in-center"
117
        		position="700100200"
118
        		/>
119
			<action 
120
        		name="layout-navigation-zoom-out-center"
121
            	label="Zoom_Alejar" 
122
            	tooltip="Zoom_Alejar" 
123
        		action-command="layout-navigation-zoom-out-center" 
124
        		icon="layout-navigation-zoom-out-center"
125
        		position="700100300"
126
        		/>
127
			<action 
128
        		name="layout-navigation-zoom-all"
129
            	label="Zoom_Completo" 
130
            	tooltip="Zoom_Completo" 
131
        		action-command="layout-navigation-zoom-all" 
132
        		icon="layout-navigation-zoom-all"
133
        		position="700100700"
134
        		/>
135
			<action 
136
        		name="layout-navigation-zoom-real"
137
            	label="Zoom_Real" 
138
            	tooltip="Zoom_Real" 
139
        		action-command="layout-navigation-zoom-real" 
140
        		icon="layout-navigation-zoom-real"
141
        		position="700100800"
142
        		/>
143
			<action 
144
        		name="layout-navigation-zoom-selected"
145
            	label="Zoom_Select" 
146
            	tooltip="Zoom_Select" 
147
        		action-command="layout-navigation-zoom-selected" 
148
        		icon="layout-navigation-zoom-selected"
149
        		position="700100900"
150
        		/>
151
			<action 
152
        		name="layout-navigation-pan"
153
            	label="Desplazamiento" 
154
            	tooltip="Desplazamiento" 
155
        		action-command="layout-navigation-pan" 
156
        		icon="layout-navigation-pan"
157
        		position="700100100"
158
        		/>
159

  
160
			<menu text="Mapa/navegacion/Zoom_Mas" name="layout-navigation-zoom-in-topoint"/>
161
			<menu text="Mapa/navegacion/Zoom_Menos" name="layout-navigation-zoom-out-topoint"/>
162
			<menu text="Mapa/navegacion/Zoom_Acercar" name="layout-navigation-zoom-in-center"/>
163
			<menu text="Mapa/navegacion/Zoom_Alejar" name="layout-navigation-zoom-out-center"/>
164
			<menu text="Mapa/navegacion/Zoom_Completo" name="layout-navigation-zoom-all"/>
165
			<menu text="Mapa/navegacion/Zoom_Real" name="layout-navigation-zoom-real"/>
166
			<menu text="Mapa/navegacion/Zoom_Select" name="layout-navigation-zoom-selected"/>
167
			<menu text="Mapa/navegacion/Desplazamiento" name="layout-navigation-pan"/>
168
			
169
			<tool-bar name="Layout_Tools_Zooms" position="20">
170
				<selectable-tool name="layout-navigation-zoom-in-topoint" />
171
				<selectable-tool name="layout-navigation-zoom-out-topoint" />
172
				<action-tool name="layout-navigation-zoom-in-center" />
173
				<action-tool name="layout-navigation-zoom-out-center" />
174
				<action-tool name="layout-navigation-zoom-all" />
175
				<action-tool name="layout-navigation-zoom-real" />
176
				<action-tool name="layout-navigation-zoom-selected" />
177
				<selectable-tool name="layout-navigation-pan" />
178
			</tool-bar>
179
		</extension>
180

  
181
		<extension class-name="org.gvsig.app.extension.LayoutEditableControls"
182
			description="Extensi?n encargada de gestionar los eventos de edici?n realizados sobre el Layout."
183
			active="true">
184
			
185
			<action 
186
        		name="layout-properties"
187
            	label="propiedades" 
188
            	tooltip="propiedades_mapa" 
189
        		action-command="layout-properties" 
190
        		position="709000000"
191
        		icon="layout-properties"
192
        		/>
193
        		
194
			<menu text="Mapa/propiedades" name="layout-properties"/>
195
		</extension>
196

  
197
		<extension class-name="org.gvsig.app.extension.LayoutEditVertexExtension"
198
			description="Extensi?n encargada de gestionar los eventos de edici?n realizados sobre el Layout."
199
			active="true">
200
				
201
			<action 
202
        		name="layout-graphic-edit-vertex"
203
            	label="editar_vertices" 
204
            	tooltip="editar_vertices" 
205
        		action-command="layout-graphic-edit-vertex" 
206
        		icon="layout-graphic-edit-vertex"
207
        		position="700301000"
208
        		/>
209

  
210
			<menu text="Mapa/edicion/editar_vertices" name="layout-graphic-edit-vertex"/>
211
			<tool-bar name="Tools_Select" position="6">
212
				<selectable-tool name="layout-graphic-edit-vertex"/>
213
			</tool-bar>
214
		</extension>
215

  
216
		<extension class-name="org.gvsig.app.extension.LayoutInsertToolsExtension"
217
			description="Extensi?n encargada de gestionar los eventos de edici?n realizados sobre el Layout."
218
			active="true">
219
			
220
			<action 
221
        		name="selection-select-by-rectangle-layout"
222
            	label="seleccionar_por_rectangulo" 
223
            	tooltip="seleccionar_por_rectangulo" 
224
        		action-command="selection-select-by-rectangle-layout" 
225
        		icon="selection-by-rectangle"
226
        		position="301200000"
227
        		/>
228

  
229
			<action 
230
        		name="edit-delete-layout"
231
            	label="_Delete_selected_objects" 
232
            	tooltip="_Delete_selected_objects" 
233
        		action-command="edit-delete-layout" 
234
        		icon="edit-delete"
235
        		position="200700000"
236
        		/>
237
			
238
			<!-- Position?
239
			<menu text="Mapa/seleccion"
240
				position="50060" 
241
				is_separator="true"/>
242
			-->
243
				
244
			<menu text="Selection/seleccionar_por_rectangulo"
245
				name="selection-select-by-rectangle-layout"/>
246
			
247
			<menu text="Mapa/Insertar"
248
				position="700400000" 
249
				is_separator="true"/>
250
				
251
			<action 
252
        		name="layout-insert-text"
253
            	label="texto" 
254
            	tooltip="insertar_texto" 
255
        		action-command="layout-insert-text" 
256
        		icon="layout-insert-text"
257
        		position="700401300"
258
        		/>
259
			<action 
260
        		name="layout-insert-point"
261
            	label="punto" 
262
            	tooltip="insertar_punto" 
263
        		action-command="layout-insert-point" 
264
        		icon="layout-insert-point"
265
        		position="700400800"
266
        		/>
267
			<action 
268
        		name="layout-insert-rectangle"
269
            	label="rectangulo" 
270
            	tooltip="insertar_rectangulo" 
271
        		action-command="layout-insert-rectangle" 
272
        		icon="layout-insert-rectangle"
273
        		position="700401100"
274
        		/>
275
			<action 
276
        		name="layout-insert-circle"
277
            	label="circulo" 
278
            	tooltip="insertar_circulo" 
279
        		action-command="layout-insert-circle" 
280
        		icon="layout-insert-circle"
281
        		position="700400200"
282
        		/>
283
			<action 
284
        		name="layout-insert-line"
285
            	label="linea" 
286
            	tooltip="insertar_linea" 
287
        		action-command="layout-insert-line" 
288
        		icon="layout-insert-line"
289
        		position="700400500"
290
        		/>
291
			<action 
292
        		name="layout-insert-polyline"
293
            	label="polilinea" 
294
            	tooltip="insertar_polilinea" 
295
        		action-command="layout-insert-polyline" 
296
        		icon="layout-insert-polyline"
297
        		position="700401000"
298
        		/>
299
			<action 
300
        		name="layout-insert-polygon"
301
            	label="poligono" 
302
            	tooltip="insertar_poligono" 
303
        		action-command="layout-insert-polygon" 
304
        		icon="layout-insert-polygon"
305
        		position="700400900"
306
        		/>
307
			<action 
308
        		name="layout-insert-image"
309
            	label="imagen" 
310
            	tooltip="insertar_imagen" 
311
        		action-command="layout-insert-image" 
312
        		icon="layout-insert-image"
313
        		position="700400300"
314
        		/>
315
			<action 
316
        		name="layout-insert-view"
317
            	label="Vista" 
318
            	tooltip="insertar_vista" 
319
        		action-command="layout-insert-view" 
320
        		icon="layout-insert-view"
321
        		position="700401400"
322
        		/>
323
			<action 
324
        		name="layout-insert-locator"
325
            	label="Localizador" 
326
            	tooltip="insertar_localizador" 
327
        		action-command="layout-insert-locator" 
328
        		icon="layout-insert-locator"
329
        		position="700400600"
330
        		/>
331
			<action 
332
        		name="layout-insert-legend"
333
            	label="leyenda" 
334
            	tooltip="insertar_leyenda" 
335
        		action-command="layout-insert-legend" 
336
        		icon="layout-insert-legend"
337
        		position="700400400"
338
        		/>
339
			<action 
340
        		name="layout-insert-scalebar"
341
            	label="escala" 
342
            	tooltip="insertar_escala" 
343
        		action-command="layout-insert-scalebar" 
344
        		icon="layout-insert-scalebar"
345
        		position="700401200"
346
        		/>
347
			<action 
348
        		name="layout-insert-north"
349
            	label="north" 
350
            	tooltip="insertar_norte" 
351
        		action-command="layout-insert-north" 
352
        		icon="layout-insert-north"
353
        		position="700400700"
354
        		/>
355
			<action 
356
        		name="layout-insert-box"
357
            	label="cajetin" 
358
            	tooltip="insertar_cajetin" 
359
        		action-command="layout-insert-box" 
360
        		icon="layout-insert-box"
361
        		position="700400100"
362
        		/>
363
        		
364
			<menu text="Mapa/Insertar/texto" name="layout-insert-text" />
365
			<menu text="Mapa/Insertar/punto" name="layout-insert-point" />
366
			<menu text="Mapa/Insertar/rectangulo" name="layout-insert-rectangle" />
367
			<menu text="Mapa/Insertar/circulo" name="layout-insert-circle" />
368
			<menu text="Mapa/Insertar/linea" name="layout-insert-line" />
369
			<menu text="Mapa/Insertar/polilinea" name="layout-insert-polyline" />
370
			<menu text="Mapa/Insertar/poligono" name="layout-insert-polygon" />
371
			<menu text="Mapa/Insertar/imagen" name="layout-insert-image" />
372
			<menu text="Mapa/Insertar/Vista" name="layout-insert-view" />
373
			<menu text="Mapa/Insertar/Localizador" name="layout-insert-locator" />
374
			<menu text="Mapa/Insertar/leyenda" name="layout-insert-legend" />
375
			<menu text="Mapa/Insertar/escala" name="layout-insert-scalebar" />
376
			<menu text="Mapa/Insertar/north" name="layout-insert-north" />
377
			<menu text="Mapa/Insertar/cajetin" name="layout-insert-box" />
378

  
379
			<tool-bar name="Tools_Select" position="6">
380
				<selectable-tool name="selection-select-by-rectangle-layout" />
381
				<action-tool name="edit-delete-layout" />
382
			</tool-bar>
383

  
384
			<tool-bar name="Layout_Tools_Insert_Simple" position="7">
385
				<selectable-tool name="layout-insert-text" />
386
				<selectable-tool name="layout-insert-image" />
387
				<selectable-tool name="layout-insert-point" />
388
				<selectable-tool name="layout-insert-rectangle" />
389
				<selectable-tool name="layout-insert-circle" />
390
				<selectable-tool name="layout-insert-line" />
391
				<selectable-tool name="layout-insert-polyline" />
392
				<selectable-tool name="layout-insert-polygon" />
393
			</tool-bar>
394

  
395
			<tool-bar name="Layout_Tools_Insert_Cartografy" position="8">
396
				<selectable-tool name="layout-insert-view" />
397
				<selectable-tool name="layout-insert-locator" />
398
				<selectable-tool name="layout-insert-legend" />
399
				<selectable-tool name="layout-insert-scalebar" />
400
				<selectable-tool name="layout-insert-north" />
401
				<selectable-tool name="layout-insert-box" />
402
			</tool-bar>
403
		</extension>
404

  
405
		<extension class-name="org.gvsig.app.extension.FFrameViewExtension"
406
			description="Extensi?n encargada de gestionar los eventos realizados sobre las vistas a?adidas al Layout."
407
			active="true">
408
			
409
			<menu text="Mapa/navegacion_vista"
410
				position="700200000" 
411
				is_separator="true"/>
412
				
413
			<action 
414
        		name="layout-view-navigation-pan"
415
            	label="Encuadre_Vista" 
416
            	tooltip="Encuadre_Vista" 
417
        		action-command="layout-view-navigation-pan" 
418
        		icon="layout-view-navigation-pan"
419
        		position="700200100"
420
        		/>
421
			<action 
422
        		name="layout-view-navigation-zoom-in-topoint"
423
            	label="Zoom_Mas_Vista" 
424
            	tooltip="Zoom_Mas_Vista" 
425
        		action-command="layout-view-navigation-zoom-in-topoint" 
426
        		icon="layout-view-navigation-zoom-in-topoint"
427
        		position="700200400"
428
        		/>
429
			<action 
430
        		name="layout-view-navigation-zoom-out-topoint"
431
            	label="Zoom_Menos_Vista" 
432
            	tooltip="Zoom_Menos_Vista" 
433
        		action-command="layout-view-navigation-zoom-out-topoint" 
434
        		icon="layout-view-navigation-zoom-out-topoint"
435
        		position="700200500"
436
        		/>
437
			<action 
438
        		name="layout-view-navigation-zoom-all"
439
            	label="Zoom_Completo_Vista" 
440
            	tooltip="Zoom_Completo_Vista" 
441
        		action-command="layout-view-navigation-zoom-all" 
442
        		icon="layout-view-navigation-zoom-all"
443
        		position="700200600"
444
        		/>
445
				
446
			<menu text="Mapa/navegacion_vista/Zoom_Mas_Vista" name="layout-view-navigation-zoom-in-topoint"/>
447
			<menu text="Mapa/navegacion_vista/Zoom_Menos_Vista" name="layout-view-navigation-zoom-out-topoint"/>
448
			<menu text="Mapa/navegacion_vista/Zoom_Completo_Vista" name="layout-view-navigation-zoom-all"/>
449
			<menu text="Mapa/navegacion_vista/Encuadre_Vista" name="layout-view-navigation-pan"/>
450
			
451
			<tool-bar name="Layout_Tools_View" position="9">
452
				<action-tool name="layout-view-navigation-zoom-all"/>
453
				<selectable-tool name="layout-view-navigation-zoom-in-topoint"/>
454
				<selectable-tool name="layout-view-navigation-zoom-out-topoint"/>
455
				<selectable-tool name="layout-view-navigation-pan"/>
456
			</tool-bar>
457
		</extension>
458

  
459
		<extension class-name="org.gvsig.app.extension.TagExtension"
460
			description="Extensi?n para a?adir un tag a los FFrames."
461
			active="false">
462

  
463
			<action 
464
        		name="layout-graphic-show-tags"
465
            	label="ver_tags" 
466
            	tooltip="ver_tags" 
467
        		action-command="layout-graphic-show-tags" 
468
        		icon="layout-graphic-show-tags"
469
        		position="700301200"
470
        		/>
471
			<action 
472
        		name="layout-insert-tag"
473
            	label="anadir_tag" 
474
            	tooltip="anadir_tag" 
475
        		action-command="layout-insert-tag" 
476
        		icon="layout-insert-tag"
477
        		position="700401500"
478
        		/>
479

  
480
			<menu text="Mapa/anadir_tag" name="layout-insert-tag" />
481
			<tool-bar name="Mapa" position="10">
482
				<action-tool name="layout-insert-tag" />
483
				<action-tool name="layout-graphic-show-tags" />
484
			</tool-bar>
485
		</extension>
486

  
487
		<extension class-name="org.gvsig.app.extension.LayoutGraphicControls"
488
			description="Extensi?n encargada de gestionar los eventos realizados sobre los gr?ficos que contiene el Layout."
489
			active="true">
490
			
491
			<action 
492
        		name="layout-graphic-add-border"
493
            	label="linea_grafica" 
494
            	tooltip="linea_grafica" 
495
        		action-command="layout-graphic-add-border" 
496
        		icon="layout-graphic-add-border"
497
        		position="700300100"
498
        		/>
499
			<action 
500
        		name="layout-graphic-align"
501
            	label="alinear" 
502
            	tooltip="alinear_graficos" 
503
        		action-command="layout-graphic-align" 
504
        		icon="layout-graphic-align"
505
        		position="700300200"
506
        		/>
507
			<action 
508
        		name="layout-graphic-bring-to-front"
509
            	label="colocar_delante" 
510
            	tooltip="colocar_delante" 
511
        		action-command="layout-graphic-bring-to-front" 
512
        		icon="layout-graphic-bring-to-front"
513
        		position="700300300"
514
        		/>
515
			<action 
516
        		name="layout-graphic-send-back"
517
            	label="colocar_detras" 
518
            	tooltip="colocar_detras" 
519
        		action-command="layout-graphic-send-back" 
520
        		icon="layout-graphic-send-back"
521
        		position="700300400"
522
        		/>
523
			<action 
524
        		name="layout-graphic-group"
525
            	label="agrupar" 
526
            	tooltip="agrupar_graficos" 
527
        		action-command="layout-graphic-group" 
528
        		icon="layout-graphic-group"
529
        		position="700300500"
530
        		/>
531
			<action 
532
        		name="layout-graphic-ungroup"
533
            	label="desagrupar" 
534
            	tooltip="desagrupar_graficos" 
535
        		action-command="layout-graphic-ungroup" 
536
        		icon="layout-graphic-ungroup"
537
        		position="700300600"
538
        		/>
539
			<action 
540
        		name="layout-graphic-position"
541
            	label="tamano_posicion" 
542
            	tooltip="tamano_posicion" 
543
        		action-command="layout-graphic-position" 
544
        		icon="layout-graphic-position"
545
        		position="700301100"
546
        		/>
547
			<action 
548
        		name="layout-graphic-properties"
549
            	label="propiedades" 
550
            	tooltip="propiedades" 
551
        		action-command="layout-graphic-properties" 
552
        		icon="layout-graphic-properties"
553
        		position="700302000"
554
        		/>
555
        		
556
			<menu text="Mapa/Graficos"
557
				position="700300000" 
558
				is_separator="true"/>
559
				
560
			<menu text="Mapa/Graficos/propiedades" name="layout-graphic-properties" />
561
			<menu text="Mapa/Graficos/alinear" name="layout-graphic-align" />
562
			<menu text="Mapa/Graficos/agrupar" name="layout-graphic-group" />
563
			<menu text="Mapa/Graficos/desagrupar" name="layout-graphic-ungroup" />
564
			<menu text="Mapa/Graficos/colocar_delante" name="layout-graphic-bring-to-front" />
565
			<menu text="Mapa/Graficos/colocar_detras" name="layout-graphic-send-back" />
566
			<menu text="Mapa/Graficos/tamano_posicion" name="layout-graphic-position" />
567
			<menu text="Mapa/Graficos/linea_grafica" name="layout-graphic-add-border" />
568
			
569
			<tool-bar name="Layout_Tools_Graphics" position="11">
570
				<action-tool name="layout-graphic-bring-to-front" />
571
				<action-tool name="layout-graphic-send-back" />
572
				<action-tool name="layout-graphic-position" />
573
				<action-tool name="layout-graphic-group" />
574
				<action-tool name="layout-graphic-ungroup" />
575
				<action-tool name="layout-graphic-add-border" />
576
			</tool-bar>
577
			
578
		</extension>
579

  
580
		<extension class-name="org.gvsig.app.extension.FFrameLegendExtension"
581
			description="Extensi?n encargada de controlar un FFrameLegend."
582
			active="true">
583
			
584
			<action 
585
        		name="layout-graphic-simplify-legend"
586
            	label="simplificar_leyenda" 
587
            	tooltip="simplificar_leyenda" 
588
        		action-command="layout-graphic-simplify-legend" 
589
        		icon="layout-graphic-simplify-legend"
590
        		position="700301200"
591
        		/>
592
			<menu text="Mapa/Graficos/simplificar_leyenda" name="layout-graphic-simplify-legend" />
593
			
594
		</extension>
595

  
596
		<extension class-name="org.gvsig.app.extension.LayoutRedoExtension"
597
			description="Extensi?n para rehacer cambios sobre el Layout."
598
			active="true">
599
			
600
			<action 
601
	        	name= "edit-redo-layout"
602
    	        label="rehacer" 
603
        	    tooltip="rehacer" 
604
        		action-command="edit-redo-layout" 
605
        		icon="edit-redo"
606
        		position="200200000"
607
        		/>
608
        
609
			<menu text="Edit/_Redo" name="edit-redo-layout"/>
610
			<tool-bar name="Mapa" position="10">
611
				<action-tool name="edit-redo-layout"/>
612
			</tool-bar>
613
		</extension>
614

  
615

  
616
		<extension class-name="org.gvsig.app.extension.LayoutUndoExtension"
617
			description="Extensi?n para deshacer cambios sobre el Layout."
618
			active="true">
619
			
620
			<action 
621
        		name= "edit-undo-layout"
622
            	label="deshacer" 
623
            	tooltip="deshacer" 
624
        		action-command="edit-undo-layout" 
625
        		icon="edit-undo"
626
        		position="200100000"
627
        		/>
628
			
629
			<menu text="Edit/_Undo" name="edit-undo-layout" />
630
			<tool-bar name="Mapa" position="10">
631
				<action-tool name="edit-undo-layout" />
632
			</tool-bar>
633
		</extension>
634

  
635
		<extension class-name="org.gvsig.app.extension.LayoutCommandStackExtension"
636
			description="Extensi?n encargada de abrir el di?logo para gestionar los comandos apilados."
637
			active="true">
638
			
639
			<action 
640
        		name="edit-undo-redo-actions-layout"
641
            	label="_Undo_redo_history" 
642
            	tooltip="_Undo_redo_history" 
643
        		action-command="edit-undo-redo-actions-layout" 
644
        		icon="edit-undo-redo-actions"
645
        		position="200300000"
646
        		/>
647

  
648
			<menu text="Edit/_Undo_redo_history" name="edit-undo-redo-actions-layout" />
649
			<tool-bar name="Mapa" position="10">
650
				<action-tool name="edit-undo-redo-actions-layout" />
651
			</tool-bar>
652
		</extension>
653

  
654
		<extension class-name="org.gvsig.app.extension.Print"
655
			description="Extensi?n encargada de la impresi?n."
656
			active="true">
657
			
658
			<action 
659
        		name="application-print-layout"
660
            	label="Imprimir" 
661
            	tooltip="Imprimir" 
662
        		action-command="application-print-layout" 
663
        		icon="application-print"
664
        		position="700800000"
665
        		/>
666
			
667
			<menu text="Mapa/Imprimir" name="application-print-layout" />
668
			<tool-bar name="Mapa" position="10">
669
				<action-tool name="application-print-layout" />
670
			</tool-bar>
671
		</extension>
672

  
673
		<extension class-name="org.gvsig.app.extension.PrintProperties"
674
			escription="Extensi?n encargada de las propiedades de impresi?n."
675
			active="true">
676
			
677
			<action 
678
        		name="application-page-setup-layout"
679
            	label="preparar_pagina" 
680
            	tooltip="preparar_pagina" 
681
        		action-command="application-page-setup-layout" 
682
        		icon="application-page-setup"
683
        		position="700700000"
684
        		/>
685
			
686
			<menu text="Mapa/preparar_pagina" name="application-page-setup-layout" />
687
			<tool-bar name="Mapa" position="10">
688
				<action-tool name="application-page-setup-layout" />
689
			</tool-bar>
690
		</extension>
691
	</extensions>
692
</plugin-config>
tags/2059/org.gvsig.app.document.layout.app.mainplugin/src/main/resources/images/northimages/gvsig_1.svg
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
<!-- Copyright © 2008 by Silvio Grosso, under the terms of the GNU GPL version 2. -->
4
<svg
5
   xmlns:dc="http://purl.org/dc/elements/1.1/"
6
   xmlns:cc="http://web.resource.org/cc/"
7
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
   xmlns:svg="http://www.w3.org/2000/svg"
9
   xmlns="http://www.w3.org/2000/svg"
10
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
   viewBox="0 0 450 500"
13
   width="450"
14
   height="500"
15
   id="svg2"
16
   sodipodi:version="0.32"
17
   inkscape:version="0.45.1"
18
   sodipodi:docbase="H:\"
19
   sodipodi:docname="vettore.svg"
20
   inkscape:export-filename="F:\ROSA VENTI\rosa11.png"
21
   inkscape:export-xdpi="300"
22
   inkscape:export-ydpi="300"
23
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
24
   version="1.0">
25
  <defs
26
     id="defs4" />
27
  <sodipodi:namedview
28
     id="base"
29
     pagecolor="#ffffff"
30
     bordercolor="#666666"
31
     borderopacity="1.0"
32
     inkscape:pageopacity="0.0"
33
     inkscape:pageshadow="2"
34
     inkscape:zoom="0.7"
35
     inkscape:cx="290.92664"
36
     inkscape:cy="239.69908"
37
     inkscape:document-units="px"
38
     inkscape:current-layer="layer1"
39
     showgrid="true"
40
     inkscape:window-width="1280"
41
     inkscape:window-height="744"
42
     inkscape:window-x="0"
43
     inkscape:window-y="22"
44
     width="450px"
45
     height="500px" />
46
  <metadata
47
     id="metadata7">
48
    <rdf:RDF>
49
      <cc:Work
50
         rdf:about="">
51
        <dc:format>image/svg+xml</dc:format>
52
        <dc:type
53
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
54
      </cc:Work>
55
    </rdf:RDF>
56
  </metadata>
57
  <g
58
     inkscape:label="Livello 1"
59
     inkscape:groupmode="layer"
60
     id="layer1">
61
    <g
62
       id="g2169">
63
      <path
64
         sodipodi:nodetypes="cccccc"
65
         id="path3222"
66
         d="M 201.42859,445.93361 L 202.85716,86.6479 L 267.14287,192.36218 L 222.85716,163.79076 L 225.7143,445.21933 L 201.42859,445.93361 z "
67
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
68
      <path
69
         id="flowRoot3224"
70
         d="M 325.62109,277.64573 L 337.1875,277.64573 L 352.28125,299.82151 L 352.28125,277.64573 L 363.95703,277.64573 L 363.95703,317.73167 L 352.28125,317.73167 L 337.26953,295.71995 L 337.26953,317.73167 L 325.62109,317.73167 L 325.62109,277.64573 z "
71
         style="font-size:56px;font-family:Arial Black"
72
         transform="translate(-137.6462,-245.32652)" />
73
    </g>
74
  </g>
75
</svg>
tags/2059/org.gvsig.app.document.layout.app.mainplugin/src/main/resources/images/northimages/gvsig_2.svg
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
<!-- Copyright © 2008 by Silvio Grosso, under the terms of the GNU GPL version 2. -->
4
<svg
5
   xmlns:dc="http://purl.org/dc/elements/1.1/"
6
   xmlns:cc="http://web.resource.org/cc/"
7
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
   xmlns:svg="http://www.w3.org/2000/svg"
9
   xmlns="http://www.w3.org/2000/svg"
10
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
   viewBox="0 0 450 500"
13
   width="450"
14
   height="500"
15
   id="svg2"
16
   sodipodi:version="0.32"
17
   inkscape:version="0.45.1"
18
   sodipodi:docbase="H:\"
19
   sodipodi:docname="gvsig_2def.svg"
20
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
21
   version="1.0">
22
  <defs
23
     id="defs4" />
24
  <sodipodi:namedview
25
     id="base"
26
     pagecolor="#ffffff"
27
     bordercolor="#666666"
28
     borderopacity="1.0"
29
     inkscape:pageopacity="0.0"
30
     inkscape:pageshadow="2"
31
     inkscape:zoom="0.7"
32
     inkscape:cx="414.14341"
33
     inkscape:cy="202.33186"
34
     inkscape:document-units="px"
35
     inkscape:current-layer="layer1"
36
     showgrid="true"
37
     inkscape:window-width="1280"
38
     inkscape:window-height="744"
39
     inkscape:window-x="-4"
40
     inkscape:window-y="-4"
41
     width="450px"
42
     height="500px" />
43
  <metadata
44
     id="metadata7">
45
    <rdf:RDF>
46
      <cc:Work
47
         rdf:about="">
48
        <dc:format>image/svg+xml</dc:format>
49
        <dc:type
50
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
51
      </cc:Work>
52
    </rdf:RDF>
53
  </metadata>
54
  <g
55
     inkscape:label="Livello 1"
56
     inkscape:groupmode="layer"
57
     id="layer1">
58
    <g
59
       id="g2171"
60
       transform="translate(-184.28571,-258.57143)">
61
      <path
62
         id="path1965"
63
         d="M 391.34752,395.97405 L 391.34752,649.76343 L 412.5493,649.76343 L 412.5493,446.7319 L 428.2613,463.65123 L 391.34752,345.21606 L 391.34752,395.97405"
64
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
65
      <path
66
         transform="matrix(12.2222,0,0,15.88943,-3931.465,-7755.856)"
67
         d="M 356.47322 530.55414 A 1.8973215 1.8973215 0 1 1  352.67858,530.55414 A 1.8973215 1.8973215 0 1 1  356.47322 530.55414 z"
68
         sodipodi:ry="1.8973215"
69
         sodipodi:rx="1.8973215"
70
         sodipodi:cy="530.55414"
71
         sodipodi:cx="354.5759"
72
         id="path1967"
73
         style="opacity:0.97000002;fill:#000000;fill-opacity:1;stroke-width:6.4000001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
74
         sodipodi:type="arc" />
75
      <path
76
         id="flowRoot3224"
77
         d="M 325.62109,277.64573 L 337.1875,277.64573 L 352.28125,299.82151 L 352.28125,277.64573 L 363.95703,277.64573 L 363.95703,317.73167 L 352.28125,317.73167 L 337.26953,295.71995 L 337.26953,317.73167 L 325.62109,317.73167 L 325.62109,277.64573 z "
78
         style="font-size:56px;stroke:none;font-family:Arial Black"
79
         transform="matrix(2.006144,0,0,2.033494,-291.9793,-277.2286)" />
80
    </g>
81
  </g>
82
</svg>
tags/2059/org.gvsig.app.document.layout.app.mainplugin/src/main/resources/images/northimages/gvsig_3.svg
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
<!-- Copyright © 2008 by Silvio Grosso, under the terms of the GNU GPL version 2. -->
4
<svg
5
   xmlns:svg="http://www.w3.org/2000/svg"
6
   xmlns="http://www.w3.org/2000/svg"
7
   version="1.0"
8
   viewBox="0 0 450 500"
9
   width="450"
10
   height="500"
11
   id="svg2">
12
  <defs
13
     id="defs4" />
14
  <g
15
     id="layer1">
16
    <g
17
       transform="translate(-123.23861,-288.90363)"
18
       id="g2173">
19
      <g
20
         transform="matrix(5.975106,0,0,7.360972,-1697.3027,-3373.5718)"
21
         id="g2000">
22
        <path
23
           d="M 342.35227,539.59527 L 342.22208,517.36218 L 360.42957,547.53845 L 342.35227,539.59527 z "
24
           style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
25
           id="path1996" />
26
        <path
27
           d="M 342.57013,539.29649 L 341.82241,519.02014 L 324.09482,546.6962 L 342.57013,539.29649 z "
28
           style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.97481376px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
29
           id="path1998" />
30
      </g>
31
      <path
32
         d="M 325.62109,277.64573 L 337.1875,277.64573 L 352.28125,299.82151 L 352.28125,277.64573 L 363.95703,277.64573 L 363.95703,317.73167 L 352.28125,317.73167 L 337.26953,295.71995 L 337.26953,317.73167 L 325.62109,317.73167 L 325.62109,277.64573 z "
33
         transform="matrix(2.106701,0,0,2.118369,-384.60868,-235.79393)"
34
         style="font-size:56px;font-family:Arial Black"
35
         id="flowRoot3224" />
36
    </g>
37
  </g>
38
</svg>
tags/2059/org.gvsig.app.document.layout.app.mainplugin/src/main/resources/images/northimages/gvsig_4.svg
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
<!-- Copyright © 2008 by Silvio Grosso, under the terms of the GNU GPL version 2. -->
4
<svg
5
   xmlns:svg="http://www.w3.org/2000/svg"
6
   xmlns="http://www.w3.org/2000/svg"
7
   version="1.0"
8
   viewBox="0 0 450 500"
9
   width="450"
10
   height="500"
11
   id="svg2">
12
  <defs
13
     id="defs4" />
14
  <g
15
     id="layer1">
16
    <g
17
       transform="matrix(0.5195424,0,0,0.6016449,24.376483,-53.793862)"
18
       id="g2174">
19
      <path
20
         d="M 325.62109,277.64573 L 337.1875,277.64573 L 352.28125,299.82151 L 352.28125,277.64573 L 363.95703,277.64573 L 363.95703,317.73167 L 352.28125,317.73167 L 337.26953,295.71995 L 337.26953,317.73167 L 325.62109,317.73167 L 325.62109,277.64573 z "
21
         transform="matrix(3.640839,0,0,3.157632,-864.7505,-755.91207)"
22
         style="font-size:56px;font-family:Arial Black"
23
         id="flowRoot7755" />
24
      <g
25
         transform="matrix(28.115021,0,0,17.267132,23470.126,-12571.168)"
26
         id="g7864">
27
        <path
28
           d="M -825.62731,778.65596 L -821.18658,778.65596 L -821.18658,753.89884 L -818.82382,753.89884 L -823.42178,746.38114 L -828.35618,753.89884 L -825.62731,753.89884 L -825.62731,778.65596 z "
29
           style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.9378258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
30
           id="path7860" />
31
        <path
32
           d="M -823.16032,776.72383 L -818.16032,776.72383 L -818.16032,751.72383 L -815.5,751.72383 L -820.67703,744.13238 L -826.23287,751.72383 L -823.16032,751.72383 L -823.16032,776.72383 z "
33
           style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
34
           id="path7862" />
35
      </g>
36
    </g>
37
  </g>
38
</svg>
tags/2059/org.gvsig.app.document.layout.app.mainplugin/src/main/resources/images/northimages/gvsig_5.svg
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
<!-- Copyright © 2008 by Silvio Grosso, under the terms of the GNU GPL version 2. -->
4
<svg
5
   xmlns:dc="http://purl.org/dc/elements/1.1/"
6
   xmlns:cc="http://web.resource.org/cc/"
7
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
   xmlns:svg="http://www.w3.org/2000/svg"
9
   xmlns="http://www.w3.org/2000/svg"
10
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
   version="1.0"
13
   viewBox="0 0 450 500"
14
   width="450"
15
   height="500"
16
   id="svg2"
17
   sodipodi:version="0.32"
18
   inkscape:version="0.45.1"
19
   sodipodi:docname="gvsig_5.svg"
20
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
21
   sodipodi:docbase="C:\Programmi\gvSIG_1.0.2\bin\gvSIG\extensiones\com.iver.cit.gvsig\northimages">
22
  <metadata
23
     id="metadata10">
24
    <rdf:RDF>
25
      <cc:Work
26
         rdf:about="">
27
        <dc:format>image/svg+xml</dc:format>
28
        <dc:type
29
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
30
      </cc:Work>
31
    </rdf:RDF>
32
  </metadata>
33
  <sodipodi:namedview
34
     inkscape:window-height="744"
35
     inkscape:window-width="1280"
36
     inkscape:pageshadow="2"
37
     inkscape:pageopacity="0.0"
38
     guidetolerance="10.0"
39
     gridtolerance="10.0"
40
     objecttolerance="10.0"
41
     borderopacity="1.0"
42
     bordercolor="#666666"
43
     pagecolor="#ffffff"
44
     id="base"
45
     inkscape:zoom="0.754"
46
     inkscape:cx="225"
47
     inkscape:cy="250"
48
     inkscape:window-x="-4"
49
     inkscape:window-y="-4"
50
     inkscape:current-layer="svg2" />
51
  <defs
52
     id="defs4" />
53
  <g
54
     id="layer1"
55
     transform="matrix(1.3482061,0,0,1.3605643,-75.274102,-93.490101)">
56
    <g
57
       transform="translate(7.8428488,-24.243661)"
58
       id="g2238">
59
      <path
60
         d="M 314.64648,483.62498 L 317.125,483.62498 L 320.35938,488.37693 L 320.35938,483.62498 L 322.86133,483.62498 L 322.86133,492.21482 L 320.35938,492.21482 L 317.14258,487.49803 L 317.14258,492.21482 L 314.64648,492.21482 L 314.64648,483.62498 z "
61
         transform="matrix(2.124314,0,0,2.055934,-468.64243,-824.79604)"
62
         style="font-family:Arial Black"
63
         id="flowRoot2762" />
64
      <path
65
         d="M 152.38394,298.4068 L 208.753,206.53183 L 270.7589,298.4068 L 210.18157,267.78181 L 152.38394,298.4068 z "
66
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:7.19645977px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
67
         id="path1956" />
68
      <path
69
         d="M 587.50001,551.29077 C 587.50001,593.69835 553.12187,628.07648 510.71429,628.07648 C 468.30672,628.07648 433.92858,593.69835 433.92858,551.29077 C 433.92858,508.88319 468.30672,474.50505 510.71429,474.50505 C 553.12187,474.50505 587.50001,508.88319 587.50001,551.29077 z "
70
         transform="translate(-298.57143,-277.85714)"
71
         style="opacity:0.97000002;fill:none;fill-opacity:1;stroke:#000000;stroke-width:6.4000001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
72
         id="path1958" />
73
    </g>
74
  </g>
75
</svg>
tags/2059/org.gvsig.app.document.layout.app.mainplugin/src/main/resources/images/northimages/simpleNorth.svg
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
<svg
4
   xmlns:xml="http://www.w3.org/XML/1998/namespace"
5
   xmlns:dc="http://purl.org/dc/elements/1.1/"
6
   xmlns:cc="http://web.resource.org/cc/"
7
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
   xmlns:svg="http://www.w3.org/2000/svg"
9
   xmlns="http://www.w3.org/2000/svg"
10
   xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
11
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
   sodipodi:docbase="D:\Download\datos\PRUEBAS\northimages"
13
   sodipodi:docname="simpleNorth.svg"
14
   inkscape:version="0.40+cvs"
15
   sodipodi:version="0.32"
16
   xml:space="preserve"
17
   id="svg2"
18
   viewBox="0 0 450 500"
19
   height="500"
20
   width="450"
21
   version="1.0"><metadata
22
   id="metadata8">
23
  <rdf:RDF
24
     id="RDF4">
25
    <cc:Work
26
       id="Work6"
27
       rdf:about="">
28
      <dc:format
29
         id="format8">image/svg+xml</dc:format>
30
      <dc:type
31
         id="type10"
32
         rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
33
    </cc:Work>
34
  </rdf:RDF>
35
</metadata>
36
<sodipodi:namedview
37
   inkscape:current-layer="svg2"
38
   inkscape:window-y="-4"
39
   inkscape:window-x="-4"
40
   inkscape:cy="250.00000"
41
   inkscape:cx="225.00000"
42
   inkscape:zoom="1.0780000"
43
   id="base"
44
   pagecolor="#ffffff"
45
   bordercolor="#666666"
46
   borderopacity="1.0"
47
   inkscape:pageopacity="0.0"
48
   inkscape:pageshadow="2"
49
   inkscape:window-width="1024"
50
   inkscape:window-height="719" />
51
<defs
52
   id="defs17" />
53

  
54
	<path
55
   id="path14"
56
   style="fill-rule:nonzero;stroke:none;stroke-miterlimit:4.0000000"
57
   d="M 86.978411,340.24249 L 216.26541,24.408965 L 227.40954,52.147805 L 228.23782,52.147805 L 232.98160,38.582545 L 363.02159,355.02437 L 233.80989,320.22916 L 105.35116,355.02437 L 114.08576,333.12529 L 86.978411,340.24249 L 86.978411,340.24249 z M 216.26541,30.917865 L 90.969209,337.01846 L 216.26541,303.50069 L 340.65802,337.01846 L 216.26541,30.917865 z M 181.10115,475.59103 L 181.10115,373.76027 L 198.64563,373.76027 L 264.07976,452.41450 L 264.07976,373.76027 L 280.04298,373.76027 L 280.04298,475.59103 L 262.49850,475.59103 L 197.06437,396.93680 L 197.06437,475.59103 L 181.10115,475.59103 L 181.10115,475.59103 z " />
58

  
59
</svg>
tags/2059/org.gvsig.app.document.layout.app.mainplugin/src/main/resources/images/northimages/gvsig_6.svg
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
<!-- Copyright © 2008 by Silvio Grosso, under the terms of the GNU GPL version 2. -->
4
<svg
5
   xmlns:svg="http://www.w3.org/2000/svg"
6
   xmlns="http://www.w3.org/2000/svg"
7
   version="1.0"
8
   viewBox="0 0 450 500"
9
   width="450"
10
   height="500"
11
   id="svg2">
12
  <defs
13
     id="defs4" />
14
  <g
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff