qskinny/examples/gallery/progressbar/ProgressBarPage.h
Peter Hartmann ec61c11ab6 progress bars: Introduce progress ring and refactor
Most of the code between rings and bars can be shared with a
common superclass QskProgressIndicator.

Resolves #98
2023-08-09 08:33:05 +02:00

22 lines
509 B
C++

/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
* 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;
};