Initial Commit
[HECS.git] / HecsUI.h
blobec52f2ca39e53b7c1af4fa9cb8ccb5ed585acbcb
1 /***************************************************************************
2 * *
3 * HECSUI.h Copyright (C) 2008 by Jon Rumble *
4 * j.w.rumble@reading.ac.uk *
5 * *
6 * *
7 * This file is part of HECS, *
8 * *
9 * HECS is free software: you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation, either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 * *
15 * HECS is distributed in the hope that it will be useful, *
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
18 * GNU General Public License for more details. *
19 * *
20 * You should have received a copy of the GNU General Public License *
21 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
22 ***************************************************************************/
24 #ifndef HECSUI_H
25 #define HECSUI_H
27 #include <QtGui>
28 #include "RdSap.h"
29 #include "DimensionsDialog.h"
30 #include "StartScreen.h"
31 #include "DwellingInformationDialog.h"
32 #include "HeatingDialog.h"
33 #include "SummaryDialog.h"
35 class HecsUI : public QObject {
37 Q_OBJECT
39 public:
40 HecsUI (RdSap *modelIn);
41 ~HecsUI ();
43 void guiLoop();
45 protected:
47 private:
48 RdSap *sapModel;
49 void initVars();
50 StartScreen *startScreen;
51 DwellingInformationDialog dwellinfo;
52 HeatingDialog heatDiag;
53 SummaryDialog summaryDiag;
57 #endif //END OF HECSUI_H