6758018a21
This is the final contribution to #15368 * Tried to share more documentation in the various BLayoutBuilder classes * Add missing GridView, GroupView, SpaceLayoutItem * Also added AbstractLayoutItem, but hide the actual documentation behind an `INTERNAL` conditional block. This block identifier can be used to document parts of the API, to then hide them during a regular Doxygen run. * Do some cleanup on other layout classes; add missing members, etc. * The actual generated BLayoutBuilder::* html is a mess. I should investigate this at a later time. Especially the copied members seem to mix type definitions with member documentation. It is odd. Not unlikely to be a Doxygen bug. * The general documentation for the layout system could use an overhaul as well, but this is for later. Change-Id: I6db9ef105b4ae6de0f1ebb917f86f8b1c0d4ea2e Reviewed-on: https://review.haiku-os.org/c/haiku/+/2491 Reviewed-by: waddlesplash <waddlesplash@gmail.com>
652 lines
17 KiB
Plaintext
652 lines
17 KiB
Plaintext
/*
|
|
* Copyright 2017, 2020 Haiku, Inc. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Authors:
|
|
* Adrien Destugues, pulkomandy@pulkomandy.tk
|
|
*
|
|
* Corresponds to:
|
|
* headers/os/interface/LayoutBuilder.h rev 49977
|
|
*/
|
|
|
|
|
|
/*!
|
|
\class BLayoutBuilder::Grid<>
|
|
\ingroup layout
|
|
\ingroup libbe
|
|
\brief BLayoutBuilder::Base subclass for building BGridLayouts.
|
|
|
|
\since Haiku R1
|
|
|
|
Each item is added to the grid layout at (column, row) and may span multiple
|
|
columns and rows.
|
|
*/
|
|
|
|
|
|
/*!
|
|
\typedef BLayoutBuilder::Grid<ParentBuilder>::ThisBuilder
|
|
\copydoc BLayoutBuilder::Group<ParentBuilder>::ThisBuilder
|
|
*/
|
|
|
|
|
|
/*!
|
|
\typedef BLayoutBuilder::Grid<ParentBuilder>::GroupBuilder
|
|
\copydoc BLayoutBuilder::Group<ParentBuilder>::GroupBuilder
|
|
*/
|
|
|
|
|
|
/*!
|
|
\typedef BLayoutBuilder::Grid<ParentBuilder>::GridBuilder
|
|
\copydoc BLayoutBuilder::Group<ParentBuilder>::GridBuilder
|
|
*/
|
|
|
|
|
|
/*!
|
|
\typedef BLayoutBuilder::Grid<ParentBuilder>::SplitBuilder
|
|
\copydoc BLayoutBuilder::Group<ParentBuilder>::SplitBuilder
|
|
*/
|
|
|
|
|
|
/*!
|
|
\typedef BLayoutBuilder::Grid<ThisBuilder>::CardBuilder
|
|
\copydoc BLayoutBuilder::Group<ThisBuilder>::CardBuilder
|
|
*/
|
|
|
|
|
|
/*!
|
|
\name Constructors
|
|
*/
|
|
|
|
|
|
//! @{
|
|
|
|
|
|
/*!
|
|
\fn BLayoutBuilder::Grid<ParentBuilder>::Grid(BWindow *window,
|
|
float horizontal, float vertical)
|
|
\brief Creates a new BGridLayout, and attaches it to a BWindow.
|
|
|
|
\note The top BView* in \a window has its ViewColor set to
|
|
\c B_PANEL_BACKGROUND_COLOR.
|
|
\param window Thew BWindow* to attach the newly created BGroupLayout to.
|
|
\param horizontal The horizontal spacing for the new BGridLayout.
|
|
\param vertical The vertical spacing for the new BGridLayout.
|
|
|
|
\since Haiku R1
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn BLayoutBuilder::Grid<ParentBuilder>::Grid(BView* view,
|
|
float horizontal, float vertical)
|
|
\brief Creates a builder targeting an existing \a view.
|
|
|
|
\param view The BView* to attach the newly created BGridLayout to.
|
|
\param horizontal The horizontal spacing for the new BGridLayout.
|
|
\param vertical The vertical spacing for the new BGroupLayout.
|
|
|
|
\since Haiku R1
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn BLayoutBuilder::Grid<ParentBuilder>::Grid(BGridLayout* layout)
|
|
\brief Creates a builder targeting an existing BGridLayout.
|
|
|
|
Methods called on this builder will be directed to \a layout.
|
|
|
|
\param layout The BGridLayout to target with this builder.
|
|
|
|
\since Haiku R1
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn BLayoutBuilder::Grid<ParentBuilder>::Grid(BGridView* view)
|
|
\brief Creates a builder targeting a BGridView.
|
|
|
|
Methods called on this builder will be directed to
|
|
\c view->GridLayout().
|
|
|
|
\param view The BGridView this builder will target.
|
|
|
|
\since Haiku R1
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn BLayoutBuilder::Grid<ParentBuilder>::Grid(
|
|
float horizontal, float vertical)
|
|
\brief Creates a new BGridView and targets it.
|
|
|
|
Methods called on this builder will be directed to the new BGridView's
|
|
BGridLayout.
|
|
|
|
\param horizontal The horizontal spacing for the new BGridLayout.
|
|
\param vertical The vertical spacing for the new BGridLayout.
|
|
|
|
\since Haiku R1
|
|
*/
|
|
|
|
|
|
//! @}
|
|
|
|
|
|
/*!
|
|
\name Accessors
|
|
*/
|
|
|
|
|
|
//! @{
|
|
|
|
|
|
/*!
|
|
\fn BGridLayout* BLayoutBuilder::Grid<ParentBuilder>::Layout() const
|
|
\copydoc BLayoutBuilder::Group<ParentBuilder>::Layout()
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn BView* BLayoutBuilder::Grid<ParentBuilder>::View() const
|
|
\copydoc BLayoutBuilder::Group<ParentBuilder>::View()
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn ThisBuilder& BLayoutBuilder::Grid<ParentBuilder>::GetLayout(
|
|
BGridLayout** _layout)
|
|
\copydoc BLayoutBuilder::Group<ParentBuilder>::GetLayout()
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn ThisBuilder& BLayoutBuilder::Grid<ParentBuilder>::GetView(
|
|
BView** _view)
|
|
\copydoc BLayoutBuilder::Group<ParentBuilder>::GetView()
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn BLayoutBuilder::Grid<ParentBuilder>::operator BGridLayout*()
|
|
\brief Cast this builder into the layout object it represents.
|
|
|
|
\since Haiku R1
|
|
*/
|
|
|
|
|
|
//! @}
|
|
|
|
|
|
/*!
|
|
\name Adding BViews and BLayoutItems
|
|
*/
|
|
|
|
|
|
//! @{
|
|
|
|
|
|
/*!
|
|
\fn ThisBuilder& BLayoutBuilder::Grid<ParentBuilder>::Add(BView* view,
|
|
int32 column, int32 row, int32 columnCount, int32 rowCount)
|
|
\brief Add a BView to the BGridLayout this builder represents.
|
|
|
|
\param view The BView to be added.
|
|
\param column The column number (zero-index) to use.
|
|
\param row The row number (zero-index) to use.
|
|
\param columnCount The number of columns to span over.
|
|
\param rowCount The number of rows to span over.
|
|
|
|
\see BGridLayout::AddView(BView*)
|
|
|
|
\since Haiku R1
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn ThisBuilder& BLayoutBuilder::Grid<ParentBuilder>::Add(
|
|
BLayoutItem* item, int32 column, int32 row,
|
|
int32 columnCount, int32 rowCount)
|
|
\brief Add a BLayoutItem to the BGridLayout this builder represents.
|
|
|
|
\param item The BLayoutItem to be added.
|
|
\param column The column number (zero-index) to use.
|
|
\param row The row number (zero-index) to use.
|
|
\param columnCount The number of columns to span over.
|
|
\param rowCount The number of rows to span over.
|
|
|
|
\see BGridLayout::AddItem(BLayoutItem*)
|
|
|
|
\since Haiku R1
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn ThisBuilder& BLayoutBuilder::Grid<ParentBuilder>::AddMenuField(
|
|
BMenuField* item, int32 column, int32 row, alignment labelAlignment,
|
|
int32 labelColumnCount, int32 fieldColumnCount, int32 rowCount)
|
|
\brief Add a BMenuField to the layout.
|
|
|
|
\param item The BMenuField to be added.
|
|
\param column The column number (zero-index) to use.
|
|
\param row The row number (zero-index) to use.
|
|
\param labelAlignment The alignment of the label to use. Choices include:
|
|
- \c B_ALIGN_LEFT
|
|
- \c B_ALIGN_RIGHT
|
|
- \c B_ALIGN_CENTER
|
|
- \c B_ALIGN_HORIZONTAL_CENTER
|
|
- \c B_ALIGN_HORIZONTAL_UNSET
|
|
- \c B_ALIGN_USE_FULL_WIDTH
|
|
\param labelColumnCount The number of columns the label will span over.
|
|
\param fieldColumnCount The number of columns the menu field will span over.
|
|
\param rowCount The number of rows to span over.
|
|
|
|
A BMenuField is composed of a label and a menu. This method allows to
|
|
lay the sub-components in separate grid cells, allowing easy alignment
|
|
of the menu with other items in the layout.
|
|
|
|
\since Haiku R1
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn ThisBuilder& BLayoutBuilder::Grid<ParentBuilder>::AddTextControl(
|
|
BTextControl* item, int32 column, int32 row, alignment labelAlignment,
|
|
int32 labelColumnCount, int32 textColumnCount, int32 rowCount)
|
|
\brief Add a BMenuField to the layout
|
|
|
|
\param item The BMenuField to be added.
|
|
\param column The column number (zero-index) to use.
|
|
\param row The row number (zero-index) to use.
|
|
\param labelAlignment The alignment of the label to use. Choices include:
|
|
- \c B_ALIGN_LEFT
|
|
- \c B_ALIGN_RIGHT
|
|
- \c B_ALIGN_CENTER
|
|
- \c B_ALIGN_HORIZONTAL_CENTER
|
|
- \c B_ALIGN_HORIZONTAL_UNSET
|
|
- \c B_ALIGN_USE_FULL_WIDTH
|
|
\param labelColumnCount The number of columns the label will span over.
|
|
\param textColumnCount The number of columns the text field will span over.
|
|
\param rowCount The number of rows to span over.
|
|
|
|
A BTextControl is composed of a label and a text area. This method allows to
|
|
lay the sub-components in separate grid cells, allowing easy alignment
|
|
of the text area with other items in the layout.
|
|
|
|
\since Haiku R1
|
|
*/
|
|
|
|
|
|
//! @}
|
|
|
|
|
|
/*!
|
|
\name Adding BLayouts and their BView Pairs
|
|
|
|
A set of methods that add a BLayout or BView subclass and return a
|
|
BLayoutBuilder::Base subclass representing the newly added object. These
|
|
methods push a new builder on top of the stack, you will not be using
|
|
\c this builder again until you call End().
|
|
*/
|
|
|
|
|
|
//! @{
|
|
|
|
|
|
/*!
|
|
\fn GroupBuilder BLayoutBuilder::Grid<ParentBuilder>::AddGroup(
|
|
orientation orientation, float spacing, int32 column, int32 row,
|
|
int32 columnCount, int32 rowCount)
|
|
\copybrief GroupBuilder BLayoutBuilder::Group<ParentBuilder>::AddGroup(
|
|
orientation orientation, float spacing, float weight)
|
|
|
|
\param orientation The orientation to use for the new BGroupLayout.
|
|
\param spacing The spacing to use for the new BGroupLayout.
|
|
\param column The column number (zero-index) to use.
|
|
\param row The row number (zero-index) to use.
|
|
\param columnCount The number of columns to span the new BGroupLayout over.
|
|
\param rowCount The number of rows to span the new BGroupLayout over.
|
|
|
|
\returns A GroupBuilder representing the newly created BGroupLayout.
|
|
|
|
\since Haiku R1
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn GroupBuilder BLayoutBuilder::Grid<ParentBuilder>::AddGroup(
|
|
BGroupView* groupView, int32 column, int32 row, int32 columnCount,
|
|
int32 rowCount = 1)
|
|
\copybrief GroupBuilder BLayoutBuilder::Group<ParentBuilder>::AddGroup(BGroupView*
|
|
groupView, float weight)
|
|
|
|
\param groupView The BGroupView to be added.
|
|
\param column The column number (zero-index) to use.
|
|
\param row The row number (zero-index) to use.
|
|
\param columnCount The number of columns to span the \a groupView over.
|
|
\param rowCount The number of rows to span the \a groupView over.
|
|
|
|
\returns A GroupBuilder representing the layout of the \a groupView.
|
|
|
|
\since Haiku R1
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn GroupBuilder BLayoutBuilder::Grid<ParentBuilder>::AddGroup(
|
|
BGroupLayout* groupLayout, int32 column, int32 row,
|
|
int32 columnCount, int32 rowCount)
|
|
\copybrief GroupBuilder BLayoutBuilder::Group<ParentBuilder>::AddGroup(
|
|
BGroupLayout* groupLayout, float weight)
|
|
|
|
\param groupLayout The BGroupLayout to be added.
|
|
\param column The column number (zero-index) to use.
|
|
\param row The row number (zero-index) to use.
|
|
\param columnCount The number of columns to span the \a groupLayout over.
|
|
\param rowCount The number of rows to span the \a groupLayout over.
|
|
|
|
\returns A GroupBuilder representing the \a groupLayout.
|
|
|
|
\since Haiku R1
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn GridBuilder BLayoutBuilder::Grid<ParentBuilder>::AddGrid(
|
|
float horizontalSpacing, float verticalSpacing, int32 column,
|
|
int32 row, int32 columnCount, int32 rowCount)
|
|
\copydoc GridBuilder BLayoutBuilder::Group<ParentBuilder>::AddGrid(
|
|
float horizontalSpacing, float verticalSpacing, float weight)
|
|
|
|
\param horizontalSpacing The horizontal spacing for the new BGridLayout.
|
|
\param verticalSpacing The vertical spacing for the new BGridLayout.
|
|
\param column The column number (zero-index) to use.
|
|
\param row The row number (zero-index) to use.
|
|
\param columnCount The number of columns to span the new BGridLayout over.
|
|
\param rowCount The number of rows to span the new BGridLayout over.
|
|
|
|
\returns A GridBuilder representing the newly created BGridLayout.
|
|
|
|
\since Haiku R1
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn GridBuilder BLayoutBuilder::Grid<ParentBuilder>::AddGrid(
|
|
BGridLayout* gridLayout, int32 column, int32 row, int32 columnCount,
|
|
int32 rowCount)
|
|
\copybrief GridBuilder BLayoutBuilder::Group<ParentBuilder>::AddGrid(
|
|
BGridLayout* gridLayout, float weight)
|
|
|
|
\param gridLayout The BGridLayout to be added.
|
|
\param column The column number (zero-index) to use.
|
|
\param row The row number (zero-index) to use.
|
|
\param columnCount The number of columns to span the \a gridLayout over.
|
|
\param rowCount The number of rows to span the \a gridLayout over.
|
|
|
|
\returns A GridBuilder representing \a gridLayout.
|
|
|
|
\since Haiku R1
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn GridBuilder BLayoutBuilder::Grid<ParentBuilder>::AddGrid(
|
|
BGridView* gridView, int32 column, int32 row, int32 columnCount,
|
|
int32 rowCount)
|
|
\copybrief GridBuilder BLayoutBuilder::Group<ParentBuilder>::AddGrid(
|
|
BGridView* gridView, float weight)
|
|
|
|
\param gridView The BGridView to be added.
|
|
\param column The column number (zero-index) to use.
|
|
\param row The row number (zero-index) to use.
|
|
\param columnCount The number of columns to span the \a gridView over.
|
|
\param rowCount The number of rows to span the \a gridView over.
|
|
|
|
\returns A GridBuilder representing the layout of the \a gridView.
|
|
|
|
\since Haiku R1
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn SplitBuilder BLayoutBuilder::Grid<ParentBuilder>::AddSplit(
|
|
orientation orientation, float spacing, int32 column, int32 row,
|
|
int32 columnCount, int32 rowCount)
|
|
\copybrief SplitBuilder BLayoutBuilder::Group<ParentBuilder>::AddSplit(
|
|
orientation orientation, float spacing, float weight)
|
|
|
|
\param orientation The orientation of the new BSplitView.
|
|
\param spacing The spacing of the new BSplitView.
|
|
\param column The column number (zero-index) to use.
|
|
\param row The row number (zero-index) to use.
|
|
\param columnCount The number of columns to span the new BSplitView over.
|
|
\param rowCount The number of rows to span the new BSplitView over.
|
|
|
|
\returns A SplitBuilder representing the new BSplitView.
|
|
|
|
\since Haiku R1
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn SplitBuilder BLayoutBuilder::Grid<ParentBuilder>::AddSplit(
|
|
BSplitView* splitView, int32 column, int32 row, int32 columnCount,
|
|
int32 rowCount)
|
|
\copybrief SplitBuilder BLayoutBuilder::Group<ParentBuilder>::AddSplit(
|
|
BSplitView* splitView, float weight)
|
|
|
|
\param splitView The BSplitView to be added.
|
|
\param column The column number (zero-index) to use.
|
|
\param row The row number (zero-index) to use.
|
|
\param columnCount The number of columns to span the \a splitView over.
|
|
\param rowCount The number of rows to span the \a splitView over.
|
|
|
|
\returns A SplitBuilder representing the \a splitView.
|
|
|
|
\since Haiku R1
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn CardBuilder BLayoutBuilder::Grid<ParentBuilder>::AddCards(
|
|
int32 column, int32 row, int32 columnCount, int32 rowCount)
|
|
\copybrief CardBuilder BLayoutBuilder::Group<ParentBuilder>::AddCards(
|
|
float weight)
|
|
|
|
\param column The column number (zero-index) to use.
|
|
\param row The row number (zero-index) to use.
|
|
\param columnCount The number of columns to span the new layout over.
|
|
\param rowCount The number of rows to span the new layout over.
|
|
|
|
\returns A CardBuilder representing the new BCardLayout.
|
|
|
|
\since Haiku R1
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn CardBuilder BLayoutBuilder::Grid<ParentBuilder>::AddCards(
|
|
BCardLayout* cardLayout, int32 column, int32 row, int32 columnCount,
|
|
int32 rowCount)
|
|
\copybrief CardBuilder BLayoutBuilder::Group<ParentBuilder>::AddCards(
|
|
BCardLayout* cardLayout, float weight)
|
|
|
|
\param cardLayout The existing layout to add to the current grid layout.
|
|
\param column The column number (zero-index) to use.
|
|
\param row The row number (zero-index) to use.
|
|
\param columnCount The number of columns to span the \a cardLayout over.
|
|
\param rowCount The number of rows to span the \a cardLayout over.
|
|
|
|
\returns A CardBuilder representing the \a cardLayout.
|
|
|
|
\since Haiku R1
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn CardBuilder BLayoutBuilder::Grid<ParentBuilder>::AddCards(
|
|
BCardView* cardView, int32 column, int32 row, int32 columnCount,
|
|
int32 rowCount)
|
|
\copybrief CardBuilder BLayoutBuilder::Group<ParentBuilder>::AddCards(
|
|
BCardView* cardView, float weight)
|
|
|
|
\param cardView The existing BCardView to add to the current grid layout.
|
|
\param column The column number (zero-index) to use.
|
|
\param row The row number (zero-index) to use.
|
|
\param columnCount The number of columns to span the \a cardView over.
|
|
\param rowCount The number of rows to span the \a cardView over.
|
|
|
|
\returns A CardBuilder representing the layout of t he \a cardView.
|
|
|
|
\since Haiku R1
|
|
*/
|
|
|
|
|
|
//! @}
|
|
|
|
|
|
/*!
|
|
\name Adding BSpaceLayoutItems
|
|
|
|
A convenience method to add glue to a cell.
|
|
*/
|
|
|
|
|
|
//! @{
|
|
|
|
|
|
/*!
|
|
\fn ThisBuilder& BLayoutBuilder::Grid<ParentBuilder>::AddGlue(
|
|
int32 column, int32 row, int32 columnCount, int32 rowCount)
|
|
\copybrief BLayoutBuilder::Group<ParentBuilder>::AddGlue(float weight)
|
|
|
|
\param column The column number (zero-index) for the glue.
|
|
\param row The row number (zero-index) for the glue.
|
|
\param columnCount The number of columns to span the glue item over.
|
|
\param rowCount The number of rows to span the glue item over.
|
|
|
|
\since Haiku R1
|
|
*/
|
|
|
|
|
|
//! @}
|
|
|
|
|
|
/*!
|
|
\name BGridLayout Properties
|
|
|
|
These methods expose some settings of the underlying grid layout.
|
|
*/
|
|
|
|
|
|
//! @{
|
|
|
|
|
|
/*!
|
|
\fn ThisBuilder& BLayoutBuilder::Grid<ParentBuilder>::SetHorizontalSpacing(
|
|
float spacing)
|
|
\copydoc BGridLayout::SetHorizontalSpacing(float spacing)
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn ThisBuilder& BLayoutBuilder::Grid<ParentBuilder>::SetVerticalSpacing(
|
|
float spacing)
|
|
\copydoc BGridLayout::SetVerticalSpacing(float spacing)
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn ThisBuilder& BLayoutBuilder::Grid<ParentBuilder>::SetSpacing(
|
|
float horizontal, float vertical)
|
|
\copydoc BGridLayout::SetSpacing(float horizontal, float vertical)
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn ThisBuilder& BLayoutBuilder::Grid<ParentBuilder>::SetColumnWeight(
|
|
int32 column, float weight)
|
|
\copydoc BGridLayout::SetColumnWeight(int32 column, float weight)
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn ThisBuilder& BLayoutBuilder::Grid<ParentBuilder>::SetRowWeight(
|
|
int32 row, float weight)
|
|
\copydoc BGridLayout::SetRowWeight(int32 row, float weight)
|
|
*/
|
|
|
|
|
|
//! @}
|
|
|
|
|
|
/*!
|
|
\name Insets
|
|
*/
|
|
|
|
|
|
//! @{
|
|
|
|
|
|
/*!
|
|
\fn ThisBuilder& BLayoutBuilder::Grid<ParentBuilder>::SetInsets(
|
|
float left, float top, float right, float bottom)
|
|
\copydoc BTwoDimensionalLayout::SetInsets(float, float, float, float)
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn ThisBuilder& BLayoutBuilder::Grid<ParentBuilder>::SetInsets(
|
|
float horizontal, float vertical)
|
|
\copydoc BTwoDimensionalLayout::SetInsets(float, float)
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn ThisBuilder& BLayoutBuilder::Grid<ParentBuilder>::SetInsets(
|
|
float insets)
|
|
\copydoc BTwoDimensionalLayout::SetInsets(float)
|
|
*/
|
|
|
|
|
|
//! @}
|
|
|
|
|
|
/*!
|
|
\name Explicit Sizes and Alignment
|
|
*/
|
|
|
|
|
|
//! @{
|
|
|
|
|
|
/*!
|
|
\fn ThisBuilder& BLayoutBuilder::Grid<ParentBuilder>::SetExplicitMinSize(
|
|
BSize size)
|
|
\copydoc BLayoutBuilder::Group<ParentBuilder>::SetExplicitMinSize()
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn ThisBuilder& BLayoutBuilder::Grid<ParentBuilder>::SetExplicitMaxSize(
|
|
BSize size)
|
|
\copydoc BLayoutBuilder::Group<ParentBuilder>::SetExplicitMaxSize()
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn ThisBuilder& BLayoutBuilder::Grid<ParentBuilder>::SetExplicitPreferredSize(
|
|
BSize size)
|
|
\copydoc BLayoutBuilder::Group<ParentBuilder>::SetExplicitPreferredSize()
|
|
*/
|
|
|
|
|
|
/*!
|
|
\fn ThisBuilder& BLayoutBuilder::Grid<ParentBuilder>::SetExplicitAlignment(
|
|
BAlignment alignment)
|
|
\copydoc BLayoutBuilder::Group<ParentBuilder>::SetExplicitAlignment()
|
|
*/
|
|
|
|
|
|
//! @}
|