~scottydelicious666/brewtarget/brewtarget

« back to all changes in this revision

Viewing changes to FermentableDialog.h

  • Committer: Philip Greggory Lee
  • Date: 2009-08-23 16:53:43 UTC
  • Revision ID: git-v1:f8d1a25135bd92f06c46c562293800e4faa42c61
Made a src/ and ui/ directory and moved everything.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * FermentableDialog.h is part of Brewtarget, and is Copyright Philip G. Lee
3
 
 * (rocketman768@gmail.com), 2009.
4
 
 *
5
 
 * Brewtarget is free software: you can redistribute it and/or modify
6
 
 * it under the terms of the GNU General Public License as published by
7
 
 * the Free Software Foundation, either version 3 of the License, or
8
 
 * (at your option) any later version.
9
 
 
10
 
 * Brewtarget is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 * GNU General Public License for more details.
14
 
 
15
 
 * You should have received a copy of the GNU General Public License
16
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
 
 */
18
 
 
19
 
#ifndef _FERMENTABLEDIALOG_H
20
 
#define _FERMENTABLEDIALOG_H
21
 
 
22
 
class FermentableDialog;
23
 
 
24
 
#include <QWidget>
25
 
#include <QDialog>
26
 
#include <QVariant>
27
 
#include "ui_fermentableDialog.h"
28
 
#include "observable.h"
29
 
#include "database.h"
30
 
#include "MainWindow.h"
31
 
#include "FermentableEditor.h"
32
 
 
33
 
class FermentableDialog : public QDialog, public Ui::fermentableDialog, public Observer
34
 
{
35
 
   Q_OBJECT
36
 
 
37
 
public:
38
 
   FermentableDialog(MainWindow* parent);
39
 
   void startObservingDB();
40
 
   virtual void notify(Observable *notifier, QVariant info = QVariant()); // From Observer
41
 
 
42
 
public slots:
43
 
   void addFermentable();
44
 
   void removeFermentable();
45
 
   void editSelected();
46
 
   void newFermentable();
47
 
 
48
 
private:
49
 
   Database* dbObs;
50
 
   MainWindow* mainWindow;
51
 
   FermentableEditor *fermEdit;
52
 
   unsigned int numFerms;
53
 
 
54
 
   void populateTable();
55
 
};
56
 
 
57
 
#endif  /* _FERMENTABLEDIALOG_H */
58