Revision 1605

View differences:

tags/org.gvsig.app.document.layout2.app-2.0.281/pom.xml
1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2

  
3
    <modelVersion>4.0.0</modelVersion>
4
    <artifactId>org.gvsig.app.document.layout2.app</artifactId>
5
    <packaging>pom</packaging>
6
    <version>2.0.281</version>
7

  
8
    <name>${project.artifactId}</name>
9
    <description>This plugin adds creation/management of layout (map) documents.</description>
10

  
11
    <parent>
12
        <groupId>org.gvsig</groupId>
13
        <artifactId>org.gvsig.desktop</artifactId>
14
        <version>2.0.424</version>
15
    </parent>
16

  
17
	<url>https://devel.gvsig.org/redmine/projects/gvsig-app-document-layout</url>
18

  
19
    <scm>
20
        <connection>scm:svn:https://devel.gvsig.org/svn/gvsig-app-document-layout/tags/org.gvsig.app.document.layout2.app-2.0.281</connection>
21
        <developerConnection>scm:svn:https://devel.gvsig.org/svn/gvsig-app-document-layout/tags/org.gvsig.app.document.layout2.app-2.0.281</developerConnection>
22
        <url>https://devel.gvsig.org/redmine/projects/gvsig-app-document-layout/repository/show/tags/org.gvsig.app.document.layout2.app-2.0.281</url>
23
    </scm>
24
    <repositories>
25
      <repository>
26
        <id>gvsig-public-http-repository</id>
27
        <name>gvSIG maven public HTTP repository</name>
28
        <url>http://devel.gvsig.org/m2repo/j2se</url>
29
        <releases>
30
          <enabled>true</enabled>
31
          <updatePolicy>daily</updatePolicy>
32
          <checksumPolicy>warn</checksumPolicy>
33
        </releases>
34
        <snapshots>
35
          <enabled>true</enabled>
36
          <updatePolicy>daily</updatePolicy>
37
          <checksumPolicy>warn</checksumPolicy>
38
        </snapshots>
39
      </repository>
40
    </repositories>
41

  
42
	<build>
43
		<plugins>
44
			<plugin>
45
				<groupId>org.apache.maven.plugins</groupId>
46
				<artifactId>maven-release-plugin</artifactId>
47
				<configuration>
48
					<tagBase>https://devel.gvsig.org/svn/gvsig-app-document-layout/tags</tagBase>
49
				</configuration>
50
			</plugin>
51
		</plugins>
52
	</build>
53

  
54
    <dependencyManagement>
55
         <dependencies>
56
            <!--
57
            Versions of child projects
58
            -->
59
            <dependency>
60
                <groupId>org.gvsig</groupId>
61
                <artifactId>org.gvsig.app.document.layout2.app.mainplugin</artifactId>
62
                <version>2.0.281</version>
63
            </dependency>
64
            <dependency>
65
                <groupId>org.gvsig</groupId>
66
                <artifactId>org.gvsig.pdf.swing.api</artifactId>
67
                <version>${org.gvsig.pdf.version}</version>
68
            </dependency>
69
            <dependency>
70
                <groupId>org.gvsig</groupId>
71
                <artifactId>org.gvsig.report.lib.api</artifactId>
72
                <version>${org.gvsig.report.version}</version>
73
            </dependency>
74
            
75

  
76
        </dependencies>
77
    </dependencyManagement>
78
    <properties>
79
        <org.gvsig.pdf.version>1.0.133</org.gvsig.pdf.version>
80
    </properties>
81
	<modules>
82
		<module>org.gvsig.app.document.layout2.app.mainplugin</module>
83
	</modules>
84

  
85
</project>
tags/org.gvsig.app.document.layout2.app-2.0.281/org.gvsig.app.document.layout2.app.mainplugin/buildNumber.properties
1
#Mon Jul 03 18:52:15 CEST 2023
2
buildNumber=303
tags/org.gvsig.app.document.layout2.app-2.0.281/org.gvsig.app.document.layout2.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/org.gvsig.app.document.layout2.app-2.0.281/org.gvsig.app.document.layout2.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>
0 38

  
tags/org.gvsig.app.document.layout2.app-2.0.281/org.gvsig.app.document.layout2.app.mainplugin/src/main/resources-plugin/config.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<plugin-config>
3
    <alternativeNames name="org.gvsig.app.document.layout.app.mainplugin"/>
