DtkWidget
DTK Widget module
载入中...
搜索中...
未找到
dindeterminateprogressbar_p.h
1// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.
2//
3// SPDX-License-Identifier: LGPL-3.0-or-later
4
5#ifndef DINDETERMINATEPROGRESSBAR_P_H
6#define DINDETERMINATEPROGRESSBAR_P_H
7
8#include <DObjectPrivate>
9#include <DIndeterminateProgressbar>
10
11#include <QTimer>
12
13class QPropertyAnimation;
14class DIndeterminateProgressbarPrivate : public DTK_CORE_NAMESPACE::DObjectPrivate
15{
16public:
18
19 QWidget *m_sliderWidget;
20 QTimer *m_timer;
21 bool m_leftToRight;
22 QWidget *m_spotWidget;
23 QPropertyAnimation *m_animation;
24
25private:
26 D_DECLARE_PUBLIC(DIndeterminateProgressbar)
27};
28
29#endif // DINDETERMINATEPROGRESSBAR_P_H
Definition dindeterminateprogressbar_p.h:15
Definition dindeterminateprogressbar.h:13