~scottydelicious666/brewtarget/brewtarget

« back to all changes in this revision

Viewing changes to src/HopTableModel.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
 * HopTableModel.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 _HOPTABLEMODEL_H
 
20
#define _HOPTABLEMODEL_H
 
21
 
 
22
class HopTableModel;
 
23
class HopItemDelegate;
 
24
 
 
25
#include <QAbstractTableModel>
 
26
#include <QWidget>
 
27
#include <QModelIndex>
 
28
#include <QVariant>
 
29
#include <Qt>
 
30
#include <QItemDelegate>
 
31
#include <vector>
 
32
#include "hop.h"
 
33
#include "observable.h"
 
34
#include "HopTableWidget.h"
 
35
#include "recipe.h"
 
36
 
 
37
enum{HOPNAMECOL, HOPALPHACOL, HOPAMOUNTCOL, HOPUSECOL, HOPTIMECOL, HOPNUMCOLS /*This one MUST be last*/};
 
38
 
 
39
class HopTableModel : public QAbstractTableModel, public MultipleObserver
 
40
{
 
41
   Q_OBJECT
 
42
           
 
43
public:
 
44
   HopTableModel(HopTableWidget* parent=0);
 
45
   void setRecipe( Recipe* rec ); // You need to set a recipe if you want to show IBUs.
 
46
   void setShowIBUs( bool var ); // If you want to show IBUs.
 
47
   void addHop(Hop* hop);
 
48
   Hop* getHop(unsigned int i);
 
49
   bool removeHop(Hop* hop); // Returns true if "hop" is successfully found and removed.
 
50
   void removeAll();
 
51
   virtual void notify(Observable* notifier, QVariant info = QVariant()); // Inherited from Observer via MultipleObserver.
 
52
   
 
53
   // Inherit the following from QAbstractItemModel via QAbstractTableModel
 
54
   virtual int rowCount(const QModelIndex& parent = QModelIndex()) const;
 
55
   virtual int columnCount(const QModelIndex& parent = QModelIndex()) const;
 
56
   virtual QVariant data( const QModelIndex& index, int role = Qt::DisplayRole ) const;
 
57
   virtual QVariant headerData( int section, Qt::Orientation orientation, int role = Qt::DisplayRole ) const;
 
58
   virtual Qt::ItemFlags flags(const QModelIndex& index ) const;
 
59
   virtual bool setData( const QModelIndex& index, const QVariant& value, int role = Qt::EditRole );
 
60
   
 
61
private:
 
62
   std::vector<Hop*> hopObs;
 
63
   Recipe* recObs;
 
64
   HopTableWidget* parentTableWidget;
 
65
   bool showIBUs; // True if you want to show the IBU contributions in the table rows.
 
66
};
 
67
 
 
68
class HopItemDelegate : public QItemDelegate
 
69
{
 
70
   Q_OBJECT
 
71
           
 
72
public:
 
73
   HopItemDelegate(QObject* parent = 0);
 
74
   
 
75
   // Inherited functions.
 
76
   virtual QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const;
 
77
   virtual void setEditorData(QWidget *editor, const QModelIndex &index) const;
 
78
   virtual void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const;
 
79
   virtual void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const;
 
80
   
 
81
private:
 
82
};
 
83
 
 
84
#endif  /* _HOPTABLEMODEL_H */
 
85