Hei!
Small ui file -> contains QTabWidget
And cpp file I'm adding radiobuttons.
How to get active radiobuttons and something?
newTab is
QWidget (QRadioButtons etc
)
: KDialog()
, Ui::MyWindow()
{
.....
QRadioButtons
.....
newTab->setLayout( layout );
tabWidget->addTab( newTab, name );
.....
}
newTab is QWidget (QRadioButtons etc)
MyClass::MyClass( const QString &handle, const QString &name )
: KDialog()
, Ui::MyWindow()
{
.....
QVBoxLayout
QWidget
QRadioButtons
.....
newTab->setLayout( layout );
tabWidget->addTab( newTab, name );
.....
}
To copy to clipboard, switch view to plain text mode
Bookmarks