source: josm/trunk/src/org/openstreetmap/josm/gui/HideableButton.java@ 7678

Last change on this file since 7678 was 6380, checked in by Don-vip, 10 years ago

update license/copyright information

File size: 521 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui;
3
4import javax.swing.Icon;
5
6/**
7 * An interface to provide showing/hiding method for buttons,
8 * when hidden state is stored in preferences
9 */
10interface HideableButton {
11 void applyButtonHiddenPreferences();
12 void setButtonHidden(boolean b);
13 void showButton();
14 void hideButton();
15 String getActionName();
16 Icon getIcon();
17 boolean isButtonVisible();
18 void setShowHideButtonListener(ShowHideButtonListener l);
19}
Note: See TracBrowser for help on using the repository browser.