4
    <libraries library-dir="lib"/>
5
    <depends plugin-name="org.gvsig.app.mainplugin" />
6
    <depends plugin-name="org.gvsig.pdf.app.mainplugin" />
7
    <resourceBundle name="text"/>
8
    <label-set class-name="org.gvsig.app.project.documents.layout.gui.LayoutPanel">
9
        <label id="units" size="80"/>
10
        <label id="2" size="180"/>
11
        <label id="3" size="180"/>
12
        <label id="4" size="50"/>
13
        <label id="5" size="50"/>
14
    </label-set>
15
    <extensions>
16
        <extension class-name="org.gvsig.app.extension.LayoutMainExtension"
17
                   description="Extensi?n encargada de gestionar los layouts."
18
                   active="true"
19
                   priority="10">
20

  
21
            <action
22
                name="application-layout-template-open"
23
                label="abrir_plantilla"
24
                tooltip="abrir_plantilla"
25
                action-command="application-layout-template-open"
26
                icon="application-layout-template-open"
27
                position="700600000"
28
            />
29
            <action
30
                name="application-layout-new"
31
                label="new_layout"
32
                tooltip="new_layout"
33
                action-command="application-layout-new"
34
                icon="application-layout-new"
35
                position="000700500000"
36
            />
37

  
38
            <menu text="Mapa/abrir_plantilla" name="application-layout-template-open" />
39
            <menu text="Mapa/new_layout" name="application-layout-new"/>
40

  
41
            <tool-bar name="layout" position="200"/>
42
            <tool-bar name="layout_navigation" position="300"/>
43
            <tool-bar name="layout_tools" position="400"/>
44
            <tool-bar name="layout_tools_view" position="410"/>
45
            <tool-bar name="layout_tools_insert_graphics" position="500"/>
46
            <tool-bar name="layout_tools_insert_cartographics" position="510"/>
47
            <tool-bar name="layout_tools_graphics" position="520"/>
48

  
49
        </extension>
50

  
51
        <extension class-name="org.gvsig.app.extension.ExportLayoutExtension"
52
                   description="Extension for exporting the layout to PDF and PostScript."
53
                   active="true">
54

  
55
            <action
56
                name="application-export-to-pdf"
57
                label="exportar_pdf"
58
                tooltip="exportar_pdf"
59
                action-command="application-export-to-pdf"
60
                icon="application-export-to-pdf"
61
                position="100900200"
62
            />
63

  
64
            <action
65
                name="application-export-to-postscript"
66
                label="exportar_ps"
67
                tooltip="exportar_ps"
68
                action-command="application-export-to-postscript"
69
                icon="application-export-to-postscript"
70
                position="100900300"
71
            />
72

  
73
            <tool-bar name="layout">
74
                <action-tool name="application-export-to-pdf"/>
75
                <action-tool name="application-export-to-postscript"/>
76
            </tool-bar>
77
        </extension>
78

  
79
        <extension class-name="org.gvsig.app.extension.LayoutExtension"
80
                   description="Extensi?n encargada de gestionar los eventos realizados sobre el Layout."
81
                   active="true">
82

  
83
            <action
84
                name="application-layout-template-save"
85
                label="guardar_como_plantilla"
86
                tooltip="guardar_como_plantilla"
87
                action-command="application-layout-template-save"
88
                icon="application-layout-template-save"
89
                position="700650000"
90
            />
91

  
92
            <action
93
                name="layout-navigation-zoom-in-topoint"
94
                label="Zoom_Mas"
95
                tooltip="Zoom_Mas"
96
                action-command="layout-navigation-zoom-in-topoint"
97
                icon="layout-navigation-zoom-in-topoint"
98
                position="700100400"
99
            />
100
            <action
101
                name="layout-navigation-zoom-out-topoint"
102
                label="Zoom_Menos"
103
                tooltip="Zoom_Menos"
104
                action-command="layout-navigation-zoom-out-topoint"
105
                icon="layout-navigation-zoom-out-topoint"
106
                position="700100500"
107
            />
108
            <action
109
                name="layout-navigation-zoom-in-center"
110
                label="Zoom_Acercar"
111
                tooltip="Zoom_Acercar"
112
                action-command="layout-navigation-zoom-in-center"
