Krita Source Code Documentation
Loading...
Searching...
No Matches
kis_busy_progress_indicator.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2015 Dmitry Kazakov <dimula73@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6
7#ifndef __KIS_BUSY_PROGRESS_INDICATOR_H
8#define __KIS_BUSY_PROGRESS_INDICATOR_H
9
10#include <QObject>
11#include <QScopedPointer>
12
13class KoProgressProxy;
14
15class KisBusyProgressIndicator : public QObject
16{
17 Q_OBJECT
18public:
19 explicit KisBusyProgressIndicator(KoProgressProxy *progressProxy);
21
22public:
27 void prepareDestroying();
28
29public Q_SLOTS:
33 void update();
34
35private Q_SLOTS:
40 void slotStartTimer();
41 void timerFinished();
42
43Q_SIGNALS:
45
46private:
47 struct Private;
48 const QScopedPointer<Private> m_d;
49};
50
51#endif /* __KIS_BUSY_PROGRESS_INDICATOR_H */
KisBusyProgressIndicator(KoProgressProxy *progressProxy)
const QScopedPointer< Private > m_d