Files
qt-creator/tests/manual/tasking/demo/progressindicator.h
Jarek Kobus 6f8e5c409f TaskTree: De-utils-ize manual test, rename it to demo
Change-Id: I80a2522f7ba12ee9b63c19d66e514d7047951733
Reviewed-by: Marcus Tillmanns <marcus.tillmanns@qt.io>
2023-06-01 10:53:35 +00:00

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