113
                icon="layout-navigation-zoom-in-center"
114
                position="700100200"
115
            />
116
            <action
117
                name="layout-navigation-zoom-out-center"
118
                label="Zoom_Alejar"
119
                tooltip="Zoom_Alejar"
120
                action-command="layout-navigation-zoom-out-center"
121
                icon="layout-navigation-zoom-out-center"
122
                position="700100300"
123
            />
124
            <action
125
                name="layout-navigation-zoom-all"
126
                label="Zoom_Completo"
127
                tooltip="Zoom_Completo"
128
                action-command="layout-navigation-zoom-all"
129
                icon="layout-navigation-zoom-all"
130
                position="700100700"
131
            />
132
            <action
133
                name="layout-navigation-zoom-real"
134
                label="Zoom_Real"
135
                tooltip="Zoom_Real"
136
                action-command="layout-navigation-zoom-real"
137
                icon="layout-navigation-zoom-real"
138
                position="700100800"
139
            />
140
            <action
141
                name="layout-navigation-zoom-selected"
142
                label="Zoom_Select"
143
                tooltip="Zoom_Select"
144
                action-command="layout-navigation-zoom-selected"
145
                icon="layout-navigation-zoom-selected"
146
                position="700100900"
147
            />
148
            <action
149
                name="layout-navigation-pan"
150
                label="Desplazamiento"
151
                tooltip="Desplazamiento"
152
                action-command="layout-navigation-pan"
153
                icon="layout-navigation-pan"
154
                position="700100100"
155
            />
156

  
157
            <menu text="Mapa/guardar_como_plantilla" name="application-layout-template-save"/>
158

  
159
            <menu text="Mapa/navegacion" position="700100000" is_separator="true"/>
160

  
161
            <menu text="Mapa/navegacion/Zoom_Mas" name="layout-navigation-zoom-in-topoint"/>
162
            <menu text="Mapa/navegacion/Zoom_Menos" name="layout-navigation-zoom-out-topoint"/>
163
            <menu text="Mapa/navegacion/Zoom_Acercar" name="layout-navigation-zoom-in-center"/>
164
            <menu text="Mapa/navegacion/Zoom_Alejar" name="layout-navigation-zoom-out-center"/>
165
            <menu text="Mapa/navegacion/Zoom_Completo" name="layout-navigation-zoom-all"/>
166
            <menu text="Mapa/navegacion/Zoom_Real" name="layout-navigation-zoom-real"/>
167
            <menu text="Mapa/navegacion/Zoom_Select" name="layout-navigation-zoom-selected"/>
168
            <menu text="Mapa/navegacion/Desplazamiento" name="layout-navigation-pan"/>
169

  
170
            <tool-bar name="layout" position="200"/>
171
            <tool-bar name="layout_navigation" position="300">
172
                <selectable-tool name="layout-navigation-zoom-in-topoint" />
173
                <selectable-tool name="layout-navigation-zoom-out-topoint" />
174
                <action-tool name="layout-navigation-zoom-in-center" />
175
                <action-tool name="layout-navigation-zoom-out-center" />
176
                <action-tool name="layout-navigation-zoom-all" />
177
                <action-tool name="layout-navigation-zoom-real" />
178
                <action-tool name="layout-navigation-zoom-selected" />
179
                <selectable-tool name="layout-navigation-pan" />
180
            </tool-bar>
181
            <tool-bar name="layout_tools" position="400"/>
182
            <tool-bar name="layout_tools_view" position="410"/>
183
            <tool-bar name="layout_tools_insert_graphics" position="500"/>
184
            <tool-bar name="layout_tools_insert_cartographics" position="510"/>
185
            <tool-bar name="layout_tools_graphics" position="520"/>
186

  
187
        </extension>
188

  
189
        <extension class-name="org.gvsig.app.extension.LayoutEditableControls"
190
                   description="Extensi?n encargada de gestionar los eventos de edici?n realizados sobre el Layout."
191
                   active="true">
192

  
193
            <action
194
                name="layout-properties"
195
                label="propiedades"
196
                tooltip="propiedades_mapa"
197
                action-command="layout-properties"
198
                position="709000000"
199
                icon="layout-properties"
200
            />
201

  
202
            <menu text="Mapa/propiedades" name="layout-properties"/>
203
        </extension>
