-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata.py
116 lines (87 loc) · 5.23 KB
/
data.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
'''This file will contain all the data used in creating the ui,getting images from a path etc.'''
#---------------------------------------------------------------------------------------
# Path with contain the addres of the data folder
path = 'C:\\Github\\Multitasker\\Data\\'
background_image = path + 'back.jpg'
app_logo_image = path + 'logo.png'
app_name = 'Multitasker'
#---------------------------------------------------------------------------------------
#Images used in the different windows
about_us_unpressed_image = path + 'about_us_unpressed.png'
about_us_hover_image = path + 'about_us_hover.png'
about_us_pressed_image = path + 'about_us_pressed.png'
pdf_scanner_unpressed_image = path + 'pdf_scanner_unpressed.png'
pdf_scanner_hover_image = path + 'pdf_scanner_hover.png'
pdf_scanner_pressed_image = path + 'pdf_scanner_pressed.png'
photo_ocr_unpressed_image = path + 'photo_ocr_unpressed.png'
photo_ocr_hover_image = path + 'photo_ocr_hover.png'
photo_ocr_pressed_image = path + 'photo_ocr_pressed.png'
speech_to_text_unpressed_image = path + 'speech_to_text_unpressed.png'
speech_to_text_hover_image = path + 'speech_to_text_hover.png'
speech_to_text_pressed_image = path + 'speech_to_text_pressed.png'
text_to_speech_unpressed_image = path + 'text_to_speech_unpressed.png'
text_to_speech_hover_image = path + 'text_to_speech_hover.png'
text_to_speech_pressed_image = path + 'text_to_speech_pressed.png'
back_button_unpressed_image = path + 'back_button_unpressed.png'
back_button_hover_image = path + 'back_button_hover.png'
back_button_pressed_image = path + 'back_button_pressed.png'
convert_button_unpressed_image = path + 'convert_unpressed.png'
convert_button_hover_image = path + 'convert_hover.png'
convert_button_pressed_image = path + 'convert_pressed.png'
insert_button_unpressed_image = path + 'insert_image_unpressed.png'
insert_button_hover_image = path + 'insert_image_hover.png'
insert_button_pressed_image = path + 'insert_image_pressed.png'
save_button_unpressed_image = path + 'save_unpressed.png'
save_button_hover_image = path + 'save_hover.png'
save_button_pressed_image = path + 'save_pressed.png'
remove_button_unpressed_image = path + 'remove_selected_unpressed.png'
remove_button_hover_image = path + 'remove_selected_hover.png'
remove_button_pressed_image = path + 'remove_selected_pressed.png'
speak_unpressed_image = path + 'speak_unpressed.png'
speak_hover_image = path + 'speak_hover.png'
speak_pressed_image = path + 'speak_pressed.png'
open_unpressed_image = path + 'open_text_file_unpressed.png'
open_hover_image = path + 'open_text_file_hover.png'
open_pressed_image = path + 'open_text_file_pressed.png'
listening_unpressed_image = path + 'listening_unpressed.png'
listening_hover_image = path + 'listening_hover.png'
listening_pressed_image = path + 'listening_pressed.png'
insert_photo_unpressed_image = path + 'insert_photo_ocr_unpressed.png'
insert_photo_hover_image = path + 'insert_photo_ocr_hover.png'
insert_photo_pressed_image = path + 'insert_photo_ocr_pressed.png'
email_unpressed_image = path + 'email_unpressed.png'
email_hover_image = path + 'email_hover.png'
email_pressed_image = path + 'email_pressed.png'
play_unpressed_image = path + 'play_unpressed.png'
play_hover_image = path + 'play_hover.png'
play_pressed_image = path + 'play_pressed.png'
pause_unpressed_image = path + 'pause_unpressed.png'
pause_hover_image = path + 'pause_hover.png'
pause_pressed_image = path + 'pause_pressed.png'
send_unpressed = path + 'send_unpressed.png'
send_hover = path + 'send_hover.png'
send_pressed = path + 'send_pressed.png'
ocr_unpressed = path + 'ocr_unpressed.png'
ocr_hover = path + 'ocr_hover.png'
ocr_pressed = path + 'ocr_pressed.png'
left_unpressed = path + 'left_unpressed.png'
left_pressed = path + 'left_pressed.png'
right_unpressed = path + 'right_unpressed.png'
right_pressed = path + 'right_pressed.png'
reset_unpressed = path + 'reset_unpressed.png'
reset_pressed = path + 'reset_pressed.png'
#---------------------------------------------------------------------------------------
hello_mp3 = path + 'hello.mp3'
about_video = path + 'about_us_video.mp4'
#---------------------------------------------------------------------------------------
#Fonts information used in the application
font_helvetica = 'Helvetica'
font_times_new = 'Times'
##font_size_in main window
font_size = 20
#---------------------------------------------------------------------------------------
filename = 'C:\\Github\\Multitasker\\Data\\about_us_video.mp4'
#---------------------------------------------------------------------------------------
pickel_file = path + 'pickel_svm.pkl'
text_file = path + 'result.txt'
dictionary = path + 'big_file_containing_words.txt'