From 604b485fab100785c4def10dc7242e6408e1f1c6 Mon Sep 17 00:00:00 2001 From: Louie S Date: Sat, 16 Sep 2023 09:36:14 -0400 Subject: Create project using setuptools --- group.py | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 group.py (limited to 'group.py') diff --git a/group.py b/group.py deleted file mode 100644 index 372a38e..0000000 --- a/group.py +++ /dev/null @@ -1,25 +0,0 @@ -from PyQt5.QtCore import Qt -from PyQt5.QtGui import QFont -from PyQt5.QtWidgets import QLabel, QVBoxLayout -Globals = __import__("globals") - -class Group: - def __init__(self, id, name, column = "left", link = "", hidden = False): - self.id = id - self.name = name - self.column = column - self.link = link - self.hidden = hidden - - def buildLayout(self): - output = QVBoxLayout() - output.setContentsMargins(0, 10, 0, 10) - - name = QLabel(self.name) - name.setTextInteractionFlags(Qt.TextSelectableByMouse) - name_font = QFont("Arial", 13) - name_font.setUnderline(True) - name.setFont(name_font) - output.addWidget(name) - - return output -- cgit