204

  
205
        <extension class-name="org.gvsig.app.extension.LayoutEditVertexExtension"
206
                   description="Extensi?n encargada de gestionar los eventos de edici?n realizados sobre el Layout."
207
                   active="true">
208

  
209
            <action
210
                name="layout-graphic-edit-vertex"
211
                label="editar_vertices"
212
                tooltip="editar_vertices"
213
                action-command="layout-graphic-edit-vertex"
214
                icon="layout-graphic-edit-vertex"
215
                position="700301000"
216
            />
217

  
218
            <menu text="Mapa/edicion/editar_vertices" name="layout-graphic-edit-vertex"/>
219
            <tool-bar name="selection">
220
                <selectable-tool name="layout-graphic-edit-vertex"/>
221
            </tool-bar>
222
        </extension>
223

  
224
        <extension class-name="org.gvsig.app.extension.LayoutInsertToolsExtension"
225
                   description="Extensi?n encargada de gestionar los eventos de edici?n realizados sobre el Layout."
226
                   active="true">
227

  
228
            <action
229
                name="selection-select-by-rectangle-layout"
230
                label="seleccionar_por_rectangulo"
231
                tooltip="seleccionar_por_rectangulo"
232
                action-command="selection-select-by-rectangle-layout"
233
                icon="selection-by-rectangle"
234
                position="301200000"
235
            />
236

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

  
358
            <menu text="Selection/seleccionar_por_rectangulo"
359
                  name="selection-select-by-rectangle-layout"/>
360

  
361
            <menu text="Mapa/Insertar"
362
                  position="700400000"
363
                  is_separator="true"/>
364

  
365
            <menu text="Mapa/Insertar/texto" name="layout-insert-text" />
366
            <menu text="Mapa/Insertar/punto" name="layout-insert-point" />
367
            <menu text="Mapa/Insertar/rectangulo" name="layout-insert-rectangle" />
368
            <menu text="Mapa/Insertar/circulo" name="layout-insert-circle" />
369
            <menu text="Mapa/Insertar/linea" name="layout-insert-line" />
370
            <menu text="Mapa/Insertar/polilinea" name="layout-insert-polyline" />
371
            <menu text="Mapa/Insertar/poligono" name="layout-insert-polygon" />
372
            <menu text="Mapa/Insertar/imagen" name="layout-insert-image" />
373
            <menu text="Mapa/Insertar/Vista" name="layout-insert-view" />
374
            <menu text="Mapa/Insertar/Localizador" name="layout-insert-locator" />
375
            <menu text="Mapa/Insertar/leyenda" name="layout-insert-legend" />
376
            <menu text="Mapa/Insertar/escala" name="layout-insert-scalebar" />
377
            <menu text="Mapa/Insertar/north" name="layout-insert-north" />
378
            <menu text="Mapa/Insertar/cajetin" name="layout-insert-box" />
379

  
380
            <tool-bar name="selection">
381
                <selectable-tool name="selection-select-by-rectangle-layout" />
382
            </tool-bar>
383

  
384
            <tool-bar name="edit">
385
                <action-tool name="edit-delete-layout" />
386
            </tool-bar>
387

  
388
            <tool-bar name="layout_tools_insert_graphics">
389
                <selectable-tool name="layout-insert-text" />
390
                <selectable-tool name="layout-insert-image" />
391
                <selectable-tool name="layout-insert-point" />
392
                <selectable-tool name="layout-insert-rectangle" />
393
                <selectable-tool name="layout-insert-circle" />
394
                <selectable-tool name="layout-insert-line" />
395
                <selectable-tool name="layout-insert-polyline" />
396
                <selectable-tool name="layout-insert-polygon" />
397
            </tool-bar>
398

  
399
            <tool-bar name="layout_tools_insert_cartographics">
400
                <selectable-tool name="layout-insert-view" />
401
                <selectable-tool name="layout-insert-locator" />
402
                <selectable-tool name="layout-insert-legend" />
403
                <selectable-tool name="layout-insert-scalebar" />
404
                <selectable-tool name="layout-insert-north" />
405
                <selectable-tool name="layout-insert-box" />
406
            </tool-bar>
407
        </extension>
408

  
409
        <extension class-name="org.gvsig.app.extension.FFrameViewExtension"
410
                   description="Extensi?n encargada de gestionar los eventos realizados sobre las vistas a?adidas al Layout."
