Checkbox.h file new in Git master
Class Magnum::
Namespaces
- namespace Magnum
- Root namespace.
- namespace Magnum::Ui
- UI library.
Classes
- class Magnum::Ui::Checkbox new in Git master
- Checkbox widget.
Enums
- enum class CheckboxStyle: UnsignedByte { Checkbox, RadioButton } new in Git master
- Checkbox style.
Functions
- auto operator<<(Debug& debug, CheckboxStyle value) -> Debug& new in Git master
- Debug output operator.
-
auto checkbox(Anchor anchor,
const StorageQuery<bool>& query,
Containers::
StringView text, const TextProperties& textProperties, CheckboxStyle style = CheckboxStyle::Checkbox) -> Anchor new in Git master - Stateless checkbox with a data binding for the checked state.
-
auto checkbox(Anchor anchor,
const StorageQuery<bool>& query,
Containers::
StringView text, CheckboxStyle style = CheckboxStyle::Checkbox) -> Anchor new in Git master -
auto radioButton(Anchor anchor,
const StorageQuery<bool>& query,
Containers::
StringView text, const TextProperties& textProperties) -> Anchor new in Git master - Stateless radio button with a data binding for the checked state.
-
auto radioButton(Anchor anchor,
const StorageQuery<bool>& query,
Containers::
StringView text) -> Anchor new in Git master