-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainMenu.qml
More file actions
306 lines (269 loc) · 9.14 KB
/
MainMenu.qml
File metadata and controls
306 lines (269 loc) · 9.14 KB
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
Rectangle {
id: root
anchors.fill: parent
color: themeManager.background
Image {
width: 500
height: width
anchors.centerIn: parent
id: standartImage
source: "qrc:/img/Assets/image/SigmaTap.png"
}
// Профиль пользователя
Rectangle {
id: profile
property real defaultWidth: parent.width / 5
property real defaultHeight: parent.height / 6
width: defaultWidth
height: defaultHeight
anchors {
left: parent.left
top: parent.top
margins: 12
}
color: themeManager.figure
radius: 10
border.width: 2
border.color: Qt.darker(themeManager.border, 1.2)
// Плавный переход цвета при наведении
Behavior on width {
NumberAnimation { duration: 300; easing.type: Easing.OutCubic }
}
Behavior on height {
NumberAnimation { duration: 300; easing.type: Easing.OutCubic }
}
// Контейнер для текста
Column {
id: contentColumn
anchors {
fill: parent
margins: 8
}
spacing: Math.min(parent.height * 0.02, 6)
// Логин
Text {
id: loginText
width: parent.width
text: qsTr("Логин") + ": " + UserStats.login
elide: Text.ElideRight
font {
pixelSize: Math.min(profile.defaultHeight * 0.13, profile.defaultWidth * 0.09)
bold: true
}
color: themeManager.text
wrapMode: Text.WordWrap
maximumLineCount: 2
}
// Айди пользователя
Text {
width: parent.width
text: qsTr("Айди") + ": " + UserStats.userId
elide: Text.ElideRight
font.pixelSize: Math.min(profile.defaultHeight * 0.13, profile.defaultWidth * 0.09)
color: themeManager.text
wrapMode: Text.WordWrap
maximumLineCount: 1
}
// Разделительная линия
Rectangle {
width: parent.width
height: 1
color: themeManager.border
opacity: 0.6
}
// Средняя скорость печати на русском
Text {
width: parent.width
text: qsTr("Ср. скорость RU") + ": " + UserStats.getTypingSpeed("ru") + " " + qsTr("зн/мин")
elide: Text.ElideRight
font.pixelSize: Math.min(profile.defaultHeight * 0.13, profile.defaultWidth * 0.09)
color: themeManager.text
wrapMode: Text.WordWrap
maximumLineCount: 1
}
// Средняя скорость печати на английском
Text {
width: parent.width
text: qsTr("Ср. скорость EN") + ": " + UserStats.getTypingSpeed("en") + " " + qsTr("зн/мин")
elide: Text.ElideRight
font.pixelSize: Math.min(profile.defaultHeight * 0.13, profile.defaultWidth * 0.09)
color: themeManager.text
wrapMode: Text.WordWrap
maximumLineCount: 1
}
}
MouseArea {
anchors.fill: parent
hoverEnabled: true
onEntered: {
profile.width = profile.defaultWidth * 1.15
profile.height = profile.defaultHeight * 1.15
}
onExited: {
profile.width = profile.defaultWidth
profile.height = profile.defaultHeight
}
onClicked: {
console.log("Нажали на профиль")
profileWindow.visible = true
}
}
}
// Вкладки языков
Row {
id: languageTabs
anchors {
top: parent.top
margins: 20
horizontalCenter: parent.horizontalCenter
}
spacing: 30
property var pageMapping: [
"TypingTrainerRU.qml", // Русский
"TypingTrainerEN.qml", // Английский
"TypingTrainerTest.qml" // Тест
]
Repeater {
model: [qsTr("Русский"), qsTr("Английский"), qsTr("Тест")]
Rectangle {
width: 110
height: 50
color: "transparent"
border {
color: "transparent"
width: 2
}
radius: 12
// Индикатор активной вкладки
Rectangle {
id: tabIndicator
width: parent.width
height: 3
color: themeManager.border
anchors.bottom: parent.bottom
opacity: 0
radius: 1.5
// Анимация появления индикатора
PropertyAnimation on opacity {
id: indicatorAnimation
running: false
from: 0
to: 0.8
duration: 200
}
}
MouseArea {
anchors.fill: parent
hoverEnabled: true
onEntered: {
parent.border.color = themeManager.border
indicatorAnimation.running = true
}
onExited: {
parent.border.color = "transparent"
tabIndicator.opacity = 0
}
onClicked: {
// Загрузка соответствующего QML файла по индексу
pageLoader.source = languageTabs.pageMapping[index]
console.log("Загружен модуль: " + languageTabs.pageMapping[index])
}
}
Text {
anchors.centerIn: parent
text: modelData
color: themeManager.text
font {
pixelSize: 16
bold: true
}
}
}
}
}
// Кнопка настроек
SettingsButton {
id: settingsButton
}
// Кнопка выхода из приложения
Rectangle {
id: exitButton
width: 60
height: width
color: themeManager.figure
radius: width / 2
anchors {
top: settingsButton.bottom
right: parent.right
topMargin: 12
rightMargin: 12
}
// Вместо тени используем обводку
border.width: 1.5
border.color: Qt.darker(themeManager.figure, 1.3)
// Иконка выхода (крестик)
Item {
id: exitIcon
anchors.centerIn: parent
width: parent.width * 0.5
height: width
Rectangle {
width: parent.width
height: 3
radius: 1.5
anchors.centerIn: parent
color: exitMouseArea.containsMouse ? "#E74C3C" : themeManager.text
rotation: 45
// Анимация изменения цвета
Behavior on color {
ColorAnimation { duration: 150 }
}
}
Rectangle {
width: parent.width
height: 3
radius: 1.5
anchors.centerIn: parent
color: exitMouseArea.containsMouse ? "#E74C3C" : themeManager.text
rotation: -45
// Анимация изменения цвета
Behavior on color {
ColorAnimation { duration: 150 }
}
}
}
MouseArea {
id: exitMouseArea
anchors.fill: parent
hoverEnabled: true
onEntered: {
exitScaleAnimation.running = true
}
onExited: {
exitIcon.scale = 1
}
onClicked: {
console.log("Выход из приложения")
Qt.quit()
}
}
PropertyAnimation {
id: exitScaleAnimation
target: exitIcon
property: "scale"
from: 1
to: 1.3
duration: 200
easing.type: Easing.OutBack
}
}
Setting {
id: settingsWindow
}
ProfileWindow {
id: profileWindow
}
}