Describes the properties of an item inside a FlexBox container. More...
Classes | |
struct | Margin |
Represents a margin. More... | |
Public Types | |
enum class | AlignSelf { autoAlign , flexStart , flexEnd , center , stretch } |
Possible value for the alignSelf property. More... | |
Public Member Functions | |
FlexItem () noexcept | |
Creates an item with default parameters, and zero size. | |
FlexItem (float width, float height) noexcept | |
Creates an item with the given size. | |
FlexItem (float width, float height, Component &targetComponent) noexcept | |
Creates an item with the given size and target Component. | |
FlexItem (float width, float height, FlexBox &flexBoxToControl) noexcept | |
Creates an item that represents an embedded FlexBox with a given size. | |
FlexItem (Component &componentToControl) noexcept | |
Creates an item with a given target Component. | |
FlexItem (FlexBox &flexBoxToControl) noexcept | |
Creates an item that represents an embedded FlexBox. | |
FlexItem | withFlex (float newFlexGrow) const noexcept |
Returns a copy of this object with a new flex-grow value. | |
FlexItem | withFlex (float newFlexGrow, float newFlexShrink) const noexcept |
Returns a copy of this object with new flex-grow and flex-shrink values. | |
FlexItem | withFlex (float newFlexGrow, float newFlexShrink, float newFlexBasis) const noexcept |
Returns a copy of this object with new flex-grow, flex-shrink and flex-basis values. | |
FlexItem | withWidth (float newWidth) const noexcept |
Returns a copy of this object with a new width. | |
FlexItem | withMinWidth (float newMinWidth) const noexcept |
Returns a copy of this object with a new minimum width. | |
FlexItem | withMaxWidth (float newMaxWidth) const noexcept |
Returns a copy of this object with a new maximum width. | |
FlexItem | withHeight (float newHeight) const noexcept |
Returns a copy of this object with a new height. | |
FlexItem | withMinHeight (float newMinHeight) const noexcept |
Returns a copy of this object with a new minimum height. | |
FlexItem | withMaxHeight (float newMaxHeight) const noexcept |
Returns a copy of this object with a new maximum height. | |
FlexItem | withMargin (Margin) const noexcept |
Returns a copy of this object with a new margin. | |
FlexItem | withOrder (int newOrder) const noexcept |
Returns a copy of this object with a new order. | |
FlexItem | withAlignSelf (AlignSelf newAlignSelf) const noexcept |
Returns a copy of this object with a new alignSelf value. | |
Public Attributes | |
Rectangle< float > | currentBounds |
The item's current bounds. | |
Component * | associatedComponent = nullptr |
If this is non-null, it represents a Component whose bounds are controlled by this item. | |
FlexBox * | associatedFlexBox = nullptr |
If this is non-null, it represents a FlexBox whose bounds are controlled by this item. | |
int | order = 0 |
Determines the order used to lay out items in their flex container. | |
float | flexGrow = 0.0f |
Specifies the flex grow factor of this item. | |
float | flexShrink = 1.0f |
Specifies the flex shrink factor of the item. | |
float | flexBasis = 0.0f |
Specifies the flex-basis of the item. | |
AlignSelf | alignSelf = AlignSelf::autoAlign |
This is the align-self property of the item. | |
float | width = (float) notAssigned |
The item's width. | |
float | minWidth = 0.0f |
The item's minimum width. | |
float | maxWidth = (float) notAssigned |
The item's maximum width. | |
float | height = (float) notAssigned |
The item's height. | |
float | minHeight = 0.0f |
The item's minimum height. | |
float | maxHeight = (float) notAssigned |
The item's maximum height. | |
Margin | margin |
The margin to leave around this item. | |
Static Public Attributes | |
static const int | autoValue = -2 |
This constant can be used for sizes to indicate that 'auto' mode should be used. | |
static const int | notAssigned = -1 |
This constant can be used for sizes to indicate that no value has been set. | |
|
strong |
Possible value for the alignSelf property.
Enumerator | |
---|---|
autoAlign | Follows the FlexBox container's alignItems property. |
flexStart | Item is aligned towards the start of the cross axis. |
flexEnd | Item is aligned towards the end of the cross axis. |
center | Item is aligned towards the center of the cross axis. |
stretch | Item is stretched from start to end of the cross axis. |
|
noexcept |
Creates an item with default parameters, and zero size.
Referenced by FlexItem(), FlexItem(), FlexItem(), FlexItem(), FlexItem(), withAlignSelf(), withFlex(), withFlex(), withFlex(), withHeight(), withMargin(), withMaxHeight(), withMaxWidth(), withMinHeight(), withMinWidth(), withOrder(), and withWidth().
|
noexcept |
Creates an item with the given size.
References FlexItem(), height, and width.
|
noexcept |
Creates an item with the given size and target Component.
References Component, FlexItem(), height, and width.
|
noexcept |
Creates an item that represents an embedded FlexBox with a given size.
References FlexItem(), height, and width.
|
noexcept |
Creates an item with a given target Component.
References Component, and FlexItem().
|
noexcept |
Creates an item that represents an embedded FlexBox.
This class will not create a copy of the supplied flex box. You need to ensure that the life-time of flexBoxToControl is longer than the FlexItem.
References FlexItem().
|
noexcept |
Returns a copy of this object with a new flex-grow value.
References FlexItem(), and withFlex().
Referenced by withFlex(), withFlex(), and withFlex().
|
noexcept |
Returns a copy of this object with new flex-grow and flex-shrink values.
References FlexItem(), and withFlex().
|
noexcept |
Returns a copy of this object with new flex-grow, flex-shrink and flex-basis values.
References FlexItem(), and withFlex().
|
noexcept |
Returns a copy of this object with a new width.
References FlexItem(), and withWidth().
Referenced by withWidth().
|
noexcept |
Returns a copy of this object with a new minimum width.
References FlexItem(), and withMinWidth().
Referenced by withMinWidth().
|
noexcept |
Returns a copy of this object with a new maximum width.
References FlexItem(), and withMaxWidth().
Referenced by withMaxWidth().
|
noexcept |
Returns a copy of this object with a new height.
References FlexItem(), and withHeight().
Referenced by withHeight().
|
noexcept |
Returns a copy of this object with a new minimum height.
References FlexItem(), and withMinHeight().
Referenced by withMinHeight().
|
noexcept |
Returns a copy of this object with a new maximum height.
References FlexItem(), and withMaxHeight().
Referenced by withMaxHeight().
Returns a copy of this object with a new margin.
References FlexItem(), and withMargin().
Referenced by withMargin().
|
noexcept |
Returns a copy of this object with a new order.
References FlexItem(), and withOrder().
Referenced by withOrder().
Returns a copy of this object with a new alignSelf value.
References FlexItem(), and withAlignSelf().
Referenced by withAlignSelf().
Rectangle<float> FlexItem::currentBounds |
The item's current bounds.
Component* FlexItem::associatedComponent = nullptr |
If this is non-null, it represents a Component whose bounds are controlled by this item.
FlexBox* FlexItem::associatedFlexBox = nullptr |
If this is non-null, it represents a FlexBox whose bounds are controlled by this item.
int FlexItem::order = 0 |
Determines the order used to lay out items in their flex container.
Elements are laid out in ascending order of thus order value. Elements with the same order value are laid out in the order in which they appear in the array.
float FlexItem::flexGrow = 0.0f |
Specifies the flex grow factor of this item.
This indicates the amount of space inside the flex container the item should take up.
float FlexItem::flexShrink = 1.0f |
Specifies the flex shrink factor of the item.
This indicates the rate at which the item shrinks if there is insufficient space in the container.
float FlexItem::flexBasis = 0.0f |
Specifies the flex-basis of the item.
This is the initial main size of a flex item in the direction of flow. It determines the size of the content-box unless specified otherwise using box-sizing.
AlignSelf FlexItem::alignSelf = AlignSelf::autoAlign |
This is the align-self property of the item.
This determines the alignment of the item along the cross-axis (perpendicular to the direction of flow).
|
static |
This constant can be used for sizes to indicate that 'auto' mode should be used.
|
static |
This constant can be used for sizes to indicate that no value has been set.
float FlexItem::width = (float) notAssigned |
The item's width.
Referenced by FlexItem(), FlexItem(), and FlexItem().
float FlexItem::minWidth = 0.0f |
The item's minimum width.
float FlexItem::maxWidth = (float) notAssigned |
The item's maximum width.
float FlexItem::height = (float) notAssigned |
The item's height.
Referenced by FlexItem(), FlexItem(), and FlexItem().
float FlexItem::minHeight = 0.0f |
The item's minimum height.
float FlexItem::maxHeight = (float) notAssigned |
The item's maximum height.
Margin FlexItem::margin |
The margin to leave around this item.