You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
290 B
19 lines
290 B
|
3 years ago
|
#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
|