14 lines
286 B
Java
14 lines
286 B
Java
package com.tridium.ui.theme;
|
|
|
|
import javax.baja.gx.BInsets;
|
|
import javax.baja.gx.Graphics;
|
|
import javax.baja.ui.BMenu;
|
|
|
|
public interface MenuTheme extends WidgetTheme {
|
|
float getFrameOpacity();
|
|
|
|
BInsets getInsets();
|
|
|
|
void paintBackground(Graphics graphics, BMenu bMenu);
|
|
}
|