Statistics
| Revision:

svn-gvsig-desktop / tags / v1_0_2_Build_897 / frameworks / _fwAndami / schemas / sample-config.xml @ 33831

History | View | Annotate | Download (4.96 KB)

1 598 fernando
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<plugin-config>
3
        <icon src="images/logoGVA.gif" text="gvSIG"/>
4
        <resourceBundle name="text"/>
5
        <import plugin-name="com.iver.cit.gvsig" />
6
        <labelSet class="com.iver.cit.gvsig.gui.View">
7
                <label id="1" size="100"/>
8
                <label id="2" size="230"/>
9
        </labelSet>
10
        <libraries>
11
                <library file="com.iver.cit.gvsig.jar"/>
12
                <library file="wmsclient.jar"/>
13
        </libraries>
14
        <extensions>
15
                <extension>
16
                        <class name="com.iver.cit.gvsig.ProjectExtension"/>
17
                        <menu text="Archivo/nuevo_proyecto"
18
                                key="n" mnemonic="n"
19
                                tooltip="nuevo_tooltip"
20
                                action-command="NUEVO" icon="images/new.png"/>
21
                        <menu text="Archivo/abrir_proyecto"
22
                                key="a" mnemonic="a"
23
                                tooltip="abrir_tooltip"
24
                                action-command="ABRIR" icon="images/open.png"/>
25
                        <menu text="Archivo/guardar_proyecto"
26
                                key="g" mnemonic="g"
27
                                tooltip="guardar_tooltip"
28
                                action-command="GUARDAR" icon="images/save.png"/>
29
30
                        <toolBar>
31
                                <tool icon="images/new.png" tooltip="nuevo_tooltip"
32
                                        action-command="NUEVO"/>
33
                                <tool icon="images/open.png" tooltip="abrir_tooltip"
34
                                        action-command="ABRIR"/>
35
                                <tool icon="images/save.png" tooltip="guardar_tooltip"
36
                                        action-command="GUARDAR"/>
37 6432 cesar
38 6585 cesar
                                <!-- these will be added to the containing toolbar -->
39
                                <combo-scale
40
                                        name="JPEG Quality"
41
                                        elements="15;30;60;70;80;90;100"
42
                                        value="80"
43
                                        action-command="JPEG_QUALITY" />
44 6432 cesar
45 6585 cesar
                                <combo-button
46 6614 cesar
                                        name="Copy/paste tools">
47 6432 cesar
                                  <combo-button-element icon="images/scissor.png" action-command="CUT" />
48
                                  <combo-button-element icon="images/paste.png" action-command="PASTE" />
49
                                  <combo-button-element icon="images/copy.png" action-command="COPY" />
50
                                </combo-button>
51 598 fernando
                        </toolBar>
52
53
                </extension>
54
55
                <extension>
56
                        <class name="com.iver.cit.gvsig.ZoomPrev"/>
57
                        <menu text="Vista/Zoom_Previo" icon="images/ZoomPrevio.png"/>
58
                        <tool-bar name="Herramientas">
59 5351 cesar
                                <action-tool icon="images/ZoomPrevio.png" action-command="ZOOM_PREV" tooltip="Zoom_Previo" position="11"/>
60 598 fernando
                        </tool-bar>
61 6432 cesar
62
                        <!-- these will be added to the status-bar (because they are not contained in any toolbar) -->
63 6619 cesar
                        <combo-scale
64
                                  name="Scale"
65
                                  label="Scale:"
66
                                  elements="1000;2000;5000;10000;25000;50000;100000;200000;500000;1000000;2000000;5000000"
67
                                  value="10000"
68
                                  action-command="CHANGE_SCALE" />
69 6432 cesar
70 6585 cesar
                        <combo-button
71 6614 cesar
                                name="Tool Mode">
72 6432 cesar
                          <combo-button-element icon="images/once.png" action-command="USE_ONCE" />
73
                          <combo-button-element icon="images/sticky-tool.png" action-command="UNTIL_CHANGED" />
74
                        </combo-button>
75 598 fernando
                </extension>
76
                <extension processing-position="2">
77
                        <class name="com.iver.cit.gvsig.ViewControls"/>
78
                        <menus>
79
                                <menu text="Vista/Zoom_Completo" action-command="FULL" icon="images/MapContents.png" tooltip="Zoom completo a la v?sta"/>
80
                                <menu text="Vista/Zoom_Select" action-command="ZOOM_SELECT" icon="image/Select.png"/>
81
                                <menu text="Vista/Encuadre" action-command="ENCUADRE" icon="images/encuadre.png"/>
82
                                <menu text="Vista/Seleccion_por_tema" action-command="SELECTIONBYSHAPE"/>
83
                                <menu text="Vista/configurar_localizador" action-command="CONFIG_LOCATOR"/>
84
                                <menu text="Vista/propiedades" action-command="PROPERTIES"/>
85
                        </menus>
86
                        <tool-bar name="Herramientas" y-position="1">
87 5351 cesar
                                <action-tool icon="images/MapContents.png" action-command="FULL" tooltip="Zoom_Completo" position="1"/>
88
                                <action-tool icon="images/encuadre.png" action-command="ENCUADRE" tooltip="gestion_encuadre" last="true" position="2"/>
89
                                <selectable-tool group="grupo1" default="true" icon="images/ZoomIn.png" action-command="ZOOM_IN" tooltip="Zoom_M?s" position="3"/>
90
                                <selectable-tool group="grupo1" icon="images/ZoomOut.png" action-command="ZOOM_OUT" position="4"/>
91
                                <selectable-tool group="grupo1" icon="images/Pan.png" action-command="PAN"  tooltip="Encuadre" position="5"/>
92
                                <selectable-tool group="grupo1" icon="images/Identify.png" action-command="INFO"  tooltip="informacion" position="6" />
93
                                <selectable-tool group="grupo2" icon="images/Distancia.png" action-command="MEDICION"  tooltip="medir_distancias" position="7"/>
94
                                <selectable-tool group="grupo2" icon="images/Poligono16.png" action-command="AREA"  tooltip="medir_area" position="8"/>
95
                                <selectable-tool group="grupo2" default="true" icon="images/Select.png" action-command="SELPOINT"  tooltip="seleccionar_por_punto" position="9"/>
96
                                <selectable-tool group="grupo2" icon="images/SelEspacial2b.png" action-command="SELRECT"  tooltip="seleccionar_por_rectangulo" position="10"/>
97 598 fernando
                        </tool-bar>
98
                </extension>
99
                <extension>
100
                        <class name="com.iver.cit.gvsig.ThemeControls"/>
101
                        <menu text="Tema/propiedades"/>
102
                </extension>
103
        </extensions>
104
105
        <file-extensions>
106
                <file-extension description="DGNfiles" ends-with="dgn" dialog="openLayer">
107
                        <class name="com.iver.cit.gvsig.DGNFileExtension"/>
108
                </file-extension>
109
                <file-extension description="Rasterfiles" ends-with="ecw,tif,tiff,jpg,png" dialog="openLayer">
110
                        <class name="com.iver.cit.gvsig.RasterFileExtension"/>
111
                </file-extension>
112
        </file-extensions>
113
</plugin-config>