Label.h file new in Git master
Class Magnum::
Namespaces
- namespace Magnum
- Root namespace.
- namespace Magnum::Ui
- UI library.
Classes
- class Magnum::Ui::Label new in Git master
- Label widget.
Enums
- enum class LabelStyle: UnsignedByte { Default, Primary, Success, Warning, Danger, Info, Dim, Title } new in Git master
- Label style.
Functions
- auto operator<<(Debug& debug, LabelStyle value) -> Debug& new in Git master
- Debug output operator.
-
auto label(Anchor anchor,
Icon icon,
LabelStyle style = LabelStyle::
Default) -> Anchor new in Git master - Stateless icon label widget.
-
auto label(Anchor anchor,
Containers::
StringView text, const TextProperties& textProperties, LabelStyle style = LabelStyle:: Default) -> Anchor new in Git master - Stateless text label widget.
-
auto label(Anchor anchor,
Containers::
StringView text, LabelStyle style = LabelStyle:: Default) -> Anchor new in Git master -
auto label(Anchor anchor,
const StorageQuery<Int>& query,
LabelStyle style = LabelStyle::
Default) -> Anchor new in Git master - Stateless label widget with an integer data binding.
-
auto label(Anchor anchor,
const StorageQuery<UnsignedInt>& query,
LabelStyle style = LabelStyle::
Default) -> Anchor -
auto label(Anchor anchor,
const StorageQuery<Long>& query,
LabelStyle style = LabelStyle::
Default) -> Anchor -
auto label(Anchor anchor,
const StorageQuery<UnsignedLong>& query,
LabelStyle style = LabelStyle::
Default) -> Anchor -
auto label(Anchor anchor,
const StorageQuery<Int>& query,
const DecimalFormatter& formatter,
LabelStyle style = LabelStyle::
Default) -> Anchor new in Git master - Stateless label widget with an integer data binding and a custom decimal formatter.
-
auto label(Anchor anchor,
const StorageQuery<UnsignedInt>& query,
const DecimalFormatter& formatter,
LabelStyle style = LabelStyle::
Default) -> Anchor -
auto label(Anchor anchor,
const StorageQuery<Long>& query,
const DecimalFormatter& formatter,
LabelStyle style = LabelStyle::
Default) -> Anchor -
auto label(Anchor anchor,
const StorageQuery<UnsignedLong>& query,
const DecimalFormatter& formatter,
LabelStyle style = LabelStyle::
Default) -> Anchor -
auto label(Anchor anchor,
const StorageQuery<Int>& query,
const HexadecimalFormatter& formatter,
LabelStyle style = LabelStyle::
Default) -> Anchor new in Git master - Stateless label widget with an integer data binding and a custom hexadecimal formatter.
-
auto label(Anchor anchor,
const StorageQuery<UnsignedInt>& query,
const HexadecimalFormatter& formatter,
LabelStyle style = LabelStyle::
Default) -> Anchor -
auto label(Anchor anchor,
const StorageQuery<Long>& query,
const HexadecimalFormatter& formatter,
LabelStyle style = LabelStyle::
Default) -> Anchor -
auto label(Anchor anchor,
const StorageQuery<UnsignedLong>& query,
const HexadecimalFormatter& formatter,
LabelStyle style = LabelStyle::
Default) -> Anchor -
auto label(Anchor anchor,
const StorageQuery<Float>& query,
LabelStyle style = LabelStyle::
Default) -> Anchor new in Git master - Stateless label widget with a floating-point data binding.
-
auto label(Anchor anchor,
const StorageQuery<Double>& query,
LabelStyle style = LabelStyle::
Default) -> Anchor -
auto label(Anchor anchor,
const StorageQuery<Float>& query,
const FloatFormatter& formatter,
LabelStyle style = LabelStyle::
Default) -> Anchor new in Git master - Stateless label widget with a floating-point data binding and a custom formatter.
-
auto label(Anchor anchor,
const StorageQuery<Double>& query,
const FloatFormatter& formatter,
LabelStyle style = LabelStyle::
Default) -> Anchor -
auto label(Anchor anchor,
const StorageQuery<Containers::
StringView>& query, LabelStyle style = LabelStyle:: Default) -> Anchor new in Git master - Stateless label widget with a string data binding.
-
auto label(Anchor anchor,
const StorageQuery<Icon>& query,
LabelStyle style = LabelStyle::
Default) -> Anchor new in Git master - Stateless label widget with an icon data binding.