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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
import datetime
from PyQt5.QtCore import Qt
from PyQt5.QtGui import QFont
from PyQt5.QtWidgets import QHBoxLayout, QLabel, QPushButton, QVBoxLayout
Globals = __import__("globals")
class Group:
def __init__(self, id, name, column = "left", link = ""):
self.id = id
self.name = name
self.column = column
self.link = link
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)
entries = self.getEntriesFromGroup()
entries_vbox = QVBoxLayout()
entries_vbox.setContentsMargins(5, 0, 0, 0)
for e in entries:
entries_vbox.addWidget(e.buildLayout())
output.addLayout(entries_vbox)
return output
def getEntriesFromGroup(self):
"""
Retrieve this group's entries
"""
# TODO this should be pulling from a database
output = []
for e in Globals.entries:
if e.parent_id == self.id:
output.append(e)
return output
|