You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement a grid layout to arrange widgets in more complex configurations.
Describe the solution you'd like
Possibility to arranges ui elements in rows and columns, so that Widgets with different heightcan be placed in the same row.
Additional context
For example like qt grid layout
layout->addWidget(widget, 0, 2, 4, 1);
0: The row where the widget starts (first row).
2: The column where the widget starts (third column).
4: The number of rows the widget spans (it will be 4 rows tall).
1: The number of columns the widget spans (it will be 1 column wide).
(Do not write below this line)
DEVS' SECTION
ANALYSIS
(Describe, what's the issue and which changes have to be made)
DESCRIPTION
Implement a grid layout to arrange widgets in more complex configurations.
Describe the solution you'd like
Possibility to arranges ui elements in rows and columns, so that Widgets with different heightcan be placed in the same row.
Additional context
For example like qt grid layout
layout->addWidget(widget, 0, 2, 4, 1);
0: The row where the widget starts (first row).
2: The column where the widget starts (third column).
4: The number of rows the widget spans (it will be 4 rows tall).
1: The number of columns the widget spans (it will be 1 column wide).
(Do not write below this line)
DEVS' SECTION
ANALYSIS
(Describe, what's the issue and which changes have to be made)
IMPLEMENTATION STEPS
(see also our Wiki for implementation guidelines)
DOCUMENTATION STEPS
(see also our Wiki for further information)
*.NHLP
and*.NDB
files, if needed)*.NLNG
files, if needed)PULL REQUEST
The text was updated successfully, but these errors were encountered: