13 lines
313 B
Java
13 lines
313 B
Java
package com.tridium.ui.theme;
|
|
|
|
import javax.baja.gx.BBrush;
|
|
import javax.baja.ui.style.IStylable;
|
|
|
|
public interface PropertySheetTreeTheme extends TreeTheme {
|
|
BBrush getDividerColor(IStylable iStylable);
|
|
|
|
BBrush getHeaderBackground(IStylable iStylable);
|
|
|
|
BBrush getHeaderColor(IStylable iStylable);
|
|
}
|