Skip to content

Commit be7e2b9

Browse files
committed
Developement branch
1 parent a03822f commit be7e2b9

File tree

357 files changed

+49490
-81
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

357 files changed

+49490
-81
lines changed

.vscode/c_cpp_properties.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "windows-gcc-x64",
5+
"includePath": [
6+
"${workspaceFolder}/**"
7+
],
8+
"compilerPath": "C:/Strawberry/c/bin/gcc.exe",
9+
"cStandard": "${default}",
10+
"cppStandard": "${default}",
11+
"intelliSenseMode": "windows-gcc-x64",
12+
"compilerArgs": [
13+
""
14+
]
15+
}
16+
],
17+
"version": 4
18+
}

.vscode/launch.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "C/C++ Runner: Debug Session",
6+
"type": "cppdbg",
7+
"request": "launch",
8+
"args": [],
9+
"stopAtEntry": false,
10+
"externalConsole": true,
11+
"cwd": "c:/Users/ADMIN/Documents/HelperWindow/start",
12+
"program": "c:/Users/ADMIN/Documents/HelperWindow/start/build/Debug/outDebug",
13+
"MIMode": "gdb",
14+
"miDebuggerPath": "gdb",
15+
"setupCommands": [
16+
{
17+
"description": "Enable pretty-printing for gdb",
18+
"text": "-enable-pretty-printing",
19+
"ignoreFailures": true
20+
}
21+
]
22+
}
23+
]
24+
}

.vscode/settings.json

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
{
2+
"C_Cpp_Runner.cCompilerPath": "gcc",
3+
"C_Cpp_Runner.cppCompilerPath": "g++",
4+
"C_Cpp_Runner.debuggerPath": "gdb",
5+
"C_Cpp_Runner.cStandard": "",
6+
"C_Cpp_Runner.cppStandard": "",
7+
"C_Cpp_Runner.msvcBatchPath": "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Auxiliary/Build/vcvarsall.bat",
8+
"C_Cpp_Runner.useMsvc": false,
9+
"C_Cpp_Runner.warnings": [
10+
"-Wall",
11+
"-Wextra",
12+
"-Wpedantic",
13+
"-Wshadow",
14+
"-Wformat=2",
15+
"-Wcast-align",
16+
"-Wconversion",
17+
"-Wsign-conversion",
18+
"-Wnull-dereference"
19+
],
20+
"C_Cpp_Runner.msvcWarnings": [
21+
"/W4",
22+
"/permissive-",
23+
"/w14242",
24+
"/w14287",
25+
"/w14296",
26+
"/w14311",
27+
"/w14826",
28+
"/w44062",
29+
"/w44242",
30+
"/w14905",
31+
"/w14906",
32+
"/w14263",
33+
"/w44265",
34+
"/w14928"
35+
],
36+
"C_Cpp_Runner.enableWarnings": true,
37+
"C_Cpp_Runner.warningsAsError": false,
38+
"C_Cpp_Runner.compilerArgs": [],
39+
"C_Cpp_Runner.linkerArgs": [],
40+
"C_Cpp_Runner.includePaths": [],
41+
"C_Cpp_Runner.includeSearch": [
42+
"*",
43+
"**/*"
44+
],
45+
"C_Cpp_Runner.excludeSearch": [
46+
"**/build",
47+
"**/build/**",
48+
"**/.*",
49+
"**/.*/**",
50+
"**/.vscode",
51+
"**/.vscode/**"
52+
],
53+
"C_Cpp_Runner.useAddressSanitizer": false,
54+
"C_Cpp_Runner.useUndefinedSanitizer": false,
55+
"C_Cpp_Runner.useLeakSanitizer": false,
56+
"C_Cpp_Runner.showCompilationTime": false,
57+
"C_Cpp_Runner.useLinkTimeOptimization": false,
58+
"C_Cpp_Runner.msvcSecureNoWarnings": false
59+
}

HelperWindow.pro