411
                   active="true">
412
            <combo-scale name="layout-view-change-scale" label="1:"
413
                         elements="1000;2000;5000;10000;25000;50000;100000;200000;500000;1000000;2000000;5000000"
414
                         value="10000" action-command="layout-view-change-scale" />
415
            <action
416
                name="layout-view-change-scale"
417
                label="_Change_scale"
418
                action-command="view-change-scale"
419
            />
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
            <menu text="Mapa/navegacion_vista"
446
                  position="700200000"
447
                  is_separator="true"/>
448

  
449
            <menu text="Mapa/navegacion_vista/Zoom_Mas_Vista" name="layout-view-navigation-zoom-in-topoint"/>
450
            <menu text="Mapa/navegacion_vista/Zoom_Menos_Vista" name="layout-view-navigation-zoom-out-topoint"/>
451
            <menu text="Mapa/navegacion_vista/Zoom_Completo_Vista" name="layout-view-navigation-zoom-all"/>
452

  
453
            <tool-bar name="layout_tools_view">
454
                <action-tool name="layout-view-navigation-zoom-all"/>
455
                <selectable-tool name="layout-view-navigation-zoom-in-topoint"/>
456
                <selectable-tool name="layout-view-navigation-zoom-out-topoint"/>
457
            </tool-bar>
458
        </extension>
459

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

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

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

  
489
        <extension class-name="org.gvsig.app.extension.LayoutGraphicControls"
490
                   description="Extensi?n encargada de gestionar los eventos realizados sobre los gr?ficos que contiene el Layout."
491
                   active="true">
492

  
493
            <action
494
                name="layout-graphic-add-border"
495
                label="linea_grafica"
496
                tooltip="linea_grafica"
497
                action-command="layout-graphic-add-border"
498
                icon="layout-graphic-add-border"
499
                position="700300100"
500
            />
501
            <action
502
                name="layout-graphic-align"
503
                label="alinear"
504
                tooltip="alinear_graficos"
505
                action-command="layout-graphic-align"
506
                icon="layout-graphic-align"
507
                position="700300200"
508
            />
509
            <action
510
                name="layout-graphic-bring-to-front"
511
                label="colocar_delante"
512
                tooltip="colocar_delante"
513
                action-command="layout-graphic-bring-to-front"
514
                icon="layout-graphic-bring-to-front"
515
                position="700300300"
516
            />
517
            <action
518
                name="layout-graphic-send-back"
519
                label="colocar_detras"
520
                tooltip="colocar_detras"
521
                action-command="layout-graphic-send-back"
522
                icon="layout-graphic-send-back"
523
                position="700300400"
524
            />
525
            <action
526
                name="layout-graphic-group"
527
                label="agrupar"
528
                tooltip="agrupar_graficos"
529
                action-command="layout-graphic-group"
530
                icon="layout-graphic-group"
531
                position="700300500"
532
            />
533
            <action
534
                name="layout-graphic-ungroup"
535
                label="desagrupar"
536
                tooltip="desagrupar_graficos"
537
                action-command="layout-graphic-ungroup"
538
                icon="layout-graphic-ungroup"
539
                position="700300600"
540
            />
541
            <action
542
                name="layout-graphic-position"
543
                label="tamano_posicion"
544
                tooltip="tamano_posicion"
545
                action-command="layout-graphic-position"
546
                icon="layout-graphic-position"
547
                position="700301100"
548
            />
549
            <action
550
                name="layout-graphic-properties"
551
                label="propiedades"
552
                tooltip="propiedades"
553
                action-command="layout-graphic-properties"
554
                icon="layout-graphic-properties"
555
                position="700302000"
556
            />
557

  
558
            <menu text="Mapa/Graficos"
559
                  position="700300000"
560
                  is_separator="true"/>
561

  
562
            <menu text="Mapa/Graficos/propiedades" name="layout-graphic-properties" />
563
            <menu text="Mapa/Graficos/alinear" name="layout-graphic-align" />
564
            <menu text="Mapa/Graficos/agrupar" name="layout-graphic-group" />
565
            <menu text="Mapa/Graficos/desagrupar" name="layout-graphic-ungroup" />
566
            <menu text="Mapa/Graficos/colocar_delante" name="layout-graphic-bring-to-front" />
