~scottydelicious666/brewtarget/brewtarget

« back to all changes in this revision

Viewing changes to src/MashStepTableModel.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
 * MashStepTableModel.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 _MASHSTEPTABLEMODEL_H
 
20
#define _MASHSTEPTABLEMODEL_H
 
21
 
 
22
class MashStepTableModel;
 
23
class MashStepItemDelegate;
 
24
 
 
25
#include <QAbstractTableModel>
 
26
#include <QWidget>
 
27
#include <QModelIndex>
 
28
#include <QVariant>
 
29
#include <Qt>
 
30
#include <QItemDelegate>
 
31
#include <vector>
 
32
#include "mashstep.h"
 
33
#include "mash.h"
 
34
#include "observable.h"
 
35
#include "MashStepTableWidget.h"
 
36
 
 
37
enum{ MASHSTEPNAMECOL, MASHSTEPTYPECOL, MASHSTEPAMOUNTCOL, MASHSTEPTEMPCOL, MASHSTEPTIMECOL, MASHSTEPNUMCOLS /*This one MUST be last*/};
 
38
 
 
39
class MashStepTableModel : public QAbstractTableModel, public Observer
 
40
{
 
41
   Q_OBJECT
 
42
 
 
43
public:
 
44
   MashStepTableModel(MashStepTableWidget* parent=0);
 
45
   void setMash( Mash* m );
 
46
   //void addMashStep(MashStep* step);
 
47
   //bool removeMashStep(MashStep* step); // Returns true if "step" is successfully found and removed.
 
48
   //void removeAll();
 
49
   //MashStep* getMashStep(unsigned int i);
 
50
   virtual void notify(Observable* notifier, QVariant info = QVariant()); // Inherited from Observer via MultipleObserver.
 
51
 
 
52
   // Inherit the following from QAbstractItemModel via QAbstractTableModel
 
53
   virtual int rowCount(const QModelIndex& parent = QModelIndex()) const;
 
54
   virtual int columnCount(const QModelIndex& parent = QModelIndex()) const;
 
55
   virtual QVariant data( const QModelIndex& index, int role = Qt::DisplayRole ) const;
 
56
   virtual QVariant headerData( int section, Qt::Orientation orientation, int role = Qt::DisplayRole ) const;
 
57
   virtual Qt::ItemFlags flags(const QModelIndex& index ) const;
 
58
   virtual bool setData( const QModelIndex& index, const QVariant& value, int role = Qt::EditRole );
 
59
 
 
60
private:
 
61
   Mash* mashObs;
 
62
   MashStepTableWidget* parentTableWidget;
 
63
};
 
64
 
 
65
class MashStepItemDelegate : public QItemDelegate
 
66
{
 
67
   Q_OBJECT
 
68
 
 
69
public:
 
70
   MashStepItemDelegate(QObject* parent = 0);
 
71
 
 
72
   // Inherited functions.
 
73
   virtual QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const;
 
74
   virtual void setEditorData(QWidget *editor, const QModelIndex &index) const;
 
75
   virtual void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const;
 
76
   virtual void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const;
 
77
 
 
78
private:
 
79
};
 
80
 
 
81
#endif  /* _MASHSTEPTABLEMODEL_H */
 
82