| Revision 4609,
428 bytes
checked in by stoecker, 6 months ago
(diff) |
|
fix #6953 - patch by akks - improve hide handling for left toolbar
|
| Line | |
|---|
| 1 | // License: GPL. For details, see LICENSE file. |
|---|
| 2 | package org.openstreetmap.josm.gui; |
|---|
| 3 | |
|---|
| 4 | /** |
|---|
| 5 | * When some component (ToggleDialog, for example) is linked to button |
|---|
| 6 | * and needs information about button showing/hiding events, this interface |
|---|
| 7 | * is used, setting the listener should be implemented by @class HideableButton |
|---|
| 8 | */ |
|---|
| 9 | public interface ShowHideButtonListener { |
|---|
| 10 | public void buttonShown(); |
|---|
| 11 | public void buttonHidden(); |
|---|
| 12 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.