complete MetaDataTable and MetaDataColumn

This commit is contained in:
Thomas Peetz
2025-01-20 15:40:45 +01:00
parent 60fba0d3e9
commit 65288a53a1
16 changed files with 257 additions and 219 deletions
+1
View File
@@ -1,4 +1,5 @@
deployment/
venv/
kontor.bin
bin/
include/
+3 -1
View File
@@ -1,4 +1,4 @@
from PySide6.QtGui import QAction, QIcon
from PySide6.QtGui import QAction, QIcon, QGuiApplication
from PySide6.QtWidgets import QWidget, QVBoxLayout, QMenu, QMessageBox, QTabWidget, QTableView, QProgressBar
from PySide6.QtWidgets import QLabel, QMainWindow
from sqlalchemy import Engine
@@ -45,6 +45,8 @@ class MainWindow(QMainWindow):
parent_layout.addWidget(self.tabs)
self.setCentralWidget(self.central_widget)
centerPoint = QGuiApplication.screens()[0].geometry().center()
self.move(centerPoint - self.frameGeometry().center())
def _create_actions(self):
self.newAction = QAction("&New", self)
+2 -2
View File
@@ -1,5 +1,5 @@
-e /home/tpeetz/projects/kontor/python/kontor-schema
-e /home/tpeetz/projects/kontor/python/kontor-video
-e ../kontor-schema
-e ../kontor-video
platformdirs
pyyaml