forked from seub/CirclePackings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcanvas.hpp
70 lines (53 loc) · 2.04 KB
/
canvas.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*This file is part of Circle Packings.
Circle Packings is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Circle Packings is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Circle Packings. If not, see <http://www.gnu.org/licenses/>.*/
#ifndef CANVAS_HPP
#define CANVAS_HPP
#include <QWidget>
#include "basic_types.hpp"
class Canvas_Delegate;
class Window;
class Canvas : public QWidget
{
Q_OBJECT
friend class Window;
friend class Configuration;
friend class Circle_Packings_Application;
public:
Canvas(Window *const window, bool left);
~Canvas();
void reset_canvas(bool repaint_canvas = true);
bool print_in_file(const QString &filename = QString("CP.png"), int quality = 80);
private:
void paintEvent(QPaintEvent *event);
void mousePressEvent(QMouseEvent * event );
void mouseReleaseEvent(QMouseEvent * event );
void mouseMoveEvent(QMouseEvent * event);
void wheelEvent(QWheelEvent *event);
void keyPressEvent(QKeyEvent *event);
void keyReleaseEvent(QKeyEvent *);
void resizeEvent(QResizeEvent * event);
void enterEvent(QEvent *);
void leaveEvent(QEvent *);
void rescale();
void reset_selected_stuff();
void set_left(bool left);
bool get_is_vertex_highlighted() const;
void set_is_vertex_highlighted(bool b);
const unsigned int & get_index_vertex_highlighted() const;
void set_index_vertex_highlighted(const unsigned int &index);
unsigned int size_in_pixels_;
Canvas_Delegate* canvas_delegate_;
bool left_canvas_;
Window *const window_;
QPainter *canvas_painter_;
};
#endif // CANVAS_HPP