2 // generaltab.cpp: "General" tab on the settings dialog
4 // Part of the Architektonas Project
5 // (C) 2011 Underground Software
6 // See the README and GPLv3 files for licensing and warranty information
8 // JLH = James Hammons <jlhamm@acm.org>
11 // --- ---------- ------------------------------------------------------------
12 // JLH 06/04/2011 Created this file
14 #include "generaltab.h"
17 GeneralTab::GeneralTab(QWidget * parent/*= 0*/): QWidget(parent)
19 antialiasChk = new QCheckBox(tr("Use Qt's built-in antialiasing"));
21 QVBoxLayout * layout = new QVBoxLayout;
22 layout->addWidget(antialiasChk);
26 GeneralTab::~GeneralTab()