forked from qt-creator/qt-creator
Change-Id: I80a2522f7ba12ee9b63c19d66e514d7047951733 Reviewed-by: Marcus Tillmanns <marcus.tillmanns@qt.io>
22 lines
450 B
C++
22 lines
450 B
C++
// Copyright (C) 2023 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#ifndef PROGRESSINDICATOR_H
|
|
#define PROGRESSINDICATOR_H
|
|
|
|
#include <QObject>
|
|
|
|
class ProgressIndicator : public QObject
|
|
{
|
|
public:
|
|
ProgressIndicator(QWidget *parent = nullptr);
|
|
|
|
void show();
|
|
void hide();
|
|
|
|
private:
|
|
class ProgressIndicatorWidget *m_widget = nullptr;
|
|
};
|
|
|
|
#endif // PROGRESSINDICATOR_H
|