blob: 729fb712ea9da649747265db69bb7cd4fe4d918f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
|
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
import QtGraphicalEffects 1.15
Item {
property string imageSource: "https://eduport.webestica.com/assets/images/courses/4by3/11.jpg"
readonly property color allLevelsColor: "#ff6f42c1"
readonly property color beginnerColor: "#ff0cbc87"
readonly property color intermediateColor: "#ff17a2b8"
readonly property color allLevelsBackgroundColor: "#1a6f42c1"
readonly property color beginnerBackgroundColor: "#1a0cbc87"
readonly property color intermediateBackgroundColor: "#1a17a2b8"
property string badgeText: "All level"
property color badgeColor: "#ff6f42c1"
property color badgeBackgroundColor: "#1a6f42c1"
property string titleText: "Build Responsive Websites with HTML"
property alias imageArea: imageArea
property alias titleArea: titleArea
property string textTruncateText: "Far advanced settling say finished raillery. Offered chiefly farther"
property bool doesntEmbed: Qt.platform.os === "android"
|| Qt.platform.os === "linux"
|| Qt.platform.os === "osx"
|| Qt.platform.os === "unix"
|| Qt.platform.os === "windows"
width: 301
height: 451
DropShadow {
source: rectangle
color: Qt.rgba(.113, .227, .325, .15)
anchors.fill: rectangle
}
Rectangle {
id: rectangle
radius: 10
anchors {
top: parent.top
topMargin: 25.6
left: parent.left
leftMargin: 12.8
right: parent.right
rightMargin: 12.8
bottom: parent.bottom
}
ColumnLayout {
anchors.fill: parent
Image {
id: image
source: imageSource
Layout.fillWidth: true
sourceSize.height: width * 3 / 4
layer.enabled: true
layer.effect: OpacityMask {
maskSource: Rectangle {
width: image.width
height: image.height
radius: 10
}
}
MouseArea {
id: imageArea
anchors.fill: parent
}
}
ColumnLayout {
id: body
Layout.topMargin: 16
Layout.rightMargin: 20
Layout.leftMargin: 20
Item {
id: badgeAndFavorite
height: body.height / 6
Layout.fillWidth: true
Layout.bottomMargin: 8
Rectangle {
id: badge
color: badgeBackgroundColor
implicitWidth: badgeLabel
.width + 18
implicitHeight: badgeLabel
.height + 6
radius: 6
anchors {
left: parent.left
verticalCenter: parent
.verticalCenter
}
FontLoader {
id: roboto
source: doesntEmbed ? ""
: "Roboto/Roboto-Regular.ttf"
}
Label {
id: badgeLabel
text: badgeText
color: badgeColor
font {
family: doesntEmbed
? "Roboto"
: roboto.name
pixelSize: 13
}
anchors.centerIn: parent
}
}
Image {
id: favorite
source: "Font-Awesome/svgs/solid/heart.svg"
sourceSize {
width: 15
height: 15
}
anchors {
right: parent.right
verticalCenter: parent
.verticalCenter
}
}
}
FontLoader {
id: heebo
source: "Heebo/Heebo-Bold.ttf"
}
Label {
id: title
text: titleText
wrapMode: Text.Wrap
Layout.fillWidth: true
font {
family: heebo.name
pixelSize: 21
}
MouseArea {
id: titleArea
anchors.fill: parent
}
}
Label {
id: textTruncate
text: textTruncateText
wrapMode: Text.Wrap
Layout.fillWidth: true
font {
weight: Font.Light
pointSize: 14
}
}
RowLayout {
id: listInline
}
}
RowLayout {
id: footer
}
}
}
}
|