Basic structure for the QT application with empty window

This commit is contained in:
2026-07-26 12:21:24 +02:00
parent e667a14459
commit 38b8ee34ff
23 changed files with 342 additions and 5 deletions

44
.vscode/tasks.json vendored
View File

@@ -25,6 +25,48 @@
"panel": "dedicated"
},
"problemMatcher": []
},
{
"label": "Qt: Open Designer",
"type": "shell",
"command": "${workspaceFolder}/.venv/bin/pyside6-designer",
"args": [],
"options": {
"cwd": "${workspaceFolder}",
"env": {
"QT_QPA_PLATFORMTHEME": "qt6ct",
"QT_QPA_PLATFORM": "xcb"
}
},
"problemMatcher": [],
"presentation": {
"reveal": "always",
"panel": "dedicated"
}
},
{
"label": "Qt: Generate files",
"type": "process",
"command": "${workspaceFolder}/.venv/bin/python",
"args": [
"${workspaceFolder}/scripts/generate_qt_files.py"
],
"options": {
"cwd": "${workspaceFolder}",
"env": {
"PATH": "${workspaceFolder}/.venv/bin:${env:PATH}"
}
},
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"clear": true,
"reveal": "always",
"panel": "dedicated"
},
"problemMatcher": []
}
]
}
}