Page 1 of 1

Vertical alignment of RadioButtons / CheckBoxes

Posted: 20 May 2016, 21:51
by eureka
In Multi Data Input object the "ComboBox" and “List” objects show in vertical alignment, as expected.
However, “RadioButton” and “CheckBox ” objects only show in horizontal alignment.
How can I setup a vertical list of RadioButtons or CheckBoxes?

Re: Vertical alignment of RadioButtons / CheckBoxes

Posted: 21 May 2016, 15:56
by eureka
I have now had an opportunity to download Actionaz source and inspect the code.
In fact I built a working actionaz binary using Qt 5.6 Creator.

Inspecting the code in ../actiontools/screenpositionwidget.cpp
if I am to achieve vertical layout
Is it a matter of changing
line 43: -

QHBoxLayout *mainLayout = new QHBoxLayout();
to
QVBoxLayout *mainLayout = new QVBoxLayout();

?