summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/widgets/graphicsview/functional/GraphicsViewBenchmark/widgets/gvbwidget.h
blob: 54d7cac5a500dd987c85a2cfe72da1fe7c9cce8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#ifndef GVBWIDGET_H
#define GVBWIDGET_H

#include <QGraphicsWidget>

class GvbWidget : public QGraphicsWidget
{
    Q_OBJECT

public:

    GvbWidget(QGraphicsItem * parent = nullptr, Qt::WindowFlags wFlags = { });
    ~GvbWidget();
    virtual void keyPressEvent(QKeyEvent *event);
};

#endif