567
            <menu text="Mapa/Graficos/colocar_detras" name="layout-graphic-send-back" />
568
            <menu text="Mapa/Graficos/tamano_posicion" name="layout-graphic-position" />
569
            <menu text="Mapa/Graficos/linea_grafica" name="layout-graphic-add-border" />
570

  
571
            <tool-bar name="layout_tools_graphics">
572
                <action-tool name="layout-graphic-bring-to-front" />
573
                <action-tool name="layout-graphic-send-back" />
574
                <action-tool name="layout-graphic-position" />
575
                <action-tool name="layout-graphic-group" />
576
                <action-tool name="layout-graphic-ungroup" />
577
                <action-tool name="layout-graphic-add-border" />
578
            </tool-bar>
579

  
580
        </extension>
581

  
582
        <extension class-name="org.gvsig.app.extension.FFrameLegendExtension"
583
                   description="Extensi?n encargada de controlar un FFrameLegend."
584
                   active="true">
585

  
586
            <action
587
                name="layout-graphic-simplify-legend"
588
                label="simplificar_leyenda"
589
                tooltip="simplificar_leyenda"
590
                action-command="layout-graphic-simplify-legend"
591
                icon="layout-graphic-simplify-legend"
592
                position="700301200"
593
            />
594
            <menu text="Mapa/Graficos/simplificar_leyenda" name="layout-graphic-simplify-legend" />
595

  
596
        </extension>
597

  
598
        <extension class-name="org.gvsig.app.extension.LayoutRedoExtension"
599
                   description="Extensi?n para rehacer cambios sobre el Layout."
600
                   active="true">
601

  
602
            <action
603
                name= "edit-redo-layout"
604
                label="rehacer"
605
                tooltip="rehacer"
606
                action-command="edit-redo-layout"
607
                icon="edit-redo"
608
                position="200200000"
609
            />
610

  
611
            <menu text="Edit/_Redo" name="edit-redo-layout"/>
612
            <tool-bar name="edit">
613
                <action-tool name="edit-redo-layout"/>
614
            </tool-bar>
615
        </extension>
616

  
617

  
618
        <extension class-name="org.gvsig.app.extension.LayoutUndoExtension"
619
                   description="Extensi?n para deshacer cambios sobre el Layout."
620
                   active="true">
621

  
622
            <action
623
                name= "edit-undo-layout"
624
                label="deshacer"
625
                tooltip="deshacer"
626
                action-command="edit-undo-layout"
627
                icon="edit-undo"
628
                position="200100000"
629
            />
630

  
631
            <menu text="Edit/_Undo" name="edit-undo-layout" />
632
            <tool-bar name="edit">
633
                <action-tool name="edit-undo-layout" />
634
            </tool-bar>
635
        </extension>
636

  
637
        <extension class-name="org.gvsig.app.extension.LayoutCommandStackExtension"
638
                   description="Extensi?n encargada de abrir el di?logo para gestionar los comandos apilados."
639
                   active="true">
640

  
641
            <action
642
                name="edit-undo-redo-actions-layout"
643
                label="_Undo_redo_history"
644
                tooltip="_Undo_redo_history"
645
                action-command="edit-undo-redo-actions-layout"
646
                icon="edit-undo-redo-actions"
647
                position="200300000"
648
            />
649

  
650
            <menu text="Edit/_Undo_redo_history" name="edit-undo-redo-actions-layout" />
651
            <tool-bar name="edit">
652
                <action-tool name="edit-undo-redo-actions-layout" />
653
            </tool-bar>
654
        </extension>
655

  
656
        <extension class-name="org.gvsig.app.extension.Print"
657
                   description="Extensi?n encargada de la impresi?n."
658
                   active="true">
659

  
660
            <action
661
                name="application-print-layout"
662
                label="Imprimir"
663
                tooltip="Imprimir"
664
                action-command="application-print-layout"
665
                icon="application-print"
666
                position="700800000"
667
            />
668

  
669
            <menu text="Mapa/Imprimir" name="application-print-layout" />
670
            <tool-bar name="layout">
671
                <action-tool name="application-print-layout" />
672
            </tool-bar>
673
        </extension>
674

  
675
        <extension class-name="org.gvsig.app.extension.PrintProperties"
676
                   escription="Extensi?n encargada de las propiedades de impresi?n."
677
                   active="true">
678

  
679
            <action
