summaryrefslogtreecommitdiffstats
path: root/examples/statemachine/animation/sub-attaq/textinformationitem.h
blob: b77aa40e1035732540f65555df604dd10d942e2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef TEXTINFORMATIONITEM_H
#define TEXTINFORMATIONITEM_H

//Qt
#include <QGraphicsTextItem>

class TextInformationItem : public QGraphicsTextItem
{
public:
    TextInformationItem(QGraphicsItem *parent = nullptr);
    void setMessage(const QString &text, const bool centerPosition = true);
};

#endif // TEXTINFORMATIONITEM_H