summaryrefslogtreecommitdiffstats
path: root/examples/statemachine/animation/stickman/graphicsview.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/statemachine/animation/stickman/graphicsview.h')
-rw-r--r--examples/statemachine/animation/stickman/graphicsview.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/examples/statemachine/animation/stickman/graphicsview.h b/examples/statemachine/animation/stickman/graphicsview.h
deleted file mode 100644
index 330531d..0000000
--- a/examples/statemachine/animation/stickman/graphicsview.h
+++ /dev/null
@@ -1,23 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-#ifndef GRAPHICSVIEW_H
-#define GRAPHICSVIEW_H
-
-#include <QGraphicsView>
-
-class GraphicsView: public QGraphicsView
-{
- Q_OBJECT
-public:
- using QGraphicsView::QGraphicsView;
-
-protected:
- void resizeEvent(QResizeEvent *e) override;
- void keyPressEvent(QKeyEvent *e) override;
-
-signals:
- void keyPressed(int key);
-};
-
-#endif