-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain_App.py
239 lines (199 loc) · 10.4 KB
/
Main_App.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
from Resources.all_imports import *
# Application root location ↓
if system() == "Windows":
appFolder = os.path.dirname(os.path.realpath(sys.argv[0])) + "\\"
else:
print("none")
class App(QMainWindow):
def __init__(self):
"""Constructor."""
super(App, self).__init__()
uic.loadUi(appFolder + "./UIFiles/Main_Ui_File.ui", self) # Load the UI(User Interface) file.
self.makeWindowCenter()
self.run_system() # main operating function of this GUI FIle
# Status Bar Message
self.statusBar().showMessage("Convert your to Files.")
self.setWindowTitle("File Format Converter")
def makeWindowCenter(self):
"""For launching windows in center."""
qtRectangle = self.frameGeometry()
centerPoint = QDesktopWidget().availableGeometry().center()
qtRectangle.moveCenter(centerPoint)
self.move(qtRectangle.topLeft())
def run_system(self):
"""Main load function"""
self.pushButton.clicked.connect(self.add_folder_button_on_click)
self.pushButton_add.clicked.connect(self.add_images_button_on_click)
self.pushButton_remove.clicked.connect(self.remove_button_on_click)
self.pushButton_up.clicked.connect(self.up_button_on_click)
self.pushButton_down.clicked.connect(self.down_button_on_click)
self.pushButton_make_pdf.clicked.connect(self.make_pdf_button_on_click)
self.pushButton_make_pdf_2.clicked.connect(self.make_doc_to_pdf_button_on_click)
self.pushButton_make_pdf_3.clicked.connect(self.convert_pdf2doc)
self.pushButton_clear.clicked.connect(self.clear_button_on_click)
def add_folder_button_on_click(self):
"""Add a Folder button"""
dir_path = QFileDialog.getExistingDirectory(self, 'Open File')
if dir_path != "":
dir_files = Logic_App.make_pdf_all(dir_path)
for i in dir_files:
next_row = self.listWidget.count()
self.listWidget.insertItem(next_row, i)
else:
return
def add_images_button_on_click(self):
file_name = QFileDialog.getOpenFileName(self, "Open File")
next_row = self.listWidget.count()
if file_name[0] != "":
self.listWidget.insertItem(next_row, file_name[0])
def remove_button_on_click(self):
current_row = self.listWidget.currentRow()
item = self.listWidget.item(current_row)
if item is None:
pass
else:
get_reply = QMessageBox.question(self, "Remove An Image File", "Do you want to remove " + str(item.text())
+ " from the list?", QMessageBox.Yes | QMessageBox.No)
if get_reply == QMessageBox.Yes:
element = self.listWidget.takeItem(current_row)
del element
else:
pass
def up_button_on_click(self):
current_row = self.listWidget.currentRow()
if current_row >= 1:
item = self.listWidget.takeItem(current_row)
self.listWidget.insertItem(current_row - 1, item)
self.listWidget.setCurrentItem(item)
def down_button_on_click(self):
current_row = self.listWidget.currentRow()
if current_row < self.listWidget.count() - 1:
item = self.listWidget.takeItem(current_row)
self.listWidget.insertItem(current_row + 1, item)
self.listWidget.setCurrentItem(item)
def clear_button_on_click(self):
reply = QMessageBox.question(self, "Clear List Box", "Do you want to clear all the selections?",
QMessageBox.Yes | QMessageBox.No)
if reply == QMessageBox.Yes:
self.listWidget.clear()
def make_pdf_button_on_click(self):
if self.listWidget.count() == 0:
reply = QMessageBox.information(
self, "Warning!", "List box is empty! Add files to list box first.", QMessageBox.Ok)
else:
items_list = []
for i in range(self.listWidget.count()):
items_list.append(str(self.listWidget.item(i).text()))
pdf_name, ok = QInputDialog.getText(self, "PDF Name", "Give A Name To Your PDF File", QLineEdit.Normal)
if pdf_name == "":
QMessageBox.information(self, "Alert", "Please Give Your PDF a name.", QMessageBox.Ok)
return
if ok and pdf_name is not None:
reply = QMessageBox.information(self, "PDF Location", "Let's Select A Destination "
"To Save Your PDF File!", QMessageBox.Ok)
if reply == QMessageBox.Ok:
pdf_location = QFileDialog.getExistingDirectory(self, 'Open File')
pdf_name += ".pdf"
if pdf_location == "":
return
Logic_App.make_pdf_only_selected(items_list, pdf_name, pdf_location)
last_reply = QMessageBox.information(self, "Done!", "Hurrah! Your PDF is ready! "
"Go to your selected location to find "
"the PDF.", QMessageBox.Ok)
if last_reply == QMessageBox.Ok:
pass
else:
return
def make_doc_to_pdf_button_on_click(self):
if self.listWidget.count() == 0:
reply = QMessageBox.information(
self, "Warning!", "List box is empty! Add files to list box first.", QMessageBox.Ok)
else:
items_list = []
for i in range(self.listWidget.count()):
items_list.append(str(self.listWidget.item(i).text()))
pdf_name, ok = QInputDialog.getText(self, "PDF Name", "Give A Name To Your PDF File", QLineEdit.Normal)
if pdf_name == "":
QMessageBox.information(self, "Alert", "Please Give Your PDF a name.", QMessageBox.Ok)
return
if ok and pdf_name is not None:
reply = QMessageBox.information(self, "PDF Location", "Let's Select A Destination "
"To Save Your PDF File!", QMessageBox.Ok)
if reply == QMessageBox.Ok:
pdf_location = QFileDialog.getExistingDirectory(self, 'Open File')
pdf_name += ".pdf"
if pdf_location == "":
return
Logic_App.make_doc_to_pdf(str(items_list[0]), pdf_location, pdf_name)
last_reply = QMessageBox.information(self, "Done!", "Hurrah! Your PDF is ready! "
"Go to your selected location to find "
"the PDF.", QMessageBox.Ok)
if last_reply == QMessageBox.Ok:
pass
else:
return
def convert_pdf2doc(self):
if self.listWidget.count() == 0:
reply = QMessageBox.information(
self, "Warning!", "List box is empty! Add files to list box first.", QMessageBox.Ok)
else:
items_list1 = []
for i in range(self.listWidget.count()):
items_list1.append(str(self.listWidget.item(i).text()))
doc_name, ok = QInputDialog.getText(self, "PDF Name", "Give A Name To Your PDF File", QLineEdit.Normal)
if doc_name == "":
QMessageBox.information(self, "Alert", "Please Give Your PDF a name.", QMessageBox.Ok)
return
if ok and doc_name is not None:
reply = QMessageBox.information(self, "PDF Location", "Let's Select A Destination "
"To Save Your PDF File!", QMessageBox.Ok)
if reply == QMessageBox.Ok:
doc_location = QFileDialog.getExistingDirectory(self, 'Open File')
doc_name += ".docx"
if doc_location == "":
return
Logic_App.convert_pdf2doc(str(items_list1[0]), doc_location, doc_name)
last_reply = QMessageBox.information(self, "Done!", "Hurrah! Your PDF is ready! "
"Go to your selected location to find "
"the PDF.", QMessageBox.Ok)
if last_reply == QMessageBox.Ok:
pass
else:
return
if __name__ == '__main__':
app = QApplication(sys.argv)
app.setStyle(QStyleFactory.create("Fusion"))
darkPalette = QtGui.QPalette()
darkColor = QColor(0, 27, 25)
disabledColor = QColor(127, 127, 127)
darkPalette.setColor(QPalette.Window, darkColor)
darkPalette.setColor(QPalette.WindowText, Qt.white)
darkPalette.setColor(QPalette.Base, QColor(0, 12, 8))
darkPalette.setColor(QPalette.AlternateBase, darkColor)
darkPalette.setColor(QPalette.ToolTipBase, Qt.white)
darkPalette.setColor(QPalette.ToolTipText, Qt.white)
darkPalette.setColor(QPalette.Text, Qt.white)
darkPalette.setColor(QPalette.Disabled, QPalette.Text, disabledColor)
darkPalette.setColor(QPalette.Button, darkColor)
darkPalette.setColor(QPalette.ButtonText, Qt.white)
darkPalette.setColor(QPalette.Disabled, QPalette.ButtonText, disabledColor)
darkPalette.setColor(QPalette.BrightText, Qt.red)
darkPalette.setColor(QPalette.Link, QColor(42, 130, 218))
darkPalette.setColor(QPalette.Highlight, QColor(42, 130, 218))
darkPalette.setColor(QPalette.HighlightedText, Qt.black)
darkPalette.setColor(QPalette.Disabled, QPalette.HighlightedText, disabledColor)
app.setPalette(darkPalette)
app.setStyleSheet("QToolTip { color: #ffffff; background-color: #2a82da; border: 1px solid white; }")
print("running....")
splash = splashscene() # init the splashscreen ui
splash.show() # show splashscreen ui
splash.progress() # updating progressbar
run_main = App() # Instantiate The App() class
run_main.show()
splash.finish(run_main) # this will run main module when progress reaches to 100
try:
app.exec_()
except Exception as t:
raise t
finally:
print("Application Runs Successfully...✅")