This commit is contained in:
Daniel Haus 2026-01-23 09:41:20 +03:00
commit 95c854f215
9 changed files with 287 additions and 0 deletions

15
base.py Normal file
View file

@ -0,0 +1,15 @@
from PyQt6.QtWidgets import QWidget
class BaseWindow(QWidget):
def __init__(self, window_title: str, username: str, composer: object):
super().__init__()
self._composer = composer
title: str = "%s - %s" % (window_title, username)
self.setWindowTitle(title)
self._setup_ui()
def _setup_ui(self):
pass