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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
import os
import sys
from PyQt5 import uic
from PyQt5.QtWidgets import QApplication, QDialog, QMessageBox
import src.globals as Globals
from src.group import Group
import src.db_sqlite as DB
class editGroupForm(QDialog):
"""
Form to edit/update a group
"""
def __init__(self, id):
self.id = id
super().__init__()
uic.loadUi(os.path.join("src", "add_group_form.ui"), self)
self.initializeUI()
def initializeUI(self):
self.setWindowTitle("Edit Group")
self.displayWidgets()
self.exec()
def displayWidgets(self):
group = list(filter(lambda g: g.id == self.id, Globals.groups))[0]
self.title.setText("Edit Group")
self.new_group_name.setText(group.name)
self.new_group_column.setCurrentIndex(0 if group.column.lower() == "left" else 1)
self.new_group_link.setText(group.link)
self.buttonBox.rejected.connect(self.close)
self.buttonBox.accepted.connect(self.handleSubmit)
def handleSubmit(self):
name_text = self.new_group_name.text()
column_text = self.new_group_column.currentText()
link_text = self.new_group_link.text()
if not name_text:
QMessageBox.warning(self, "Error Message",
"Name cannot be blank",
QMessageBox.Close,
QMessageBox.Close)
return
# Update DB
group = list(filter(lambda g: g.id == self.id, Globals.groups))[0]
group.name = name_text
group.column = column_text
group.link = link_text
DB.updateGroup(group)
# Update global variables
Globals.groups = list(filter(lambda g: g.id != self.id, Globals.groups))
Globals.groups.append(Group(self.id, name_text, column_text, link_text, group.hidden))
self.close()
if __name__ == "__main__":
app = QApplication(sys.argv)
window = editGroupForm()
sys.exit(app.exec_())
|