source: josm/src/org/openstreetmap/josm/gui/IconToggleButton.java@ 1

Last change on this file since 1 was 1, checked in by imi, 21 years ago

wiki 19:37, 27. Sep 2005

File size: 421 bytes
RevLine 
[1]1package org.openstreetmap.josm.gui;
2
3import javax.swing.Action;
4import javax.swing.JToggleButton;
5
6/**
7 * Just a toggle button, with smaller border and icon only to display in
8 * MapFrame toolbars.
9 *
10 * @author imi
11 */
12public class IconToggleButton extends JToggleButton {
13
14 /**
15 * Construct the toggle button with the given action.
16 */
17 public IconToggleButton(Action action) {
18 super(action);
19 setText(null);
20 }
21}
Note: See TracBrowser for help on using the repository browser.