forked from qt-creator/qt-creator
Since we also license under GPL-3.0 WITH Qt-GPL-exception-1.0,
this applies only to a hypothetical newer version of GPL, that doesn't
exist yet. If such a version emerges, we can still decide to relicense...
While at it, replace (deprecated) GPL-3.0 with more explicit GPL-3.0-only
Change was done by running
find . -type f -exec perl -pi -e "s/LicenseRef-Qt-Commercial OR GPL-3.0\+ OR GPL-3.0 WITH Qt-GPL-exception-1.0/LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0/g" {} \;
Change-Id: I5097e6ce8d10233993ee30d7e25120e2659eb10b
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
80 lines
1.7 KiB
C++
80 lines
1.7 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include "core_global.h"
|
|
|
|
#include <utils/id.h>
|
|
|
|
#include <QWidget>
|
|
#include <QObject>
|
|
|
|
#include <functional>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QPixmap;
|
|
QT_END_NAMESPACE
|
|
|
|
namespace Core {
|
|
|
|
class CORE_EXPORT IWelcomePage : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(QString title READ title CONSTANT)
|
|
Q_PROPERTY(int priority READ priority CONSTANT)
|
|
|
|
public:
|
|
IWelcomePage();
|
|
~IWelcomePage() override;
|
|
|
|
virtual QString title() const = 0;
|
|
virtual int priority() const { return 0; }
|
|
virtual Utils::Id id() const = 0;
|
|
virtual QWidget *createWidget() const = 0;
|
|
|
|
static const QList<IWelcomePage *> allWelcomePages();
|
|
};
|
|
|
|
class WelcomePageButtonPrivate;
|
|
|
|
class CORE_EXPORT WelcomePageFrame : public QWidget
|
|
{
|
|
public:
|
|
WelcomePageFrame(QWidget *parent);
|
|
|
|
void paintEvent(QPaintEvent *event) override;
|
|
|
|
static QPalette buttonPalette(bool isActive, bool isCursorInside, bool forText);
|
|
};
|
|
|
|
class CORE_EXPORT WelcomePageButton : public WelcomePageFrame
|
|
{
|
|
public:
|
|
enum Size {
|
|
SizeSmall,
|
|
SizeLarge,
|
|
};
|
|
|
|
WelcomePageButton(QWidget *parent);
|
|
~WelcomePageButton() override;
|
|
|
|
void mousePressEvent(QMouseEvent *) override;
|
|
void enterEvent(QEnterEvent *) override;
|
|
void leaveEvent(QEvent *) override;
|
|
|
|
void setText(const QString &text);
|
|
void setSize(enum Size);
|
|
void setWithAccentColor(bool withAccent);
|
|
void setOnClicked(const std::function<void ()> &value);
|
|
void setActiveChecker(const std::function<bool ()> &value);
|
|
void recheckActive();
|
|
void click();
|
|
|
|
private:
|
|
WelcomePageButtonPrivate *d;
|
|
};
|
|
|
|
} // Core
|