~scottydelicious666/brewtarget/brewtarget

« back to all changes in this revision

Viewing changes to src/MaltinessWidget.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
 * MaltinessWidget.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 _MALTINESSWIDGET_H
 
20
#define _MALTINESSWIDGET_H
 
21
 
 
22
class MaltinessWidget;
 
23
 
 
24
#include <QWidget>
 
25
#include <QColor>
 
26
#include <QPaintEvent>
 
27
#include <QLabel>
 
28
#include <QPalette>
 
29
#include <QSizePolicy>
 
30
#include "observable.h"
 
31
#include "recipe.h"
 
32
 
 
33
enum{ CLOYING, EXTRAMALTY, SLIGHTLYMALTY, BALANCED, SLIGHTLYHOPPY, EXTRAHOPPY, HARSH };
 
34
 
 
35
class MaltinessWidget : public QWidget, public Observer
 
36
{
 
37
   Q_OBJECT
 
38
 
 
39
public:
 
40
   MaltinessWidget(QWidget* parent=0);
 
41
   MaltinessWidget(Recipe* recipe);
 
42
   void observeRecipe(Recipe* recipe);
 
43
 
 
44
   virtual void notify(Observable *notifier, QVariant info = QVariant()); // This will get called by observed whenever it changes.
 
45
   virtual QSize sizeHint() const;
 
46
   QSizePolicy sizePolicy () const;
 
47
 
 
48
protected:
 
49
   virtual void paintEvent(QPaintEvent *);
 
50
 
 
51
private:
 
52
 
 
53
   void setup();
 
54
   QColor bgColor();
 
55
   QString fgText();
 
56
   int region();
 
57
 
 
58
   //QSizePolicy sPolicy;
 
59
   QPalette palette;
 
60
   QLabel* label;
 
61
   Recipe* recObs;
 
62
};
 
63
 
 
64
#endif  /* _MALTINESSWIDGET_H */
 
65