22 lines
503 B
C++
22 lines
503 B
C++
/******************************************************************************
|
|
* QSkinny - Copyright (C) The authors
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "Page.h"
|
|
|
|
class QskAnimator;
|
|
|
|
class ProgressBarPage : public Page
|
|
{
|
|
public:
|
|
ProgressBarPage( QQuickItem* = nullptr );
|
|
|
|
private:
|
|
void populate();
|
|
|
|
std::unique_ptr< QskAnimator > m_determinateIndicatorsAnimator;
|
|
};
|