-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathMark.hpp
115 lines (109 loc) · 3.71 KB
/
Mark.hpp
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
//
// Created by 绮名桑 on 2024/9/12.
//
#ifndef WIFI_QT_MARK_HPP
#define WIFI_QT_MARK_HPP
//***** UI 界面 静态全局标志位 *****//
static bool Model_Flag = false; // 模型加载标志位
static bool YOLOThread_Paused = false; // YOLOThread暂停自锁标志位
static bool YOLOThread_Flag = false; // YOLOThread终止标志位
static int Page_index = 0; // YOLOThread计页器
//***** UI 界面 表情符号 *****//
static const QString emojis[] = {
"😀", "😁", "😂", "😃", "😄", "😅", "😆", "😉", "😊", "😋", "😎", "😍", "😘",
"😗", "😙", "😚", "😜", "😝", "😛", "🤪", "😏", "😒", "😞", "😔", "😟", "😕",
"🙁", "☹️", "😣", "😖", "😫", "😩", "🥺", "😢", "😭", "😤", "😠", "😡", "🤬",
"🤯", "😳", "😱", "😨", "😰", "😥", "😓", "🤔", "🤭", "🤫", "🤗", "🤥", "😶",
"😐", "😑", "😬", "🙄", "😯", "😦", "😧", "😲", "🥱", "😴", "🤤", "😪", "😵",
"🤐", "🥴", "🤢", "🤮", "🤧", "😷", "🤒", "🤕", "🥵", "🥶",
"🐶", "🐱", "🐭", "🐹", "🐰", "🦊", "🐻", "🐼", "🐨", "🐯", "🦁", "🐮", "🐷", "🐸",
"🐵", "🐔", "🐧", "🦆", "🦅", "🦉", "🦇", "🐺", "🐗", "🐴", "🦄", "🐝", "🐛", "🦋",
"🐌", "🐞", "🐜", "🦟", "🦗", "🦂", "🦀", "🐢", "🦎", "🐍", "🐙", "🦑", "🦐", "🦧",
"🦍", "🐘", "🐪", "🐫", "🦒", "🦓", "🦏", "🦛", "🐂", "🦘", "🦥", "🦦", "🦨", "🦡",
"🐓", "🦃", "🦚", "🦜", "🦢", "🦩"
};
static const int emojiCount = sizeof(emojis) / sizeof(emojis[0]);
static const unsigned char colors[81][3] = {
{56, 0, 255},
{226, 255, 0},
{0, 94, 255},
{0, 37, 255},
{0, 255, 94},
{255, 226, 0},
{0, 18, 255},
{255, 151, 0},
{170, 0, 255},
{0, 255, 56},
{255, 0, 75},
{0, 75, 255},
{0, 255, 169},
{255, 0, 207},
{75, 255, 0},
{207, 0, 255},
{37, 0, 255},
{0, 207, 255},
{94, 0, 255},
{0, 255, 113},
{255, 18, 0},
{255, 0, 56},
{18, 0, 255},
{0, 255, 226},
{170, 255, 0},
{255, 0, 245},
{151, 255, 0},
{132, 255, 0},
{75, 0, 255},
{151, 0, 255},
{0, 151, 255},
{132, 0, 255},
{0, 255, 245},
{255, 132, 0},
{226, 0, 255},
{255, 37, 0},
{207, 255, 0},
{0, 255, 207},
{94, 255, 0},
{0, 226, 255},
{56, 255, 0},
{255, 94, 0},
{255, 113, 0},
{0, 132, 255},
{255, 0, 132},
{255, 170, 0},
{255, 0, 188},
{113, 255, 0},
{245, 0, 255},
{113, 0, 255},
{255, 188, 0},
{0, 113, 255},
{255, 0, 0},
{0, 56, 255},
{255, 0, 113},
{0, 255, 188},
{255, 0, 94},
{255, 0, 18},
{18, 255, 0},
{0, 255, 132},
{0, 188, 255},
{0, 245, 255},
{0, 169, 255},
{37, 255, 0},
{255, 0, 151},
{188, 0, 255},
{0, 255, 37},
{0, 255, 0},
{255, 0, 170},
{255, 0, 37},
{255, 75, 0},
{0, 0, 255},
{255, 207, 0},
{255, 0, 226},
{255, 245, 0},
{188, 255, 0},
{0, 255, 18},
{0, 255, 75},
{0, 255, 151},
{255, 56, 0},
{245, 255, 0}
};
#endif //WIFI_QT_MARK_HPP