2026-03-17 13:31:18 -07:00

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);
}