21 lines
495 B
Java
21 lines
495 B
Java
package com.tridium.ui.theme;
|
|
|
|
import javax.baja.gx.BBrush;
|
|
import javax.baja.gx.Graphics;
|
|
|
|
public interface TreeTableTheme extends TableTheme {
|
|
public static final int COLLAPSED = 1;
|
|
public static final int EMPTY = 0;
|
|
public static final int EXPANDED = 2;
|
|
|
|
double getExpanderHeight();
|
|
|
|
double getExpanderWidth();
|
|
|
|
BBrush getGroupBackground();
|
|
|
|
double getIndent(int i);
|
|
|
|
void paintExpander(Graphics graphics, double d, double d2, boolean z, int i, boolean z2);
|
|
}
|