16 lines
320 B
Java
16 lines
320 B
Java
package com.tridium.ui.theme;
|
|
|
|
import javax.baja.gx.BInsets;
|
|
import javax.baja.gx.Graphics;
|
|
import javax.baja.ui.BToolBar;
|
|
|
|
public interface ToolBarTheme extends WidgetTheme {
|
|
double getGap();
|
|
|
|
BInsets getInsets();
|
|
|
|
double getScrollSpeed();
|
|
|
|
void paintBackground(Graphics graphics, BToolBar bToolBar);
|
|
}
|