ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
51 lines
1.5 KiB
C++
51 lines
1.5 KiB
C++
// Copyright (C) 2025 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#ifndef GRADIENTTEXTUREPROVIDER_H
|
|
#define GRADIENTTEXTUREPROVIDER_H
|
|
|
|
#include <QQuick3DTextureProviderExtension>
|
|
#include <QtGui/QColor>
|
|
#include <QQmlEngine>
|
|
|
|
//! [class definition]
|
|
class GradientTextureProvider : public QQuick3DTextureProviderExtension
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY(int height READ height WRITE setHeight NOTIFY heightChanged)
|
|
Q_PROPERTY(int width READ width WRITE setWidth NOTIFY widthChanged)
|
|
Q_PROPERTY(QColor startColor READ startColor WRITE setStartColor NOTIFY startColorChanged)
|
|
Q_PROPERTY(QColor endColor READ endColor WRITE setEndColor NOTIFY endColorChanged)
|
|
QML_ELEMENT
|
|
//! [class definition]
|
|
public:
|
|
GradientTextureProvider();
|
|
int height() const;
|
|
void setHeight(int newHeight);
|
|
int width() const;
|
|
void setWidth(int newWidth);
|
|
|
|
QColor startColor() const;
|
|
void setStartColor(const QColor &newStartColor);
|
|
|
|
QColor endColor() const;
|
|
void setEndColor(const QColor &newEndColor);
|
|
|
|
Q_SIGNALS:
|
|
void heightChanged();
|
|
void widthChanged();
|
|
void startColorChanged();
|
|
void endColorChanged();
|
|
|
|
protected:
|
|
QSSGRenderGraphObject *updateSpatialNode(QSSGRenderGraphObject *node) override;
|
|
|
|
private:
|
|
int m_height = 256;
|
|
int m_width = 256;
|
|
QColor m_startColor = QColor(QStringLiteral("#d4fc79"));
|
|
QColor m_endColor = QColor(QStringLiteral("#96e6a1"));
|
|
};
|
|
|
|
#endif // GRADIENTTEXTUREPROVIDER_H
|