-
Notifications
You must be signed in to change notification settings - Fork 1
/
VCardEditor.py
472 lines (398 loc) · 16.3 KB
/
VCardEditor.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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
from functions import filereader, filewriter
from contact import Contact
from tkinter import filedialog, messagebox
from tkinter import *
class Vcard_GUI:
def __init__(self):
self.__main_window = Tk()
self.__main_window.title("VCardEditor")
self.__main_window.geometry("600x400")
self.__main_window.minsize(100, 100)
self.__main_window["bg"] = "gray20"
# Luodaan menuvalikko.
menubar = Menu(self.__main_window)
# Valikkorakenteet
filemenu = Menu(menubar, tearoff=0)
filemenu.add_command(label="Open file", command=self.read_files)
filemenu.add_command(label="New contact", command=self.new_contact)
filemenu.add_command(label="Save as", command=self.save_as)
filemenu.add_separator()
filemenu.add_command(label="Exit", command=self.exit)
menubar.add_cascade(label="File", menu=filemenu)
toolmenu = Menu(menubar, tearoff=0)
toolmenu.add_command(
label="Remove Finnish area code", command=self.remove_area_code
)
menubar.add_cascade(label="Tools", menu=toolmenu)
self.__main_window.config(menu=menubar)
menubar.add_command(label="Help", command=self.help)
# Luodaan listaboxi, jossa näytetään yhteystietoja.
self.__listbox = Listbox(
self.__main_window,
height=400,
width=120,
activestyle="none",
bg="gray20",
fg="gray70",
selectbackground="yellow4",
font=("Courier", 10),
)
self.__scrollbar = Scrollbar(self.__main_window, orient=VERTICAL)
self.__listbox["yscrollcommand"] = self.__scrollbar.set
self.__scrollbar["command"] = self.__listbox.yview
# Luodaan hakukenttä.
self.__search_frame = Frame()
self.__search_button = Button(
self.__search_frame, text="Search", command=self.search
)
self.__search_entry = Entry(self.__search_frame)
self.__clear_search_button = Button(
self.__search_frame, text="X", command=self.clear_search
)
self.__how_many_label = Label(self.__search_frame, text=" 0 contacts ")
self.__how_many_label.pack(side="right")
self.__search_button.pack(side="right")
self.__clear_search_button.pack(side="right")
self.__search_entry.pack(side="left")
# Sijoitetaan ikkunan sisältö
self.__scrollbar.pack(side="right", fill=Y)
self.__search_frame.pack(side="top")
self.__listbox.pack(side="left", fill=BOTH, expand="1")
# Lista sanakirjoista, johon yhteystiedot tallennetaan.
self.__contacts = {}
# Bindings for editing contact.
self.__listbox.bind("<Return>", self.edit_text)
self.__listbox.bind("<Double-Button-1>", self.edit_text)
self.__listbox.bind("<Control-e>", self.edit_text)
# Binding for search
self.__main_window.bind(
"<Control-f>", lambda event: self.__search_entry.focus()
)
self.__search_entry.bind("<Return>", self.search)
# Binding for new contact.
self.__main_window.bind("<Control-n>", self.new_contact)
# Binding for deleting contact.
self.__main_window.bind(
"<Delete>",
lambda event: [
self.edit_text(),
self.delete(self.__contact_object),
self.__edit_window.destroy(),
self.update(),
],
)
# Binding for openin files.
self.__main_window.bind("<Control-o>", self.read_files)
# Binding for save contacts.
self.__main_window.bind("<Control-s>", self.save_as)
def edit_text(self, event=None, new=False):
# Mikäli mitää ei olla valittu muokattavaksi, ei avata muokkausikkunaa.
if self.__listbox.curselection() == () and new == False:
return
self.__edit_window = Toplevel()
self.__edit_window.title("Edit")
self.__edit_window.geometry("400x150")
self.__edit_window.attributes("-topmost", "true")
self.__edit_window["bg"] = "gray20"
self.__edit_window.transient()
self.__edit_window.wait_visibility()
self.__edit_window.grab_set()
if new:
# Luotaessa uutta kontaktia, mennään tästä.
self.__contact_object = Contact("")
else:
# Muokatessa vanhaa kontaktia, mennään tästä.
name_and_others = self.__listbox.get(self.__listbox.curselection())
name = name_and_others.split("|")[0].strip()
self.__contact_object = self.__contacts[name]
name_label = Label(self.__edit_window, text="{:8>s}".format("Name:"))
name_label.grid(row=0, column=0, sticky=W + E)
tel_label = Label(self.__edit_window, text="{:8>s}".format("Phone:"))
def save():
"""
Tallentaa senhetkisen editointi-ikkunan tilanteen contact_files-
listaan. Tarkastaa syötteiden oikeellisuuden.
:return: None
"""
# Täytyy tutkia onko samalla nimellä jo tietoja
new_fn = name_entry.get()
old_fn = self.__contact_object.fn
if new_fn in self.__contacts and new_fn != old_fn:
yes = messagebox.askyesno(
"Name already exist",
"Previous data will vanish!\nDo you want to do that?",
)
if yes:
del self.__contacts[new_fn]
self.__contacts[new_fn] = self.__contacts.pop(old_fn)
self.__contact_object = self.__contacts[new_fn]
self.__contact_object.change_names(new_fn)
self.update()
elif new and not new_fn in self.__contacts:
self.__contacts[new_fn] = self.__contact_object
self.__contact_object.change_names(new_fn)
elif new_fn != old_fn:
self.__contacts[new_fn] = self.__contacts.pop(old_fn)
self.__contact_object = self.__contacts[new_fn]
self.__contact_object.change_names(new_fn)
self.__contact_object.clear(tel=True)
for tel in tel_entrys:
number = tel.get()
if not number[1:].isdigit():
continue
if number == "":
continue
self.__contact_object.add(number)
update_edit_window()
# Päivitetään listboxi
self.update()
def want_to_save(event=None):
"""
Kun editointi-ikkunaa yritetään sulkea raksista tai painamalla
Escape-näppäintä, kysytään, haluaako käyttäjä tallentaa.
:return:
"""
want_save = messagebox.askyesno(
"Oops", "Want to save?", parent=self.__edit_window
)
if want_save:
ok_button.invoke()
else:
self.__edit_window.destroy()
save_button = Button(self.__edit_window, text="Save", command=save)
self.__edit_window.bind("<Control-s>", lambda event: save_button.invoke())
ok_button = Button(
self.__edit_window,
text="OK",
command=lambda: [save(), self.__edit_window.destroy()],
)
self.__edit_window.bind("<Escape>", want_to_save)
self.__edit_window.protocol("WM_DELETE_WINDOW", want_to_save)
delete_button = Button(
self.__edit_window,
text="Delete",
command=lambda: [
save,
self.delete(self.__contact_object),
self.__edit_window.destroy(),
self.update(),
],
)
self.__edit_window.bind("<Delete>", lambda event: delete_button.invoke())
# Luodaan Entry-kenttä nimelle.
name_entry = Entry(self.__edit_window)
# Luodaan Entry-kentät puhelinnumeroille.
tels = self.__contact_object.tel
tel_entrys = []
for i in range(len(tels)):
tel_entrys.append(Entry(self.__edit_window))
def add_tel_entry():
# Lisätään uusi yhteystietokenttä, jos se on järkevää
# save()
# if '' not in self.__contact_object.tel:
# self.__contact_object.add('')
tel_entrys.append(Entry(self.__edit_window))
tel_entrys[0].insert(0, "")
tel_entrys[0].grid(row=1, column=1 + 0, sticky=W + E)
add_telb = Button(self.__edit_window, text="+", command=add_tel_entry)
def update_edit_window():
# Päivitetään editointi-ikkuna
tel_label.grid(row=1, column=0, sticky=W + E)
save_button.grid(row=3, column=2)
ok_button.grid(row=3, column=3)
delete_button.grid(row=3, column=1)
name_entry.delete(0, "end")
name_entry.insert(0, self.__contact_object.fn)
name_entry.grid(row=0, column=1, sticky=W + E)
# Päivitetään puhelinnumerot.
i = 0
if len(self.__contact_object.tel) > 0:
for tel in tel_entrys:
tel.delete(0, "end")
tel.insert(0, self.__contact_object.tel[i])
tel.grid(row=1, column=1 + i, sticky=W + E)
i += 1
add_telb.grid(row=1, column=1 + i, sticky=W)
update_edit_window()
# Avattaessa edit_ikkunaa asetetaan kursori valmiiksi sopivaan paikkaan
self.__edit_window.focus()
if new:
name_entry.focus()
else:
try:
tel_entrys[0].focus()
except IndexError:
pass
def read_files(self, event=None):
# Selvitetään avattava tiedosto ja lisätään tiedostosta yhteystietoja
file_path = filedialog.askopenfilename(
initialdir="\\",
title="Open file",
filetypes=(("Vcard files", "*.vcf"), ("all files", "*.*")),
)
if file_path == "":
pass
else:
# Palauttaa sanakirjan yhteystieto-olioista
files_read = filereader(file_path)
# Lisätään uudet yhteystiedot sanakirjaan mikäli eivät siellä vielä ole
# yt = yhteystieto
for yt in files_read:
if yt in self.__contacts:
for number in files_read[yt].tel:
self.__contacts[yt].add(number)
else:
self.__contacts[yt] = files_read[yt]
# Päivitetään myöskin pääikkuan listboxi, jotta se pysyy ajan
# tasalla
self.update()
self.__listbox.selection_set(0)
self.__listbox.focus_set()
def save_as(self, event=None):
# Tallentaa muokattavat yhteystiedot valittuun tiedotoon.
filewriter(self.__contacts)
def new_contact(self, event=None):
# Luo uuden yhteystiedon, jota ruvetaan heti muokkaamaan.
self.edit_text(new=True)
def search(self, event=None):
"""
Metodi kerää omaan sanakirjaansa ne yhteystieto-oliot, jotka sopivat
annettuun hakusanaan, ja kutsuu sen jälkeen uptade-metodia, joka
päivittää listboxiin hakutulokset.
:return:
"""
search_result = {}
search_word = self.__search_entry.get()
# Otetaan huomioon se, että painetaan enteriä hakukentän ollessa tyhjä.
if search_word == "":
self.update()
return
# Käydään läpi kaikki yhteystiedot ja etsitään hakusanaa.
for contact in self.__contacts:
search_string = self.__contacts[contact].search_string
if (
search_word in search_string
or search_word.capitalize() in search_string
or search_word.upper() in search_string
or search_word.lower() in search_string
):
search_result[contact] = self.__contacts[contact]
self.update(search=True, search_dict=search_result)
# Aktivoidaan ensimmäinen haktulos valmiiksi käytön nopeuttamiseksi.
self.__listbox.selection_set(0)
self.__listbox.focus_set()
def clear_search(self):
# Tyhjentää hakukentän ja päivittää ruudulle kaikki yhteystiedot.
self.update()
self.__search_entry.delete(0, END)
def start(self):
self.__main_window.mainloop()
def exit(self):
self.__main_window.destroy()
def update(self, search=False, search_dict=None):
"""
:param search: Ollaanko esittämässä hakutuloksia vai kaikkia kontakteja
:param search_dict: Mahdollinen lista hakutuloksista,
jotko voidan esittää käyttäjälle.
:return: None
"""
# Otetaan talteen sen hetkinen valinta:
try:
selection = int(self.__listbox.curselection()[0])
except:
pass
# Tyhjennetään listboxi päivitystä varten.
self.__listbox.delete(0, END)
if search:
for_listbox = search_dict
else:
for_listbox = self.__contacts
index = 0
for name in sorted(for_listbox, key=lambda name: name.upper()):
number = self.__contacts[name].tel
# jos tietyt tietueet ovat tyhjiä niiden paikalle näytetään tyhjää.
if number == []:
number = [""]
shown = "{:60s}|{:30s}".format(name, " | ".join(number))
self.__listbox.insert(index, shown)
index += 1
# Koitetaan valita sama listboxin alkio, tai ainakin seuraava, tai
# ainakin edellinen.
try:
self.__listbox.selection_set(selection)
self.__listbox.see(selection)
except:
try:
self.__listbox.selection_set(selection - 1)
self.__listbox.see(selection - 1)
except:
pass
# Koitetaan saada entinen valinta näkyviin.
try:
self.__listbox.see(selection)
except:
pass
# Kerrotaan käyttäjälle, montako yhteystietoa on käsittelyssä
self.__how_many_label["text"] = "{:} contacts".format(len(for_listbox))
def delete(self, object):
"""
Poistaa valitun yhteystiedon contact_files sanakirjasta ja koko ohjelmasta.
:param object: Poistettava yhteystieto.
:return: None
"""
key_to_remove = object.fn
if messagebox.askyesno(
"Deleting contact",
"Do you want to delete " + "this contact?",
parent=self.__edit_window,
):
del self.__contacts[key_to_remove]
self.update()
else:
return
def remove_area_code(self):
"""
Poistaa suomen suuntanumern kaikista yhteystiedoista.
:return: None
"""
for contact in self.__contacts:
self.__contacts[contact].remove_area_code()
self.update()
def help(self):
"""
Avaa ohjeikkunan, jossa kerrotaan ohjelmasta.
:return:
"""
help_window = Toplevel()
help_window.title("Help")
help_window.geometry("600x700")
help_window.attributes("-topmost", "true")
help_window["bg"] = "gray20"
info_text = """
Komennot pääikkunassa
- ctrl-N: Luo uuden yhteystiedon
- ctrl-F: Aloittaa haun yhteystiedoista
- Enter: Yhteystiedon ollessa valittuna avaa muokkausikkunan yhteystiedon muokkausta varten
- ctrl-E tai kaksoisklikkaus halutun yhteystiedon päällä: avaa yhteystiedon muokattavaksi
- ctrl-O: Avaa tiedosto -ikkuna aukeaa, jolloin saa avattua vanhan yhteystietotiedoston muokkausta varen.
- ctrl-S: Avaa tallenna nimellä -ikkunan.
- delete: Yhteystiedon ollessa valittuna poistaa yhteystiedon
Komennot yhteystiedon muokkaus -ikkunassa
- ctrl-S: Tallentaa syötetyt tiedot
- Esc: Sulkee muokkausikkunan
- Delete: Poistaa yhteystiedon"""
infolabel = Label(
help_window,
text=info_text,
bg="gray20",
fg="gray70",
justify=LEFT,
font=("Helvetica", 8),
)
infolabel.pack(side="top")
ok_button = Button(help_window, text="OK", command=help_window.destroy)
ok_button.pack(side="bottom")
def main():
ikkuna = Vcard_GUI()
ikkuna.start()
main()