Statistics
| Revision:

svn-gvsig-desktop / trunk / frameworks / _fwAndami / src / com / iver / andami / ui / mdiFrame / SelectableToolBar.java @ 9708

History | View | Annotate | Download (2.9 KB)

1 1104 fjp
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 *
19
 * For more information, contact:
20
 *
21
 *  Generalitat Valenciana
22
 *   Conselleria d'Infraestructures i Transport
23
 *   Av. Blasco Ib??ez, 50
24
 *   46010 VALENCIA
25
 *   SPAIN
26
 *
27
 *      +34 963862235
28
 *   gvsig@gva.es
29
 *      www.gvsig.gva.es
30
 *
31
 *    or
32
 *
33
 *   IVER T.I. S.A
34
 *   Salamanca 50
35
 *   46005 Valencia
36
 *   Spain
37
 *
38
 *   +34 963163400
39
 *   dac@iver.es
40
 */
41 598 fernando
package com.iver.andami.ui.mdiFrame;
42
43
import java.util.HashMap;
44
45
import javax.swing.ButtonGroup;
46
import javax.swing.JToggleButton;
47
import javax.swing.JToolBar;
48
49
50
/**
51
 * Caja de herramientas seleccionables
52
 */
53
public class SelectableToolBar extends JToolBar {
54
    private HashMap grupos = new HashMap();
55
56
    /**
57
     * Creates a new SelectableToolBar object.
58
     *
59
     * @param titulo T?tulo de la barra
60
     */
61
    public SelectableToolBar(String titulo) {
62
        super(titulo);
63
    }
64
65
    /**
66
     * A?ade un boton a la caja
67
     *
68
     * @param btn bot?n a a?adir.
69
     */
70 3196 caballero
   /* public void addButton(String groupName, JToggleButton btn) {
71 598 fernando
            ButtonGroup group = (ButtonGroup) grupos.get(groupName);
72
            if (group == null){
73
                    group = new ButtonGroup();
74
                    grupos.put(groupName, group);
75
            }
76
        group.add(btn);
77
        add(btn);
78
    }
79 3196 caballero
    */
80
    /**
81
     * A?ade un boton a la caja
82
     *
83
     * @param btn bot?n a a?adir.
84
     */
85
    public void addButton(ButtonGroup group, JToggleButton btn) {
86
            if (grupos.size()==0){
87
                    grupos.put("",group);
88
            }
89
            group.add(btn);
90
        add(btn);
91
    }
92 3897 caballero
93 2684 fjp
    /**
94
     * Selects a toggleButton in this toolBar by ActionCommand
95
     * @param actionCommand
96
     */
97 3897 caballero
    public void setSelectedTool(String actionCommand){
98 2684 fjp
        for (int i = 0; i < getComponentCount(); i++) {
99
            if (getComponent(i) instanceof JToggleButton)
100
            {
101
                JToggleButton toggleButton = (JToggleButton) getComponent(i);
102
                String aux = toggleButton.getActionCommand();
103 3897 caballero
                if (aux != null)
104
                  if (aux.equals(actionCommand)){
105 2684 fjp
                        toggleButton.setSelected(true);
106
                      }
107
            }
108
        }
109 3897 caballero
110 2684 fjp
    }
111 598 fernando
}