#ifndef IMAGEVIEW_H #define IMAGEVIEW_H #include #include #include class ImageView : public QLabel { Q_OBJECT double maxHeight, maxWidth; public: ImageView(QWidget *parent=nullptr); // ImageView(QWidget *parent=nullptr, std::string path=""); void wheelEvent(QWheelEvent*); void setImage(std::string); }; #endif // IMAGEVIEW_H