]> Shamusworld >> Repos - wozmaker/blob - src/settingsdialog.cpp
3321f3092ab60ddd2fc98775070a24ce1432c841
[wozmaker] / src / settingsdialog.cpp
1 //
2 // settingsdialog.cpp: Dialog for changing Architektonas settings
3 //
4 // Part of the Architektonas Project
5 // (C) 2011 Underground Software
6 // See the README and GPLv3 files for licensing and warranty information
7 //
8 // JLH = James Hammons <jlhamm@acm.org>
9 //
10 // WHO  WHEN        WHAT
11 // ---  ----------  ------------------------------------------------------------
12 // JLH  06/04/2011  Created this file
13
14 #include "settingsdialog.h"
15 //#include "baseunittab.h"
16 //#include "generaltab.h"
17
18
19 SettingsDialog::SettingsDialog(QWidget * parent/*= 0*/): QDialog(parent)
20 {
21 //      tabWidget = new QTabWidget;
22 //      generalTab = new GeneralTab(this);
23 //      baseunitTab = new BaseUnitTab(this);
24 //      tabWidget->addTab(generalTab, tr("General"));
25 //      tabWidget->addTab(baseunitTab, tr("Base Unit"));
26
27         buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel);
28
29         connect(buttonBox, SIGNAL(accepted()), this, SLOT(accept()));
30         connect(buttonBox, SIGNAL(rejected()), this, SLOT(reject()));
31
32         QVBoxLayout * mainLayout = new QVBoxLayout;
33 //      mainLayout->addWidget(tabWidget);
34         mainLayout->addWidget(buttonBox);
35         setLayout(mainLayout);
36
37         setWindowTitle(tr("WOZ Maker Disk Settings"));
38 }
39
40
41 SettingsDialog::~SettingsDialog()
42 {
43 }
44