12 lines
315 B
Java
12 lines
315 B
Java
package com.tridium.ui.theme;
|
|
|
|
import javax.baja.gx.Graphics;
|
|
import javax.baja.gx.RectGeom;
|
|
import javax.baja.ui.BWidget;
|
|
|
|
public interface ExpandablePaneTheme extends PaneTheme {
|
|
double getExpanderWidth();
|
|
|
|
void paintButton(Graphics graphics, BWidget bWidget, RectGeom rectGeom, boolean z, boolean z2);
|
|
}
|