Basic structure for the QT application with empty window
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -6,5 +6,7 @@ build/
|
|||||||
dist/
|
dist/
|
||||||
.pytest_cache/
|
.pytest_cache/
|
||||||
.vscode/*
|
.vscode/*
|
||||||
|
!.vscode/launch.json
|
||||||
|
!.vscode/tasks.json
|
||||||
!.vscode/tasks.json
|
!.vscode/tasks.json
|
||||||
.ruff_cache/
|
.ruff_cache/
|
||||||
|
|||||||
20
.vscode/launch.json
vendored
Normal file
20
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
// Use IntelliSense to learn about possible attributes.
|
||||||
|
// Hover to view descriptions of existing attributes.
|
||||||
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Python Debugger: Module",
|
||||||
|
"type": "debugpy",
|
||||||
|
"request": "launch",
|
||||||
|
"module": "bedit_gui",
|
||||||
|
"preLaunchTask": "Qt: Generate files",
|
||||||
|
"cwd": "${workspaceFolder}",
|
||||||
|
"env": {
|
||||||
|
"QT_QPA_PLATFORMTHEME": "qt6ct",
|
||||||
|
"QT_QPA_PLATFORM": "xcb"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
44
.vscode/tasks.json
vendored
44
.vscode/tasks.json
vendored
@@ -25,6 +25,48 @@
|
|||||||
"panel": "dedicated"
|
"panel": "dedicated"
|
||||||
},
|
},
|
||||||
"problemMatcher": []
|
"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": []
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -17,6 +17,7 @@ dependencies = [
|
|||||||
[project.scripts]
|
[project.scripts]
|
||||||
bedit-graphviz = "bedit_util.graphviz:main"
|
bedit-graphviz = "bedit_util.graphviz:main"
|
||||||
bedit-simulate = "bedit_util.simulate:main"
|
bedit-simulate = "bedit_util.simulate:main"
|
||||||
|
bedit = "bedit_gui.application:main"
|
||||||
|
|
||||||
[project.optional-dependencies]
|
[project.optional-dependencies]
|
||||||
dev = [
|
dev = [
|
||||||
|
|||||||
62
scripts/generate_qt_files.py
Normal file
62
scripts/generate_qt_files.py
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import subprocess
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
|
||||||
|
ROOT = Path(__file__).resolve().parents[1]
|
||||||
|
GUI_PACKAGE = ROOT / "src" / "bedit_gui"
|
||||||
|
|
||||||
|
FORMS_DIR = GUI_PACKAGE / "ui" / "forms"
|
||||||
|
GENERATED_UI_DIR = GUI_PACKAGE / "ui" / "generated"
|
||||||
|
|
||||||
|
QRC_FILE = GUI_PACKAGE / "resources" / "resources.qrc"
|
||||||
|
GENERATED_RESOURCES = (
|
||||||
|
GUI_PACKAGE
|
||||||
|
/ "resources"
|
||||||
|
/ "generated"
|
||||||
|
/ "resources_rc.py"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def execute(*command: str) -> None:
|
||||||
|
print("+", " ".join(command))
|
||||||
|
subprocess.run(command, check=True)
|
||||||
|
|
||||||
|
|
||||||
|
def generate_ui() -> None:
|
||||||
|
GENERATED_UI_DIR.mkdir(parents=True, exist_ok=True)
|
||||||
|
|
||||||
|
for source in sorted(FORMS_DIR.glob("*.ui")):
|
||||||
|
destination = GENERATED_UI_DIR / f"ui_{source.stem}.py"
|
||||||
|
|
||||||
|
execute(
|
||||||
|
"pyside6-uic",
|
||||||
|
str(source),
|
||||||
|
"-o",
|
||||||
|
str(destination),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def generate_resources() -> None:
|
||||||
|
GENERATED_RESOURCES.parent.mkdir(
|
||||||
|
parents=True,
|
||||||
|
exist_ok=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
execute(
|
||||||
|
"pyside6-rcc",
|
||||||
|
str(QRC_FILE),
|
||||||
|
"-o",
|
||||||
|
str(GENERATED_RESOURCES),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def main() -> None:
|
||||||
|
generate_ui()
|
||||||
|
generate_resources()
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
0
src/bedit_gui/__init__.py
Normal file
0
src/bedit_gui/__init__.py
Normal file
@@ -1,5 +1,3 @@
|
|||||||
def main():
|
from bedit_gui.application import main
|
||||||
pass
|
|
||||||
|
|
||||||
if __name__ == "__name__":
|
raise SystemExit(main())
|
||||||
raise SystemExit(main())
|
|
||||||
18
src/bedit_gui/application.py
Normal file
18
src/bedit_gui/application.py
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
from __future__ import annotations
|
||||||
|
import sys
|
||||||
|
|
||||||
|
from PySide6.QtWidgets import QApplication
|
||||||
|
|
||||||
|
from bedit_gui.resources.generated import resources_rc
|
||||||
|
from bedit_gui.views.main_window import MainWindow
|
||||||
|
|
||||||
|
def main() -> int:
|
||||||
|
app = QApplication(sys.argv)
|
||||||
|
|
||||||
|
app.setOrganizationName("BEdit")
|
||||||
|
app.setApplicationName("BEdit")
|
||||||
|
|
||||||
|
window = MainWindow()
|
||||||
|
window.show()
|
||||||
|
|
||||||
|
return app.exec()
|
||||||
0
src/bedit_gui/commands/__init__.py
Normal file
0
src/bedit_gui/commands/__init__.py
Normal file
0
src/bedit_gui/controllers/__init__.py
Normal file
0
src/bedit_gui/controllers/__init__.py
Normal file
0
src/bedit_gui/documents/__init__.py
Normal file
0
src/bedit_gui/documents/__init__.py
Normal file
3
src/bedit_gui/resources/generated/.gitignore
vendored
Normal file
3
src/bedit_gui/resources/generated/.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
*
|
||||||
|
!__init__.py
|
||||||
|
!.gitignore
|
||||||
0
src/bedit_gui/resources/generated/__init__.py
Normal file
0
src/bedit_gui/resources/generated/__init__.py
Normal file
0
src/bedit_gui/services/__init__.py
Normal file
0
src/bedit_gui/services/__init__.py
Normal file
31
src/bedit_gui/ui/forms/main_window.ui
Normal file
31
src/bedit_gui/ui/forms/main_window.ui
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>MainWindow</class>
|
||||||
|
<widget class="QMainWindow" name="MainWindow">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>800</width>
|
||||||
|
<height>600</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string>MainWindow</string>
|
||||||
|
</property>
|
||||||
|
<widget class="QWidget" name="centralwidget"/>
|
||||||
|
<widget class="QMenuBar" name="menubar">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>800</width>
|
||||||
|
<height>22</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<widget class="QStatusBar" name="statusbar"/>
|
||||||
|
</widget>
|
||||||
|
<resources/>
|
||||||
|
<connections/>
|
||||||
|
</ui>
|
||||||
3
src/bedit_gui/ui/generated/.gitignore
vendored
Normal file
3
src/bedit_gui/ui/generated/.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
*
|
||||||
|
!__init__.py
|
||||||
|
!.gitignore
|
||||||
0
src/bedit_gui/ui/generated/__init__.py
Normal file
0
src/bedit_gui/ui/generated/__init__.py
Normal file
0
src/bedit_gui/utils/__init__.py
Normal file
0
src/bedit_gui/utils/__init__.py
Normal file
0
src/bedit_gui/views/__init__.py
Normal file
0
src/bedit_gui/views/__init__.py
Normal file
0
src/bedit_gui/views/dialogs/__init__.py
Normal file
0
src/bedit_gui/views/dialogs/__init__.py
Normal file
0
src/bedit_gui/views/docks/__init__.py
Normal file
0
src/bedit_gui/views/docks/__init__.py
Normal file
0
src/bedit_gui/views/editor/__init__.py
Normal file
0
src/bedit_gui/views/editor/__init__.py
Normal file
11
src/bedit_gui/views/main_window.py
Normal file
11
src/bedit_gui/views/main_window.py
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
from PySide6.QtWidgets import QMainWindow
|
||||||
|
|
||||||
|
from bedit_gui.ui.generated.ui_main_window import Ui_MainWindow
|
||||||
|
|
||||||
|
|
||||||
|
class MainWindow(QMainWindow):
|
||||||
|
def __init__(self) -> None:
|
||||||
|
super().__init__()
|
||||||
|
|
||||||
|
self.ui = Ui_MainWindow()
|
||||||
|
self.ui.setupUi(self)
|
||||||
Reference in New Issue
Block a user