680
                name="application-page-setup-layout"
681
                label="preparar_pagina"
682
                tooltip="preparar_pagina"
683
                action-command="application-page-setup-layout"
684
                icon="application-page-setup"
685
                position="700700000"
686
            />
687

  
688
            <menu text="Mapa/preparar_pagina" name="application-page-setup-layout" />
689
            <tool-bar name="layout">
690
                <action-tool name="application-page-setup-layout" />
691
            </tool-bar>
692
        </extension>
693

  
694
        <extension class-name="org.gvsig.app.extension.FFrameViewPanExtension"
695
                   description="Extension encargada de gestionar los desplazamientos en la vista del layout."
696
                   active="true">
697
            <action
698
                name="layout-view-navigation-pan"
699
                label="Encuadre_Vista"
700
                tooltip="Encuadre_Vista"
701
                action-command="layout-view-navigation-pan"
702
                icon="layout-view-navigation-pan"
703
                position="700200100"
704
            />
705

  
706
            <menu text="Mapa/navegacion_vista/Encuadre_Vista" name="layout-view-navigation-pan"/>
707
            <tool-bar name="layout_tools_view">
708
                <selectable-tool name="layout-view-navigation-pan" />
709
            </tool-bar>
710
        </extension>
711

  
712
        <extension class-name="org.gvsig.app.extension.FFrameViewAddLayerExtension"
713
                   description="Extension encargada de gestionar los desplazamientos en la vista del layout."
714
                   active="true">
715
            <action
716
                name="layout-view-add-layer"
717
                label="Add_layer"
718
                tooltip="Add_layer"
719
                action-command="layout-view-add-layer"
720
                icon="view-layer-add"
721
                position="700200700"
722
            />
723
            <menu text="Mapa/Add_layer" name="layout-view-add-layer"/>
724
            <tool-bar name="layout_tools_view" position="9">
725
                <action-tool name="layout-view-add-layer" />
726
            </tool-bar>
727
        </extension>
728

  
729
        <extension class-name="org.gvsig.app.extension.FFrameViewZoomPrev"
730
                   description="Extension encargada de gestionar los zooms previos al actual."
731
                   active="true">
732
            <action name="layout-view-navigation-zoom-back"
733
                    label="Zoom_back"
734
                    tooltip="Zoom_back"
735
                    action-command="layout-view-navigation-zoom-back"
736
                    icon="view-navigation-zoom-back"
737
                    position="700200550" accelerator="" />
738

  
739
            <menu name="layout-view-navigation-zoom-back" text="Mapa/navegacion_vista/Zoom_Mas_Vista/Zoom_back" />
740
            <tool-bar name="layout_tools_view" position="9">
741
                <action-tool name="layout-view-navigation-zoom-back" />
742
            </tool-bar>
743
        </extension>
744

  
745

  
746
        <extension class-name="org.gvsig.app.extension.reportfromlayout.ConfigureReportFromLayoutExtension"
747
                   description="Extensi?n encargada de configurar informes a partir de layouts"
748
                   active="true"
749
                   priority="10">
750

  
751
            <action
752
                name="application-layout-configurereportfromlayout"
753
                label="layout-configurereportfromlayout"
754
                tooltip="layout-configurereportfromlayout"
755
                action-command="layout-configurereportfromlayout"
756
                icon="application-layout-configurereportfromlayout"
757
                position="000700660000"
758
            />
759

  
760
            <menu text="Mapa/_Configure_report_from_layout" name="application-layout-configurereportfromlayout"/>
761

  
762
        </extension>
763

  
764
        <extension class-name="org.gvsig.app.extension.reportfromlayout.ExportReportToLayoutExtension"
765
                   description="Extensi?n encargada de exportar layouts a informes."
766
                   active="true"
767
                   priority="10">
768

  
769
            <action
770
                name="application-layout-exporttolayout"
771
                label="layout-exportreporttolayout"
772
                tooltip="layout-exportreporttolayout"
773
                action-command="layout-exportreporttolayout"
774
                icon="application-layout-exportreporttolayout"
775
                position="000700670000"
776
            />
777

  
778
            <menu text="Mapa/_Export_report_to_layout" name="application-layout-exporttolayout"/>
779

  
780
        </extension>
781

  
782

  
783
    </extensions>
784
</plugin-config>
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff