~scottydelicious666/brewtarget/brewtarget

« back to all changes in this revision

Viewing changes to EquipmentEditor.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
 
 * EquipmentEditor.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 _EQUIPMENTEDITOR_H
20
 
#define _EQUIPMENTEDITOR_H
21
 
 
22
 
class EquipmentEditor;
23
 
 
24
 
#include <QDialog>
25
 
#include "ui_equipmentEditor.h"
26
 
#include "equipment.h"
27
 
#include "observable.h"
28
 
 
29
 
class EquipmentEditor : public QDialog, public Ui::equipmentEditor, public Observer
30
 
{
31
 
   Q_OBJECT
32
 
 
33
 
public:
34
 
   EquipmentEditor( QWidget *parent=0 );
35
 
   void setEquipment( Equipment* e );
36
 
 
37
 
public slots:
38
 
   void save();
39
 
   void newEquipment();
40
 
   void removeEquipment();
41
 
   void clear();
42
 
   void clearAndClose();
43
 
 
44
 
   void equipmentSelected( const QString& text );
45
 
 
46
 
private:
47
 
   Equipment* obsEquip;
48
 
 
49
 
   virtual void notify(Observable* notifier, QVariant info = QVariant()); // Inherited from Observer
50
 
   void showChanges();
51
 
};
52
 
 
53
 
#endif  /* _EQUIPMENTEDITOR_H */
54