DtkDeclarative
DTK Declarative module
载入中...
搜索中...
未找到
drectanglenode_p.h
1// SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
2//
3// SPDX-License-Identifier: LGPL-3.0-or-later
4
5#ifndef DRECTANGLENODE_P_H
6#define DRECTANGLENODE_P_H
7
8#include "dquickrectangle_p.h"
9
10#include <dtkdeclarative_global.h>
11
12#include <private/qsgtexturematerial_p.h>
13#include <private/qsgrendernode_p.h>
14
15#include <QSGMaterial>
16#include <QSGGeometry>
17#include <QSGTextureMaterial>
18#include <QSGRectangleNode>
19#include <QSGVertexColorMaterial>
20
21DQUICK_BEGIN_NAMESPACE
22
23#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
24class CornerColorShader : public QSGOpaqueTextureMaterialShader
25{
26public:
27 const char *vertexShader() const override;
28 const char *fragmentShader() const override;
29 char const *const *attributeNames() const override;
30 void updateState(const RenderState &state, QSGMaterial *newMaterial, QSGMaterial *oldMaterial) override;
31 void initialize() override;
32
33private:
34 int m_idQtOpacity = -1;
35};
36#else
37class CornerColorShader : public QSGOpaqueTextureMaterialRhiShader
38{
39public:
40#if QT_VERSION >= QT_VERSION_CHECK(6, 8, 0)
41 CornerColorShader(int viewCount);
42#else
44#endif
45 bool updateUniformData(RenderState &state, QSGMaterial *newMaterial, QSGMaterial *oldMaterial);
46};
47#endif
48
49class CornerColorMaterial : public QSGOpaqueTextureMaterial
50{
51public:
53
54 void setRadius(qreal radius) { m_radius = radius; }
55
56 QColor color() const { return m_color; }
57 void setColor(const QColor &color) { m_color = color; }
58
59 QSGMaterialType *type() const override;
60#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
61 QSGMaterialShader *createShader() const override;
62#else
63 QSGMaterialShader *createShader(QSGRendererInterface::RenderMode renderMode) const override;
64#endif
65
66 int compare(const QSGMaterial *other) const override;
67
68private:
69 qreal m_radius;
70 QColor m_color;
71};
72
74{
75 float m_x;
76 float m_y;
77 float m_tx;
78 float m_ty;
79 unsigned char r, g, b, a;
80 void set(float x, float y, float tx, float ty, uchar nr, uchar ng, uchar nb, uchar na)
81 {
82 m_x = x; m_y = y;
83 m_tx = tx; m_ty = ty;
84 r = nr; g = ng; b = nb; a = na;
85 }
86};
87
88class DRectangleNode : public QSGRectangleNode
89{
90public:
92
93 void setRect(const QRectF &) override;
94 QRectF rect() const override { return m_rect; }
95 void setRadius(qreal radius);
96 void setColor(const QColor &color) override;
97 QColor color() const override { return m_color; }
98 void setMakTexture(QSGTexture *texture);
99 void setCorners(DQuickRectangle::Corners);
100 void update();
101
102protected:
103 void updateGeometry();
104
105private:
106 const QSGGeometry::AttributeSet &ColoredCornerAttributes()
107 {
108 static QSGGeometry::Attribute data[] = {
109 QSGGeometry::Attribute::create(0, 2, GL_FLOAT, true),
110 QSGGeometry::Attribute::create(1, 2, GL_FLOAT),
111 QSGGeometry::Attribute::create(2, 4, GL_UNSIGNED_BYTE)
112 };
113 static QSGGeometry::AttributeSet attributes = { 3, sizeof(ColoredCornerPoint2D), data };
114 return attributes;
115 }
116
117private:
118 QSGVertexColorMaterial m_material;
119 QSGGeometry m_geometry;
120
121 CornerColorMaterial m_cornerMaterial;
122 QSGGeometry m_cornerGeometry { ColoredCornerAttributes(), 0 };
123 QSGGeometryNode m_cornerNode;
124
125 QRectF m_rect;
126 bool m_geometryChanged = false;
127 DQuickRectangle::Corners m_coners = DQuickRectangle::NoneCorner;
128 qreal m_radius = 0;
129 QColor m_color = QColor::Invalid;
130 QSGTexture *m_maskTexture = nullptr;
131};
132
133class DSoftRectangleNode : public QSGRenderNode
134{
135public:
136 DSoftRectangleNode(QQuickItem *owner);
137
138 StateFlags changedStates() const override;
139 void render(const RenderState *state) override;
140 RenderingFlags flags() const override;
141 QRectF rect() const override;
142
143 void setRadius(qreal radius);
144 void setColor(const QColor &color);
145 void setCorners(DQuickRectangle::Corners);
146
147private:
148 QQuickItem *m_item = nullptr;
149 qreal m_radius = 0;
150 QColor m_color = QColor::Invalid;
151 DQuickRectangle::Corners m_coners = DQuickRectangle::NoneCorner;
152 QQuickWindow *m_window = nullptr;
153};
154
155DQUICK_END_NAMESPACE
156
157#endif // DRECTANGLENODE_P_H
Definition drectanglenode_p.h:50
Definition drectanglenode_p.h:38
Definition drectanglenode_p.h:89
Definition drectanglenode_p.h:134
Definition drectanglenode_p.h:74