SettingsPane
can automatically select an editor for properties. In its doecs it says
The SettingsPane control is designed to make it really easy for developers to present to end users a list of options that can be modified, using proper built-in editors according the type of those options.
I have 2 questions in this regard:
Which component is chosen for each property type? I saw that booleans have the right-left toggle, numbers have a text field,
ObjectProperty<Color>
has a color chooser (which on desktop pops out - i don't know what will happen on mobile?). What are the rest of the mappings?When I try to have an enum property:
ObjectProperty<EnumType>
I get an error for no renderer. I would think that a combobox would be the default for choosing from a known number of enum constants, shouldn't it? I know I can make that happen with the editor factory myself but I wanted to ask about this anyway, maybe as a suggestion if i didn't make a mistake.
Edit
I'm looking again at the SettingPane example for custom editor: http://docs.gluonhq.com/charm/javadoc/4.3.7/com/gluonhq/charm/glisten/control/SettingsPane.html and I'm noticing 2 problems:
In the example code of the checkbox editor see my comments:
public class CheckBoxEditor implements OptionEditor<Boolean> { private final CheckBox checkBox; public CheckBoxEditor(Option<Boolean> option) { this.checkBox = new CheckBox(); valueProperty().bindBidirectional(option.valueProperty()); }} // only 1 } @Override public Node getEditor() { return checkBox; } @Override public final Property<Boolean> valueProperty() { return checkBox.selectedProperty(); } @Override public Boolean getValue() { return checkBox.isSelected(); } @Override public void setValue(Boolean value) { checkBox.setSelected(value); } // missing }
In the usage example:
final Option<BooleanProperty> dateOption = new DefaultOption(MaterialDesignIcon.DATE_RANGE.graphic(), "Show Date", "Show the date", "Category", settings.showDateProperty(), true, option -> new CheckBoxEditor((Option<Boolean>) option));
the lambda gives me a compilation error:
Type mismatch: cannot convert from CheckBoxEditor to OptionEditor<BooleanProperty>
and option
is of type Option<BooleanProperty>
and the cast is to Option<Boolean>
. A mistake?
The default editors for a
SettingsPane
control are:TextField
.TextField
with aTextFormatter
applied.ToggleButton
.DatePicker
.ColorPicker
.ComboBox
.You can override this, by setting your own factory with
SettingsPane::setOptionEditorFactory
, but you will have to provide all the required editors.Also you can override a particular editor, or you can add your own editor for a given type.
This is a sample of an
Enum
option:Regarding the JavaDoc, yes, those are typos that need fixing. I've filed and issue on it.
About running the sample, it works for me as is. See the above pic, for the WiFi option: