aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/components/texteditor/texteditorstatusbar.h
blob: d3a95a028de84ccc6ac08705d664fe974c360f72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#pragma once

#include <QToolBar>
#include <QLabel>

namespace QmlDesigner {

class TextEditorStatusBar : public QToolBar
{
    Q_OBJECT
public:
    explicit TextEditorStatusBar(QWidget *parent = nullptr);
    void clearText();
    void setText(const QString &text);
private:
    QLabel *m_label;
};

} // namespace QmlDesigner