Base for all other layout builders in the BLayoutBuilder namespace. More...
Inherited by BLayoutBuilder::Cards< ParentBuilder >, BLayoutBuilder::Grid< ParentBuilder >, BLayoutBuilder::Group< ParentBuilder >, BLayoutBuilder::Menu< ParentBuilder >, and BLayoutBuilder::Split< ParentBuilder >.
Public Member Functions | |
ParentBuilder & | End () |
Returns this builder's parent. | |
void | SetParent (ParentBuilder *parent) |
Internal method for use by BLayoutBuilder::Base subclasses, this is essential to the builder stack semantics. | |
Base for all other layout builders in the BLayoutBuilder namespace.
This class provides the stack-like semantics for its subclasses. The BLayoutBuilder::Group, BLayoutBuilder::Grid and BLayoutBuilder::Split all provide methods such as AddGrid() AddGroup() and AddSplit(), which make a new builder, place it on top of your builder stack and return it. Now you are operating on the new builder. When you call the End() method on the new builder, you are returned the one you had previously been using. At any point, you are calling methods on whatever builder currently resides on the top of the stack. Here's an example of how these classes work.
At this point our stack just contains a single builder, it looks like this:
Now there is a Grid builder on top of the stack, so it looks like this
Notice that the Grid on top of the stack is not a plain Grid<>, but a nested type from the Group<> class. This is an essential part of the builder classes, as this is what allows you to pop builders off the stack and get the correct type in return.
Now our stack looks like this:
This could continue ad. nauseam, but at some point, you may finish with a builder, and you might want to continue manipulating the builder below it on the stack. To do this, you simply call the End() method like so:
And now the stack is back to this:
So you are again working with the grid builder. You can add more BLayoutItems or BViews, or even more builders. Here's how it will all look together.
Note that the C++ language does not impose any sequence points in such method chains. This means the arguments to all calls may be evaluated in an unexpected order. For exemple, the following code may not result in adding the 3 views in rows 0, 1 and 2 in the target grid:
|
inline |
Returns this builder's parent.
|
inline |
Internal method for use by BLayoutBuilder::Base subclasses, this is essential to the builder stack semantics.
Referenced by BLayoutBuilder::Cards< ParentBuilder >::AddCards(), BLayoutBuilder::Group< ParentBuilder >::AddCards(), BLayoutBuilder::Split< ParentBuilder >::AddCards(), BLayoutBuilder::Grid< ParentBuilder >::AddCards(), BLayoutBuilder::Cards< ParentBuilder >::AddGrid(), BLayoutBuilder::Group< ParentBuilder >::AddGrid(), BLayoutBuilder::Split< ParentBuilder >::AddGrid(), BLayoutBuilder::Grid< ParentBuilder >::AddGrid(), BLayoutBuilder::Grid< ParentBuilder >::AddGroup(), BLayoutBuilder::Cards< ParentBuilder >::AddGroup(), BLayoutBuilder::Group< ParentBuilder >::AddGroup(), BLayoutBuilder::Split< ParentBuilder >::AddGroup(), BLayoutBuilder::Grid< ParentBuilder >::AddSplit(), BLayoutBuilder::Cards< ParentBuilder >::AddSplit(), BLayoutBuilder::Group< ParentBuilder >::AddSplit(), and BLayoutBuilder::Split< ParentBuilder >::AddSplit().