Rev 1221 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
671 | werner | 1 | /******************************************************************************************** |
2 | ** iLand - an individual based forest landscape and disturbance model |
||
3 | ** http://iland.boku.ac.at |
||
4 | ** Copyright (C) 2009- Werner Rammer, Rupert Seidl |
||
5 | ** |
||
6 | ** This program is free software: you can redistribute it and/or modify |
||
7 | ** it under the terms of the GNU General Public License as published by |
||
8 | ** the Free Software Foundation, either version 3 of the License, or |
||
9 | ** (at your option) any later version. |
||
10 | ** |
||
11 | ** This program is distributed in the hope that it will be useful, |
||
12 | ** but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
13 | ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
14 | ** GNU General Public License for more details. |
||
15 | ** |
||
16 | ** You should have received a copy of the GNU General Public License |
||
17 | ** along with this program. If not, see <http://www.gnu.org/licenses/>. |
||
18 | ********************************************************************************************/ |
||
19 | |||
3 | Werner | 20 | #ifndef PAINTAREA_H |
21 | #define PAINTAREA_H |
||
22 | |||
23 | #include <QWidget> |
||
749 | werner | 24 | #include "mapgrid.h" |
25 | #include "layeredgrid.h" |
||
26 | /** |
||
27 | */ |
||
28 | struct PaintObject { |
||
29 | PaintObject(): what(PaintNothing), map_grid(0), float_grid(0), layered(0), layer_id(0), min_value(0.), max_value(1.), cur_min_value(0.), cur_max_value(1.), auto_range(false) {} |
||
30 | enum { PaintNothing, PaintMapGrid, PaintFloatGrid, PaintLayers, PaintLIF, PaintTrees, PaintHeightGrid, PaintResourceUnits, PaintRegeneration } what; |
||
31 | MapGrid *map_grid; |
||
881 | werner | 32 | QString name; |
33 | QString description; |
||
749 | werner | 34 | const FloatGrid *float_grid; |
35 | const LayeredGridBase *layered; |
||
36 | int layer_id; |
||
37 | GridViewType view_type; |
||
38 | double min_value; |
||
39 | double max_value; |
||
40 | double cur_min_value, cur_max_value; |
||
41 | bool auto_range; |
||
42 | static QColor background_color; |
||
43 | // other options |
||
44 | bool clip_to_stands; |
||
45 | bool species_colors; |
||
46 | }; |
||
3 | Werner | 47 | |
749 | werner | 48 | /**PaintArea |
49 | */ |
||
3 | Werner | 50 | class PaintArea : public QWidget |
51 | { |
||
52 | Q_OBJECT |
||
53 | |||
54 | public: |
||
55 | PaintArea(QWidget *parent = 0); |
||
25 | Werner | 56 | QImage &drawImage() { return m_bitmap; } |
3 | Werner | 57 | |
58 | signals: |
||
59 | void needsPainting(QPainter &painter); |
||
6 | Werner | 60 | void mouseClick(const QPoint &pos); |
113 | Werner | 61 | void mouseDrag(const QPoint &from, const QPoint &to, Qt::MouseButton mouseButton); |
49 | Werner | 62 | void mouseMove(const QPoint &pos); |
113 | Werner | 63 | void mouseWheel(const QPoint &pos, int wheel_steps); |
3 | Werner | 64 | |
65 | protected: |
||
66 | void paintEvent(QPaintEvent *event); |
||
6 | Werner | 67 | void mousePressEvent ( QMouseEvent * event ); |
40 | Werner | 68 | void mouseReleaseEvent ( QMouseEvent * event ); |
21 | Werner | 69 | void resizeEvent ( QResizeEvent * event ); |
49 | Werner | 70 | void mouseMoveEvent(QMouseEvent *event); |
113 | Werner | 71 | void wheelEvent ( QWheelEvent * event ); |
135 | Werner | 72 | void keyPressEvent(QKeyEvent *event); |
21 | Werner | 73 | private: |
74 | QImage m_bitmap; |
||
40 | Werner | 75 | QPoint m_lastDown; |
3 | Werner | 76 | }; |
77 | |||
78 | |||
79 | #endif // PAINTAREA_H |