14 lines
355 B
Java
14 lines
355 B
Java
package com.tridium.ui.theme;
|
|
|
|
import javax.baja.gx.BBrush;
|
|
import javax.baja.gx.BFont;
|
|
import javax.baja.ui.style.IStylable;
|
|
|
|
public interface ToolPaneTheme extends PaneTheme {
|
|
BBrush getBackground(IStylable iStylable, boolean z);
|
|
|
|
BBrush getForeground(IStylable iStylable, boolean z);
|
|
|
|
BFont getHeaderFont(IStylable iStylable, boolean z);
|
|
}
|