]> Shamusworld >> Repos - schematic/blob - src/generaltab.cpp
Move DB access to NoteDialog class, new AlertDialog class.
[schematic] / src / generaltab.cpp
1 //
2 // generaltab.cpp: "General" tab on the settings dialog
3 //
4 // Part of the SCheMatic Project
5 // (C) 2012 Underground Software
6 //
7 // JLH = James Hammons <jlhamm@acm.org>
8 //
9 // WHO  WHEN        WHAT
10 // ---  ----------  ------------------------------------------------------------
11 // JLH  06/04/2011  Created this file
12
13 #include "generaltab.h"
14
15
16 GeneralTab::GeneralTab(QWidget * parent/*= 0*/): QWidget(parent)
17 {
18         antialiasChk = new QCheckBox(tr("Please make my life better"));
19
20         QVBoxLayout * layout = new QVBoxLayout;
21         layout->addWidget(antialiasChk);
22         setLayout(layout);
23 }
24
25 GeneralTab::~GeneralTab()
26 {
27 }
28