-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathimageviewer.h
89 lines (75 loc) · 1.71 KB
/
imageviewer.h
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#ifndef IMAGEVIEWER_H
#define IMAGEVIEWER_H
#include <QMouseEvent>
#include <QMainWindow>
#ifndef QT_NO_PRINTER
#include <QPrinter>
#endif
class QAction;
class QLabel;
class QMenu;
class QScrollArea;
class QScrollBar;
class ImageViewer : public QMainWindow
{
Q_OBJECT
public:
ImageViewer();
bool loadFile(const QString &);
bool saveImage(const QString &);
void mousePressEvent( QMouseEvent* ev );
void mouseReleaseEvent( QMouseEvent* ev );
private slots:
void open();
void save();
void zoomIn();
void zoomOut();
void normalSize();
void fitToWindow();
void rotate();
void undo();
void redo();
void crop();
private:
//crop operation's variables
bool cropping ;
QPoint startPoint ;
QPoint endPoint ;
int imageWidth ;
int imageHeight ;
void createActions();
void createMenus();
void updateActions();
void scaleImage(double factor);
void adjustScrollBar(QScrollBar *scrollBar, double factor);
bool saveFile(const QString &);
QLabel *imageLabel;
QScrollArea *scrollArea;
double scaleFactor;
QImage image;
QImage cropped;
QList <QPixmap> undo_stack ;
QList <QPixmap> redo_stack ;
QList <double> redo_scale_stack ;
QList <double> undo_scale_stack ;
QImage original,original_rotated;
bool isRotated;
#ifndef QT_NO_PRINTER
QPrinter printer;
#endif
QAction *openAct;
QAction *saveAct;
QAction *exitAct;
QAction *zoomInAct;
QAction *zoomOutAct;
QAction *normalSizeAct;
QAction *fitToWindowAct;
QAction *undoAct;
QAction *redoAct;
QAction *rotateAct;
QAction *cropAct;
QMenu *fileMenu;
QMenu *viewMenu;
QMenu *editMenu;
};
#endif