Files
OAC-Swing/src/main/java/org/openautonomousconnection/oacswing/component/OACPressable.java

19 lines
345 B
Java
Raw Normal View History

package org.openautonomousconnection.oacswing.component;
import java.awt.*;
public interface OACPressable extends OACComponent {
2026-02-08 15:57:43 +01:00
Color getPressedColor();
2026-02-11 23:28:02 +01:00
2026-02-08 15:57:43 +01:00
void setPressedColor(Color color);
2026-02-08 15:57:43 +01:00
Color getHoveredColor();
2026-02-11 23:28:02 +01:00
2026-02-08 15:57:43 +01:00
void setHoveredColor(Color color);
Color getDisabledColor();
2026-02-11 23:28:02 +01:00
2026-02-08 15:57:43 +01:00
void setDisabledColor(Color color);
}