-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathGui.py
156 lines (122 loc) · 5.24 KB
/
Gui.py
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
from PyQt5.QtWidgets import QWidget,QLabel,QLineEdit,QGridLayout,QPushButton,QMessageBox,QComboBox,QApplication,QVBoxLayout,QTabWidget,QScrollArea,QFormLayout,QSizePolicy
from PyQt5.QtGui import QIcon,QImage,QPixmap
from PyQt5.QtCore import Qt
from speechtotext import listen
from texttospeech import speak_this
from groot import input_taking
from newsWindow import newsBox
from mailWindow import mailWin
from notesWindow import noteCreationBox
from bored import boredomKiller
from asset.modules.newsLib.newsLibrary import news_func
class Groot_Ui(QWidget):
def __init__(self):
super(Groot_Ui,self).__init__()
self.initUI()
def initUI(self):
self.mainLayout = QVBoxLayout()
self.upperLayout = inpOutWidgetLayout()
self.mainLayout.addLayout(self.upperLayout.inpOutLayout)
self.mainLayout.addStretch(1)
self.setLayout(self.mainLayout)
self.setWindowTitle('GROOT')
self.setWindowIcon(QIcon('asset/img/groot.png'))
self.setGeometry(150,150,800,100)
self.show()
#Other Functions:
self.upperLayout.speaker.clicked.connect(self.listen_reply)
self.upperLayout.inputEdit.returnPressed.connect(self.callGroot)
def createAdditionalLayout(self, keywords,type):
if type == "news":
self.newsWindow = newsBox(keywords)
self.newsWindow.show()
elif type == "mail":
self.mailWindow = mailWin()
self.mailWindow.show()
elif type == "notes":
print("Showing notes")
self.noteWindow = noteCreationBox()
self.noteWindow.show()
else:
pass
#Function for typing in the input Field
def callGroot(self):
typed = str(self.upperLayout.inputEdit.text())
reply = input_taking(typed)
if reply[0] == 'news':
speak_this("Showing news")
self.upperLayout.outputEdit.setText("Showing news")
elif reply[0] == 'notes':
speak_this("Opening Notes")
self.upperLayout.outputEdit.setText("Showing Note Widget")
self.createAdditionalLayout(reply[1],type="notes")
elif reply[0] == 'mail':
speak_this("Opening Mail Service")
self.upperLayout.outputEdit.setText("Mail Service")
self.createAdditionalLayout(reply[1],type="mail")
elif reply[0] == 'surprise':
speak_this("Let's not get bored")
self.upperLayout.outputEdit.setText("Check your browser")
self.bore()
else:
self.upperLayout.outputEdit.setText(reply[1])
def listen_reply(self):
spoken = listen()
reply = input_taking(spoken)
if reply[0] == 'news':
self.upperLayout.outputEdit.setText("Showing news")
speak_this("Showing news")
self.createAdditionalLayout(reply[1],type="news")
elif reply[0] == 'mail':
self.upperLayout.outputEdit.setText("Mail Service")
speak_this("Opening Mail Service")
self.createAdditionalLayout(["No Need"],type="mail")
elif reply[0] == 'notes':
speak_this("Opening Notes")
self.upperLayout.outputEdit.setText("Showing Note Widget")
self.createAdditionalLayout(["No need"],type="notes")
elif reply[0] == 'surprise':
speak_this("I have a cure for Boredom")
self.upperLayout.outputEdit.setText("Check Your Browser")
self.bore()
else:
self.upperLayout.outputEdit.setText(reply[1])
def bore(self):
boredomKiller()
def keyPressEvent(self, e):
if e.key() == Qt.Key_Escape:
self.close()
#Function to display warning message for quitting
def closeEvent(self, event):
reply = QMessageBox.question(self, 'Message', "Are you sure to quit?",
QMessageBox.Yes | QMessageBox.No, QMessageBox.No)
if reply == QMessageBox.Yes:
event.accept()
else:
event.ignore()
class inpOutWidgetLayout(QVBoxLayout):
def __init__(self,parent=None):
super(inpOutWidgetLayout,self).__init__()
#Grid Layout for the upper part.
self.inpOutLayout = QGridLayout()
self.inputLabel = QLabel('Input')
self.inputLabel.setMinimumSize(self.sizeHint())
self.outputLabel = QLabel('Output')
self.inputLabel.setMinimumSize(self.sizeHint())
#Speaker Widget
self.speaker = QPushButton('Speak')
self.speaker.setMinimumSize(self.sizeHint())
#Text Field for Input
self.inputEdit = QLineEdit()
self.inputEdit.setMinimumSize(self.sizeHint())
#Text Field for Output
self.outputEdit = QLineEdit()
self.outputEdit.setMinimumSize(self.sizeHint())
#Spacing between the widgets
self.inpOutLayout.setSpacing(20)
#Positioning Inner Widgets
self.inpOutLayout.addWidget(self.inputLabel, 1, 0)
self.inpOutLayout.addWidget(self.inputEdit, 1, 1)
self.inpOutLayout.addWidget(self.speaker,1,2)
self.inpOutLayout.addWidget(self.outputLabel, 2, 0)
self.inpOutLayout.addWidget(self.outputEdit, 2, 1)