Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
Go to the source code of this file.
Functions | |
g | setTitle ("&User information") |
[0] | |
radio1 | setChecked (true) |
vbox | addWidget (radio1) |
vbox | addWidget (radio2) |
vbox | addWidget (radio3) |
vbox | addStretch (1) |
groupBox | setLayout (vbox) |
Variables | |
QGroupBox * | groupBox = new QGroupBox(tr("Group Box with Layout")) |
[0] | |
QRadioButton * | radio1 = new QRadioButton(tr("&Radio button 1")) |
QRadioButton * | radio2 = new QRadioButton(tr("R&adio button 2")) |
QRadioButton * | radio3 = new QRadioButton(tr("Ra&dio button 3")) |
QVBoxLayout * | vbox = new QVBoxLayout |
vbox addStretch | ( | 1 | ) |
radio1 setChecked | ( | true | ) |
g setTitle | ( | "&User information" | ) |
[0]
QRadioButton * radio1 = new QRadioButton(tr("&Radio button 1")) |
Definition at line 11 of file src_gui_widgets_qgroupbox.cpp.
QRadioButton * radio2 = new QRadioButton(tr("R&adio button 2")) |
Definition at line 12 of file src_gui_widgets_qgroupbox.cpp.
QRadioButton * radio3 = new QRadioButton(tr("Ra&dio button 3")) |
Definition at line 13 of file src_gui_widgets_qgroupbox.cpp.
QVBoxLayout * vbox = new QVBoxLayout |
Definition at line 17 of file src_gui_widgets_qgroupbox.cpp.