MCPcopy Create free account
hub / github.com/BatchDrake/SigDigger / ConfigDialog

Method ConfigDialog

Settings/ConfigDialog.cpp:209–231  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

207}
208
209ConfigDialog::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
233ConfigDialog::~ConfigDialog()
234{

Callers

nothing calls this directly

Calls 2

appendConfigTabMethod · 0.95
connectAllMethod · 0.95

Tested by

no test coverage detected