From e89fd9cb4e88aa8f27f40c5c5073feb1a3aa1ce3 Mon Sep 17 00:00:00 2001 From: Louie S Date: Sat, 16 Sep 2023 09:36:14 -0400 Subject: Basic dummy body layout --- entry.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'entry.py') diff --git a/entry.py b/entry.py index 3dadb5e..b2877cc 100644 --- a/entry.py +++ b/entry.py @@ -1,3 +1,7 @@ +import time +from PyQt5.QtCore import Qt +from PyQt5.QtGui import QFont +from PyQt5.QtWidgets import QLabel class Entry: def __init__(self, desc, due = "", due_alt = "", link = ""): @@ -6,3 +10,15 @@ class Entry: self.due_alt = due_alt self.link = link self.done = False + + def buildLayout(self): + output = QLabel() + output.setTextInteractionFlags(Qt.TextSelectableByMouse) + output.setFont(QFont("Arial", 11)) + + output.setText("- ") + if(self.due): + output.setText(output.text() + time.strftime("%m/%d/%y: ")) + output.setText(output.text() + self.desc) + + return output -- cgit