| 207 | } |
| 208 | |
| 209 | ConfigDialog::ConfigDialog(QWidget *parent) : |
| 210 | QDialog(parent) |
| 211 | { |
| 212 | this->ui = new Ui_Config(); |
| 213 | this->ui->setupUi(this); |
| 214 | this->setWindowFlags( |
| 215 | this->windowFlags() & ~Qt::WindowMaximizeButtonHint); |
| 216 | //this->layout()->setSizeConstraint(QLayout::SetFixedSize); |
| 217 | |
| 218 | this->profileTab = new ProfileConfigTab(this); |
| 219 | this->colorTab = new ColorConfigTab(this); |
| 220 | this->guiTab = new GuiConfigTab(this); |
| 221 | this->locationTab = new LocationConfigTab(this); |
| 222 | this->tleSourceTab = new TLESourceTab(this); |
| 223 | |
| 224 | this->appendConfigTab(this->profileTab); |
| 225 | this->appendConfigTab(this->colorTab); |
| 226 | this->appendConfigTab(this->guiTab); |
| 227 | this->appendConfigTab(this->tleSourceTab); |
| 228 | this->appendConfigTab(this->locationTab); |
| 229 | |
| 230 | this->connectAll(); |
| 231 | } |
| 232 | |
| 233 | ConfigDialog::~ConfigDialog() |
| 234 | { |
nothing calls this directly
no test coverage detected