From 40ee2b8953f05944278c8c23508dc5b34633bd49 Mon Sep 17 00:00:00 2001 From: Hendrik Brucker Date: Fri, 7 Jan 2022 15:51:49 +0100 Subject: Add FlowContainer --- doc/classes/FlowContainer.xml | 20 ++++++++++++++++++++ doc/classes/HFlowContainer.xml | 19 +++++++++++++++++++ doc/classes/VFlowContainer.xml | 19 +++++++++++++++++++ 3 files changed, 58 insertions(+) create mode 100644 doc/classes/FlowContainer.xml create mode 100644 doc/classes/HFlowContainer.xml create mode 100644 doc/classes/VFlowContainer.xml (limited to 'doc') diff --git a/doc/classes/FlowContainer.xml b/doc/classes/FlowContainer.xml new file mode 100644 index 0000000000..482d879b09 --- /dev/null +++ b/doc/classes/FlowContainer.xml @@ -0,0 +1,20 @@ + + + + Base class for flow containers. + + + Arranges child [Control] nodes vertically or horizontally in a left-to-right or top-to-bottom flow. + A line is filled with [Control] nodes until no more fit on the same line, similar to text in an autowrapped label. + + + + + + + + Returns the current line count. + + + + diff --git a/doc/classes/HFlowContainer.xml b/doc/classes/HFlowContainer.xml new file mode 100644 index 0000000000..8ee2da69b7 --- /dev/null +++ b/doc/classes/HFlowContainer.xml @@ -0,0 +1,19 @@ + + + + Horizontal flow container. + + + Horizontal version of [FlowContainer]. + + + + + + The horizontal separation of children nodes. + + + The vertical separation of children nodes. + + + diff --git a/doc/classes/VFlowContainer.xml b/doc/classes/VFlowContainer.xml new file mode 100644 index 0000000000..f58075a140 --- /dev/null +++ b/doc/classes/VFlowContainer.xml @@ -0,0 +1,19 @@ + + + + Vertical flow container. + + + Vertical version of [FlowContainer]. + + + + + + The horizontal separation of children nodes. + + + The vertical separation of children nodes. + + + -- cgit v1.2.3