2020-06-02 09:33:21 +03:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2020 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
|
|
|
**
|
|
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#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
|