terminalgui  0.1.0
Widgets for your terminal, powered by Qt! Create textual GUI (TUI) in your console easily.
tgrowlayout.h
1 #pragma once
2 
3 #include "tglayout.h"
4 
5 namespace Tg {
9 class RowLayout : public Layout
10 {
11 public:
12  RowLayout();
13 
14  void doLayout() override;
15 };
16 }
Tg::RowLayout::doLayout
void doLayout() override
Lays out children of Widget (parent).
Definition: tgrowlayout.cpp:10
Tg::Layout
Helper class for Widget, manages positions and sizes of Widget's children.
Definition: tglayout.h:17
Tg
All Terminal GUI classes (both core and widgets) are defined within the Tg namespace.
Definition: tgcolor.h:6
Tg::RowLayout
Arranges all children of parent() Widget in a single row.
Definition: tgrowlayout.h:10