~scottydelicious666/brewtarget/brewtarget

« back to all changes in this revision

Viewing changes to WaterTableModel.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
 
 * WaterTableModel.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 _WATERTABLEMODEL_H
20
 
#define _WATERTABLEMODEL_H
21
 
 
22
 
class WaterTableModel;
23
 
class WaterItemDelegate;
24
 
 
25
 
#include <QAbstractTableModel>
26
 
#include <QWidget>
27
 
#include <QModelIndex>
28
 
#include <QVariant>
29
 
#include <Qt>
30
 
#include <QItemDelegate>
31
 
#include <vector>
32
 
#include "water.h"
33
 
#include "observable.h"
34
 
#include "WaterTableWidget.h"
35
 
 
36
 
enum{ WATERNAMECOL, WATERAMOUNTCOL, WATERCALCIUMCOL, WATERBICARBONATECOL,
37
 
      WATERSULFATECOL, WATERCHLORIDECOL, WATERSODIUMCOL, WATERMAGNESIUMCOL,
38
 
      WATERNUMCOLS /*This one MUST be last*/};
39
 
 
40
 
class WaterTableModel : public QAbstractTableModel, public MultipleObserver
41
 
{
42
 
   Q_OBJECT
43
 
 
44
 
public:
45
 
   WaterTableModel(WaterTableWidget* parent=0);
46
 
   void addWater(Water* water);
47
 
   bool removeWater(Water* water); // Returns true if "water" is successfully found and removed.
48
 
   void removeAll();
49
 
   virtual void notify(Observable* notifier, QVariant info = QVariant()); // Inherited from Observer via MultipleObserver.
50
 
 
51
 
   // Inherit the following from QAbstractItemModel via QAbstractTableModel
52
 
   virtual int rowCount(const QModelIndex& parent = QModelIndex()) const;
53
 
   virtual int columnCount(const QModelIndex& parent = QModelIndex()) const;
54
 
   virtual QVariant data( const QModelIndex& index, int role = Qt::DisplayRole ) const;
55
 
   virtual QVariant headerData( int section, Qt::Orientation orientation, int role = Qt::DisplayRole ) const;
56
 
   virtual Qt::ItemFlags flags(const QModelIndex& index ) const;
57
 
   virtual bool setData( const QModelIndex& index, const QVariant& value, int role = Qt::EditRole );
58
 
 
59
 
private:
60
 
   std::vector<Water*> waterObs;
61
 
   WaterTableWidget* parentTableWidget;
62
 
};
63
 
 
64
 
class WaterItemDelegate : public QItemDelegate
65
 
{
66
 
   Q_OBJECT
67
 
 
68
 
public:
69
 
   WaterItemDelegate(QObject* parent = 0);
70
 
 
71
 
   // Inherited functions.
72
 
   virtual QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const;
73
 
   virtual void setEditorData(QWidget *editor, const QModelIndex &index) const;
74
 
   virtual void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const;
75
 
   virtual void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const;
76
 
 
77
 
private:
78
 
};
79
 
 
80
 
#endif  /* _WATERTABLEMODEL_H */
81