qt_demoe/netfriend/imageviewwindow/graphicsview.h

19 lines
290 B
C
Raw Normal View History

2021-11-17 07:33:19 +00:00
#ifndef GRAPHICSVIEW_H
#define GRAPHICSVIEW_H
#include <QGraphicsView>
class GraphicsView : public QGraphicsView
{
Q_OBJECT
public:
GraphicsView(QGraphicsScene *scene);
~GraphicsView();
protected:
void resizeEvent(QResizeEvent *event) Q_DECL_OVERRIDE;
};
#endif // GRAPHICSVIEW_H