]> Shamusworld >> Repos - architektonas/blob - src/generaltab.cpp
Fixed Arc to give continuous feedback like Line and Circle do.
[architektonas] / src / generaltab.cpp
1 //
2 // generaltab.cpp: "General" 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  06/04/2011  Created this file
13 //
14
15 #include "generaltab.h"
16
17
18 GeneralTab::GeneralTab(QWidget * parent/*= 0*/): QWidget(parent)
19 {
20         antialiasChk = new QCheckBox(tr("Use Qt's built-in antialiasing"));
21
22         QVBoxLayout * layout = new QVBoxLayout;
23         layout->addWidget(antialiasChk);
24         setLayout(layout);
25 }
26
27
28 GeneralTab::~GeneralTab()
29 {
30 }