]> Shamusworld >> Repos - architektonas/blob - src/baseunittab.cpp
f9ea41f2fc016ebb7e377d40ef9a1485c0e7ac22
[architektonas] / src / baseunittab.cpp
1 //
2 // baseunittab.cpp: "Base Unit" tab on the settings dialog
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  08/15/2011  Created this file
13
14 #include "baseunittab.h"
15
16
17 BaseUnitTab::BaseUnitTab(QWidget * parent/*= 0*/): QWidget(parent)
18 {
19         antialiasChk = new QCheckBox(tr("Use Qt's built-in antialiasing"));
20
21         QVBoxLayout * layout = new QVBoxLayout;
22         layout->addWidget(antialiasChk);
23         setLayout(layout);
24 }
25
26
27 BaseUnitTab::~BaseUnitTab()
28 {
29 }
30