wip: b30 table viewer

This commit is contained in:
2023-08-19 20:59:23 +08:00
parent 70e9542422
commit 3d1012d782
6 changed files with 321 additions and 11 deletions

View File

@ -2,6 +2,7 @@ from PySide6.QtCore import QCoreApplication
from PySide6.QtWidgets import QWidget
from ui.designer.tabs.tabDbEntry_ui import Ui_TabDbEntry
from ui.implements.tabs.tabDb.tabDb_B30TableViewer import DbB30TableViewer
from ui.implements.tabs.tabDb.tabDb_ScoreTableViewer import DbScoreTableViewer
@ -14,3 +15,7 @@ class TabDbEntry(Ui_TabDbEntry, QWidget):
DbScoreTableViewer(self),
QCoreApplication.translate("TabDbEntry", "tab.scoreTableViewer"),
)
self.tabWidget.addTab(
DbB30TableViewer(self),
QCoreApplication.translate("TabDbEntry", "tab.b30TableViewer"),
)