21 lines
631 B
Java
21 lines
631 B
Java
package com.tridium.ui.theme;
|
|
|
|
import javax.baja.gx.Graphics;
|
|
import javax.baja.gx.RectGeom;
|
|
import javax.baja.ui.BScrollBar;
|
|
|
|
public interface ScrollBarTheme extends WidgetTheme {
|
|
public static final int DOWN = 1;
|
|
public static final int LEFT = 2;
|
|
public static final int RIGHT = 3;
|
|
public static final int UP = 0;
|
|
|
|
double getFixedWidth();
|
|
|
|
void paintButton(Graphics graphics, BScrollBar bScrollBar, RectGeom rectGeom, int i, boolean z);
|
|
|
|
void paintThumb(Graphics graphics, BScrollBar bScrollBar, RectGeom rectGeom);
|
|
|
|
void paintTrack(Graphics graphics, BScrollBar bScrollBar, RectGeom rectGeom);
|
|
}
|