Lines changed: 57 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,37 @@
11
QT += quick core qml svg
22

3-
# You can make your code fail to compile if it uses deprecated APIs.
4-
# In order to do so, uncomment the following line.
5-
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
6-
73
CONFIG += c++1z
84
include(framelesshelper/qmake/core.pri)
95
include(framelesshelper/qmake/quick.pri)
106
SOURCES += \
11-
start/main.cpp \
12-
start/src/AppInfo.cpp \
13-
start/src/Def.cpp \
14-
start/src/FluTextStyle.cpp \
15-
start/src/component/CircularReveal.cpp \
16-
start/src/component/FileWatcher.cpp \
17-
start/src/component/FpsItem.cpp \
18-
start/src/helper/SettingsHelper.cpp
7+
src/Def.cpp \
8+
src/FluApp.cpp \
9+
src/FluCaptcha.cpp \
10+
src/FluColorSet.cpp \
11+
src/FluColors.cpp \
12+
src/FluEventBus.cpp \
13+
src/FluHttp.cpp \
14+
src/FluHttpInterceptor.cpp \
15+
src/FluRectangle.cpp \
16+
src/FluRegister.cpp \
17+
src/FluTextStyle.cpp \
18+
src/FluTheme.cpp \
19+
src/FluTools.cpp \
20+
src/FluTreeModel.cpp \
21+
src/FluViewModel.cpp \
22+
src/FluWatermark.cpp \
23+
src/FluentUI.cpp \
24+
src/MainThread.cpp \
25+
src/Screenshot.cpp \
26+
src/WindowLifecycle.cpp \
27+
src/start/main.cpp \
28+
src/start/src/AppInfo.cpp \
29+
src/start/src/component/CircularReveal.cpp \
30+
src/start/src/component/FileWatcher.cpp \
31+
src/start/src/component/FpsItem.cpp \
32+
src/start/src/helper/SettingsHelper.cpp
1933

20-
RESOURCES += qml.qrc
34+
RESOURCES += src/Qt5/imports/fluentui.qrc
2135

2236
# Additional import path used to resolve QML modules in Qt Creator's code model
2337
QML_IMPORT_PATH =
@@ -31,13 +45,33 @@ else: unix:!android: target.path = /opt/$${TARGET}/bin
3145
!isEmpty(target.path): INSTALLS += target
3246

3347
HEADERS += \
34-
start/Version.h \
35-
start/src/AppInfo.h \
36-
start/src/Def.h \
37-
start/src/FluTextStyle.h \
38-
start/src/component/CircularReveal.h \
39-
start/src/component/FileWatcher.h \
40-
start/src/component/FpsItem.h \
41-
start/src/helper/SettingsHelper.h \
42-
start/src/singleton.h \
43-
start/src/stdafx.h
48+
src/Def.h \
49+
src/FluApp.h \
50+
src/FluCaptcha.h \
51+
src/FluColorSet.h \
52+
src/FluColors.h \
53+
src/FluEventBus.h \
54+
src/FluHttp.h \
55+
src/FluHttpInterceptor.h \
56+
src/FluRectangle.h \
57+
src/FluRegister.h \
58+
src/FluTextStyle.h \
59+
src/FluTheme.h \
60+
src/FluTools.h \
61+
src/FluTreeModel.h \
62+
src/FluViewModel.h \
63+
src/FluWatermark.h \
64+
src/FluentUI.h \
65+
src/MainThread.h \
66+
src/Screenshot.h \
67+
src/WindowLifecycle.h \
68+
src/singleton.h \
69+
src/start/Version.h \
70+
src/start/src/AppInfo.h \
71+
src/start/src/component/CircularReveal.h \
72+
src/start/src/component/FileWatcher.h \
73+
src/start/src/component/FpsItem.h \
74+
src/start/src/helper/SettingsHelper.h \
75+
src/start/src/singleton.h \
76+
src/start/src/stdafx.h \
77+
src/stdafx.h

0 commit comments

Comments
 (0)