Initial
This commit is contained in:
commit
95c854f215
9 changed files with 287 additions and 0 deletions
15
base.py
Normal file
15
base.py
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue