70 lines
1.6 KiB
C++
70 lines
1.6 KiB
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
#if !defined(Q_MOC_RUN)
|
|
#include <AzQtComponents/AzQtComponentsAPI.h>
|
|
|
|
#include <QWidget>
|
|
#endif
|
|
|
|
class QLabel;
|
|
class QSvgWidget;
|
|
namespace AzQtComponents
|
|
{
|
|
class Style;
|
|
// Widget to display an animated progress GIF
|
|
class AZ_QT_COMPONENTS_API StyledBusyLabel
|
|
: public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit StyledBusyLabel(QWidget* parent = nullptr);
|
|
|
|
bool GetIsBusy() const;
|
|
void SetIsBusy(bool busy);
|
|
|
|
QString GetText() const;
|
|
void SetText(const QString& text);
|
|
|
|
QString GetBusyIcon() const;
|
|
void SetBusyIcon(const QString& iconSource);
|
|
|
|
int GetBusyIconSize() const;
|
|
void SetBusyIconSize(int iconSize);
|
|
|
|
QSize sizeHint() const override;
|
|
|
|
void SetUseNewWidget(bool usenew);
|
|
|
|
void DrawTo(QPainter* painter, const QRectF& bounds) const;
|
|
|
|
QPixmap GetPixmap(QSize size);
|
|
signals:
|
|
void repaintNeeded();
|
|
|
|
public slots:
|
|
void movieUpdated();
|
|
|
|
private:
|
|
friend class Style;
|
|
void updateMovie();
|
|
void loadDefaultIcon();
|
|
static bool polish(Style* style, QWidget* widget);
|
|
static bool unpolish(Style* style, QWidget* widget);
|
|
|
|
bool m_isBusy = false;
|
|
int m_busyIconSize = 32;
|
|
QString m_fileName;
|
|
QSvgWidget* m_busyIcon = nullptr;
|
|
QLabel* m_oldBusyIcon = nullptr;
|
|
QLabel* m_text;
|
|
bool m_useNewWidget = false;
|
|
};
|
|
} // namespace AzQtComponents
|