summaryrefslogtreecommitdiff
path: root/src/group.py
blob: 18b483622145723a8b897117b469424839f4dae0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from PyQt5.QtCore import Qt
from PyQt5.QtGui import QFont
from PyQt5.QtWidgets import QLabel, QVBoxLayout
import src.globals as 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