All Methods Static Methods Concrete Methods
Modifier and Type |
Method and Description |
static StyleElements.BooleanElement |
booleanElement(String label,
BooleanSupplier get,
Consumer<Boolean> set) |
static StyleElements.BoundedDoubleElement |
boundedDoubleElement(String label,
double rangeMin,
double rangeMax,
DoubleSupplier get,
Consumer<Double> set) |
static StyleElements.ColorElement |
colorElement(String label,
Supplier<Color> get,
Consumer<Color> set) |
static StyleElements.ColormapElement |
colormapElement(String label,
Supplier<Colormap> get,
Consumer<Colormap> set) |
static StyleElements.DoubleElement |
doubleElement(String label,
DoubleSupplier get,
Consumer<Double> set) |
static <E> StyleElements.EnumElement<E> |
enumElement(String label,
E[] values,
Supplier<E> get,
Consumer<E> set) |
static StyleElements.FeatureElement |
featureElement(String label,
Supplier<DisplaySettings.TrackMateObject> typeGet,
Supplier<String> featureGet,
BiConsumer<DisplaySettings.TrackMateObject,String> set) |
static StyleElements.FontElement |
fontElement(String label,
Supplier<Font> get,
Consumer<Font> set) |
static StyleElements.IntElement |
intElement(String label,
int rangeMin,
int rangeMax,
IntSupplier get,
Consumer<Integer> set) |
static StyleElements.LabelElement |
label(String label) |
static JCheckBox |
linkedCheckBox(StyleElements.BooleanElement element,
String label) |
static JButton |
linkedColorButton(StyleElements.ColorElement element,
JColorChooser colorChooser) |
static JComboBox<Colormap> |
linkedColormapChooser(StyleElements.ColormapElement element) |
static <E> JComboBox<E> |
linkedComboBoxEnumSelector(StyleElements.EnumElement<E> element) |
static CategoryJComboBox<DisplaySettings.TrackMateObject,String> |
linkedFeatureSelector(StyleElements.FeatureElement element) |
static JButton |
linkedFontButton(StyleElements.FontElement element,
Window parent) |
static JFormattedTextField |
linkedFormattedTextField(StyleElements.DoubleElement element) |
static JLabel |
linkedLabel(StyleElements.LabelElement element) |
static SliderPanelDouble |
linkedSliderPanel(StyleElements.BoundedDoubleElement element,
int tfCols) |
static SliderPanelDouble |
linkedSliderPanel(StyleElements.BoundedDoubleElement element,
int tfCols,
double stepSize) |
static SliderPanel |
linkedSliderPanel(StyleElements.IntElement element,
int tfCols) |
static <E> JSpinner |
linkedSpinnerEnumSelector(StyleElements.EnumElement<E> element) |
static StyleElements.Separator |
separator() |