2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2020 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2020-06-02 09:33:21 +03:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <QVector>
|
2020-10-11 15:33:23 +02:00
|
|
|
#include <QStackedWidget>
|
2020-06-02 09:33:21 +03:00
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
class QCheckBox;
|
2020-10-11 15:33:23 +02:00
|
|
|
class QColor;
|
|
|
|
|
class QComboBox;
|
|
|
|
|
class QToolButton;
|
2020-06-02 09:33:21 +03:00
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
2020-10-11 15:33:23 +02:00
|
|
|
namespace TextEditor { class TextEditorWidget; }
|
2020-06-02 09:33:21 +03:00
|
|
|
|
|
|
|
|
namespace Android {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2020-10-11 15:33:23 +02:00
|
|
|
class SplashScreenWidget;
|
2020-06-02 09:33:21 +03:00
|
|
|
|
2020-10-11 15:33:23 +02:00
|
|
|
class SplashScreenContainerWidget : public QStackedWidget
|
2020-06-02 09:33:21 +03:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
2020-10-11 15:33:23 +02:00
|
|
|
explicit SplashScreenContainerWidget(QWidget *parent,
|
|
|
|
|
TextEditor::TextEditorWidget *textEditorWidget);
|
2020-06-02 09:33:21 +03:00
|
|
|
void loadImages();
|
2020-06-09 16:25:13 +03:00
|
|
|
bool hasImages() const;
|
|
|
|
|
bool hasPortraitImages() const;
|
|
|
|
|
bool hasLandscapeImages() const;
|
|
|
|
|
bool isSticky() const;
|
2020-06-02 09:33:21 +03:00
|
|
|
void setSticky(bool sticky);
|
2020-10-11 15:33:23 +02:00
|
|
|
QString imageName() const;
|
|
|
|
|
QString portraitImageName() const;
|
|
|
|
|
QString landscapeImageName() const;
|
|
|
|
|
void checkSplashscreenImage(const QString &name);
|
|
|
|
|
bool isSplashscreenEnabled();
|
2020-06-02 09:33:21 +03:00
|
|
|
signals:
|
|
|
|
|
void splashScreensModified();
|
2020-10-11 15:33:23 +02:00
|
|
|
|
2020-06-02 09:33:21 +03:00
|
|
|
private:
|
2020-10-11 15:33:23 +02:00
|
|
|
void loadSplashscreenDrawParams(const QString &name);
|
|
|
|
|
void setBackgroundColor(const QColor &color);
|
|
|
|
|
void setImageShowMode(const QString &mode);
|
|
|
|
|
void createSplashscreenThemes();
|
|
|
|
|
void clearAll();
|
|
|
|
|
|
2020-06-09 16:25:13 +03:00
|
|
|
TextEditor::TextEditorWidget *m_textEditorWidget = nullptr;
|
2020-10-11 15:33:23 +02:00
|
|
|
QVector<SplashScreenWidget *> m_imageWidgets;
|
|
|
|
|
QVector<SplashScreenWidget *> m_portraitImageWidgets;
|
|
|
|
|
QVector<SplashScreenWidget *> m_landscapeImageWidgets;
|
2020-06-02 09:33:21 +03:00
|
|
|
bool m_splashScreenSticky = false;
|
2020-10-11 15:33:23 +02:00
|
|
|
QColor m_splashScreenBackgroundColor;
|
2020-06-02 09:33:21 +03:00
|
|
|
QCheckBox *m_stickyCheck = nullptr;
|
2020-10-11 15:33:23 +02:00
|
|
|
QComboBox *m_imageShowMode = nullptr;
|
|
|
|
|
QToolButton *m_backgroundColor = nullptr;
|
|
|
|
|
QToolButton *m_masterImage = nullptr;
|
|
|
|
|
QToolButton *m_portraitMasterImage = nullptr;
|
|
|
|
|
QToolButton *m_landscapeMasterImage = nullptr;
|
|
|
|
|
QToolButton *m_convertSplashscreen = nullptr;
|
2020-06-02 09:33:21 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Android
|