-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
1128 lines (803 loc) · 44.4 KB
/
main.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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# this program developed by Mohammad Rasoul Azizi
# importing the module
from tkinter import *
# defination the phonebook class
class PhoneBook:
'''This class is to implement the entire structure of the phonebook'''
# add class attributes
# save the developer information in info variable
info = """This program developed by
Mohammad Rasoul Azizi
azizi.mr1377@gmail.com"""
# create a empty list for saving the Name contact
Name_list = []
# Create a empty list for saving the family contact
famili_list = []
# Create a empty list for saving the Phone number contact
phone_list = []
# Create a empty list for saving the address contact
address_list = []
# Create a empty list for saving the email contact
email_list = []
# Create a empty list for saving the cellphone contact
cellphone_list = []
# Create a empty list for saving the id contact
id_list = []
# defination the initial funtion
def __init__(self) -> None:
"""This function is used to build the initial personalized page."""
# create a object from tkinter module for create a window
self.first_window = Tk()
# give a title to the our screen
self.first_window.title("PhoneBook")
# give a size for our screen window
self.first_window.geometry("500x700")
# removing the changeable size of width and height from your window screen
self.first_window.resizable(False, False)
# getting the a color for our background
self.first_window.configure(background="#ffbfff")
# create a label object for write "Welcome to PhoneBook" as message
self.welcome_label = Label(self.first_window, text="Welcome to PhoneBook", background="#ffbfff",
foreground="#ff03ff",
font="arial 20 bold")
# change the position of text label in our screen
self.welcome_label.place(x=250.0, y=50.0, anchor="center")
# create a label object for write "Azizi" as message
self.ronak_biniaz = Label(self.first_window, text="Azizi.MR", background="#ffbfff", foreground="#ff03ff",
font="arial 15 bold")
# change the position of text label in our screen
self.ronak_biniaz.place(x=240, y=90, anchor="center")
# create a label object for write number of contact exist in our phonebook
self.num_contact = Label(self.first_window, text=f"you have {len(self.Name_list)} contact",
background="#ffbfff",
foreground="#801680", font="arial 17 bold")
# change the position of text label in our screen
self.num_contact.place(x=243, y=200, anchor="center")
# create a Button object for "add contact" push button
self.add_button = Button(self.first_window, text="Add Contact", background="#b30eb3",
command=self.make_add_page)
# change the position of add button in our screen
self.add_button.place(x=150, y=300, anchor="center")
# create a Button object for "Search Contact" push button
self.search_button = Button(self.first_window, text="Search Contact", background="#b30eb3",
command=self.make_search_page)
# change the position of search button in our screen
self.search_button.place(x=350, y=300, anchor="center")
# create a Button object for "Edit Contact" push button
self.edith_button = Button(self.first_window, text="Edit Contact", background="#b30eb3",
command=self.make_edit_page)
# change the position of search button in our screen
self.edith_button.place(x=120, y=350, anchor="center")
# create a Button object for "Delete Contact" push button
self.delete_button = Button(self.first_window, text="Delete Contact", background="#b30eb3",
command=self.make_delete_page)
# change the position of search button in our screen
self.delete_button.place(x=370, y=350, anchor="center")
# create a Button object for "Numbers" push button
self.report_numbers_button = Button(self.first_window, text="Numbers", background="#b30eb3",
command=self.make_show_num)
# change the position of Numbers button in our screen
self.report_numbers_button.place(x=320, y=400, anchor="center")
# create a Button object for "Emails" push button
self.report_email_button = Button(self.first_window, text="Emails", background="#b30eb3",
command=self.make_show_email)
# change the position of Emails button in our screen
self.report_email_button.place(x=242, y=450, anchor="center")
# create a Button object for "Address" push button
self.report_address_button = Button(self.first_window, text="Address", background="#b30eb3",
command=self.make_show_address)
# change the position of Address button in our screen
self.report_address_button.place(x=170, y=400, anchor="center")
# create a Button object for "Info" push button
self.info_button = Button(self.first_window, text="Info", background="#b30eb3", command=self.info_button_func)
# change the position of info button in our screen
self.info_button.place(x=242, y=330, anchor="center")
# create a label object for when user calling the info function
self.info_label = Label(self.first_window, background="#ffbfff",
foreground="#7d0a79", font="arial 17 bold")
# self.aad = self.add_page()
# running the programm
self.first_window.mainloop()
# Define the Add Page Function
def add_page(self) -> None:
'''This function is used to build the graphic mode of the page add'''
# create a page window with tkinter
self.add_window = Tk()
# set title for our window
self.add_window.title("Add Contact")
# set size for our window
self.add_window.geometry("500x700")
# disable of resizable of our window
self.add_window.resizable(False, False)
# set background for our window
self.add_window.configure(background="#ffbfff")
# Create a label for message of "Please Enter the information"
self.add_window_welcome_label = Label(self.add_window, text="Please Enter the information",
background="#ffbfff", foreground="#ff03ff",
font="arial 20 bold")
# set position for the label in add window
self.add_window_welcome_label.place(x=250, y=50, anchor="center")
# Create a label for message of "Name :"
self.name_label = Label(self.add_window, text="Name :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for the label in add window
self.name_label.place(x=140, y=100, anchor="center")
# create the Entry for getting name with textbox
self.get_name = Entry(self.add_window, width=20)
# set position for the Entery in add window
self.get_name.place(x=250, y=100, anchor="center")
# Create a label for message of "family :"
self.famili_label = Label(self.add_window, text="family :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for the label in add window
self.famili_label.place(x=140, y=140, anchor="center")
# create the Entry for getting family with textbox
self.get_family = Entry(self.add_window, width=20)
# set position for the Entery in add window
self.get_family.place(x=250, y=140, anchor="center")
# Create a label for message of "cellphone :"
self.cellphone_label = Label(self.add_window, text="Cellphone :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for the label in add window
self.cellphone_label.place(x=130, y=180, anchor="center")
# create the Entry for getting cellphone with textbox
self.get_cellphone = Entry(self.add_window, width=20)
# set position for the Entery in add window
self.get_cellphone.place(x=250, y=180, anchor="center")
# Create a label for message of "Email :"
self.email_label = Label(self.add_window, text="Email :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for the label in add window
self.email_label.place(x=140, y=220, anchor="center")
# create the Entry for getting Email with textbox
self.get_email = Entry(self.add_window, width=20)
# set position for the Entery in add window
self.get_email.place(x=250, y=220, anchor="center")
# Create a label for message of "ID :"
self.id_label = Label(self.add_window, text="Id :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for the label in add window
self.id_label.place(x=140, y=260, anchor="center")
# create the Entry for getting ID with textbox
self.get_id = Entry(self.add_window, width=20)
# set position for the Entery in add window
self.get_id.place(x=250, y=260, anchor="center")
# Create a label for message of "Phone :"
self.phone_label = Label(self.add_window, text="Phone :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for the label in add window
self.phone_label.place(x=140, y=300, anchor="center")
# create the Entry for getting phone with textbox
self.get_phone = Entry(self.add_window, width=20)
# set position for the Entery in add window
self.get_phone.place(x=250, y=300, anchor="center")
# Create a label for message of "Address :"
self.address_label = Label(self.add_window, text="Address :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for the label in add window
self.address_label.place(x=140, y=340, anchor="center")
# create the Entry for getting address with textbox
self.get_address = Entry(self.add_window, width=20)
# set position for the Entery in add window
self.get_address.place(x=250, y=340, anchor="center")
# create a button object for saving information in notebook that names "save contact"
self.save_button = Button(self.add_window, text="Save Contact", background="#b30eb3",
command=self.add_button_func)
# set position for the button in add window
self.save_button.place(x=250, y=390, anchor="center")
# Create a label for Status
self.status_label = Label(self.add_window, background="#ffbfff", foreground="#ff03ff",
font="arial 20 bold")
# running the window
self.add_window.mainloop()
# define the search page function
def search_page(self) -> None:
'''This function is used to build a graphic page to search the audience'''
# create a window object from tkinter
self.search_window = Tk()
# setup the title for page
self.search_window.title("Add Contact")
# set size for for page window
self.search_window.geometry("500x700")
# disable resizable of window
self.search_window.resizable(False, False)
# set background color of window
self.search_window.configure(background="#ffbfff")
# create a label for "Please Enter the id" message
self.search_window_welcome_label = Label(self.search_window, text="Please Enter the id",
background="#ffbfff", foreground="#ff03ff",
font="arial 20 bold")
# set position for label in window
self.search_window_welcome_label.place(x=250, y=50, anchor="center")
# create a label for "id to search : " message
self.id_search_label = Label(self.search_window, text="id to search : ",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for label in window
self.id_search_label.place(x=120, y=130, anchor="center")
# create a textbox object with Entry to get id
self.id_search_entry = Entry(self.search_window, width=20)
# set position for Entry in window
self.id_search_entry.place(x=250, y=130, anchor="center")
# create a label for Status
self.status_search = Label(self.search_window, background="#ffbfff", foreground="#ff03ff",
font="arial 20 bold")
# create a button for search in window
self.search_button = Button(self.search_window, text="Search Contact", background="#b30eb3",
command=self.search_button_func)
# set position for button in window
self.search_button.place(x=240, y=180, anchor="center")
# create a label for "Name : " message
self.name_label = Label(self.search_window, text="Name :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for label in window
self.name_label.place(x=140, y=300, anchor="center")
# create a textbox object with Entry to get name
self.get_name = Entry(self.search_window, width=20)
# set position for Entry in window
self.get_name.place(x=250, y=300, anchor="center")
# create a label for "Family : " message
self.famili_label = Label(self.search_window, text="Family :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for label in window
self.famili_label.place(x=140, y=340, anchor="center")
# create a textbox object with Entry to get family
self.get_family = Entry(self.search_window, width=20)
# set position for Entry in window
self.get_family.place(x=250, y=340, anchor="center")
# create a label for "Cellphone : " message
self.cellphone_label = Label(self.search_window, text="Cellphone :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for label in window
self.cellphone_label.place(x=130, y=380, anchor="center")
# create a textbox object with Entry to get cellphone
self.get_cellphone = Entry(self.search_window, width=20)
# set position for label in window
self.get_cellphone.place(x=250, y=380, anchor="center")
# create a label for "Email : " message
self.email_label = Label(self.search_window, text="Email :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for label in window
self.email_label.place(x=140, y=420, anchor="center")
# create a textbox object with Entry to get email
self.get_email = Entry(self.search_window, width=20)
# set position for Entry in window
self.get_email.place(x=250, y=420, anchor="center")
# create a label for "Id : " message
self.id_label = Label(self.search_window, text="Id :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for label in window
self.id_label.place(x=140, y=460, anchor="center")
# create a textbox object with Entry to get id
self.get_id = Entry(self.search_window, width=20)
# set position for Entry in window
self.get_id.place(x=250, y=460, anchor="center")
# create a label for "Phone : " message
self.phone_label = Label(self.search_window, text="Phone :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for label in window
self.phone_label.place(x=140, y=500, anchor="center")
# create a textbox object with Entry to get phone
self.get_phone = Entry(self.search_window, width=20)
# set position for Entry in window
self.get_phone.place(x=250, y=500, anchor="center")
# create a label for "Address : " message
self.address_label = Label(self.search_window, text="Address :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for Label in window
self.address_label.place(x=140, y=540, anchor="center")
# create a textbox object with Entry to get address
self.get_address = Entry(self.search_window, width=20)
# set position for Entry in window
self.get_address.place(x=250, y=540, anchor="center")
# run the window
self.search_window.mainloop()
# define the edit page function
def edit_page(self) -> None:
'''This function is used to build the graphic page of the Contact Edit'''
# create a page of edit with tkinter
self.edith_window = Tk()
# set title for our page
self.edith_window.title("edit Contact")
# set size of page for our page
self.edith_window.geometry("500x700")
# desiable of resizable of window
self.edith_window.resizable(False, False)
# set background color for our page
self.edith_window.configure(background="#ffbfff")
# create a label for "Please Enter the id" message in page
self.edith_window_welcome_label = Label(self.edith_window, text="Please Enter the id",
background="#ffbfff", foreground="#ff03ff",
font="arial 20 bold")
# set position for our label in window
self.edith_window_welcome_label.place(x=250, y=50, anchor="center")
# create a label for "id to search : " message
self.id_search_label = Label(self.edith_window, text="id to search : ",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for label in window
self.id_search_label.place(x=120, y=130, anchor="center")
# create a Textbox object to get id with Entry object
self.id_search_entry = Entry(self.edith_window, width=20)
# set postion for Entry in window
self.id_search_entry.place(x=250, y=130, anchor="center")
# create a label for Status Search in window
self.status_search = Label(self.edith_window, background="#ffbfff", foreground="#ff03ff",
font="arial 20 bold")
# create a label for Status Edit in our window
self.status_edit = Label(self.edith_window, background="#ffbfff", foreground="#db0d0d",
font="arial 20 bold")
# Create a button for Searching contant
self.search_button = Button(self.edith_window, text="Search Contact", background="#b30eb3",
command=self.search_button_func)
# set position for our button in window
self.search_button.place(x=240, y=180, anchor="center")
# create a label for "Name : " message
self.name_label = Label(self.edith_window, text="Name :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set postion of label in our window
self.name_label.place(x=140, y=300, anchor="center")
# create a Textbox object to get name with Entry Object
self.get_name = Entry(self.edith_window, width=20)
# set postion for Entry in our window
self.get_name.place(x=250, y=300, anchor="center")
# Create label for "Family : " message
self.famili_label = Label(self.edith_window, text="Family :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set postion for label in our window
self.famili_label.place(x=140, y=340, anchor="center")
# create a textbox object for get family feature with Entry object
self.get_family = Entry(self.edith_window, width=20)
# set postion for Entry in window
self.get_family.place(x=250, y=340, anchor="center")
# create a label for "Cellphone : " message
self.cellphone_label = Label(self.edith_window, text="Cellphone :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for label in window
self.cellphone_label.place(x=130, y=380, anchor="center")
# create a textbox object for getting the cellphone feature with Entry object in tk
self.get_cellphone = Entry(self.edith_window, width=20)
# set position of cellphone Entry
self.get_cellphone.place(x=250, y=380, anchor="center")
# create a label for "Email : " message
self.email_label = Label(self.edith_window, text="Email :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for label in our window
self.email_label.place(x=140, y=420, anchor="center")
# create a Entry for getting the email
self.get_email = Entry(self.edith_window, width=20)
# set postion for Entry in our page
self.get_email.place(x=250, y=420, anchor="center")
# create a label for 'Id :' message
self.id_label = Label(self.edith_window, text="Id :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for label in window
self.id_label.place(x=140, y=460, anchor="center")
# create a Entry object for getting the id
self.get_id = Entry(self.edith_window, width=20)
# set position for Entry
self.get_id.place(x=250, y=460, anchor="center")
# create a label for set 'phone : ' message
self.phone_label = Label(self.edith_window, text="Phone :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for label in our label
self.phone_label.place(x=140, y=500, anchor="center")
# create a Entry for getting the phone numuber with textbox
self.get_phone = Entry(self.edith_window, width=20)
# set position for our Entry in window
self.get_phone.place(x=250, y=500, anchor="center")
# create a label for set "Address :" message on it
self.address_label = Label(self.edith_window, text="Address :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for label in window
self.address_label.place(x=140, y=540, anchor="center")
# create a entry for getting the address
self.get_address = Entry(self.edith_window, width=20)
# set position for entry in window
self.get_address.place(x=250, y=540, anchor="center")
# create a button object names 'save change' for save all chainging inforamtion
self.save_changes_button = Button(self.edith_window, text="Save Contact", background="#b30eb3",
command=self.save_change_button_func)
# set position for our button
self.save_changes_button.place(x=250, y=590, anchor="center")
# run page
self.edith_window.mainloop()
# define the delete_page function
def delete_page(self) -> None:
'''This function is used to build a graphic page of the contact page'''
# create a window object with Tkinter module
self.delete_window = Tk()
# add title for window
self.delete_window.title("delete Contact")
# set size of width and height for our label
self.delete_window.geometry("500x700")
# disable of resizable window
self.delete_window.resizable(False, False)
# set background color for window
self.delete_window.configure(background="#ffbfff")
# create a label for set "Please Enter the id" message
self.delete_window_welcome_label = Label(self.delete_window, text="Please Enter the id",
background="#ffbfff", foreground="#ff03ff",
font="arial 20 bold")
# set position for our label
self.delete_window_welcome_label.place(x=250, y=50, anchor="center")
# create a label for setting the "id to search: " message on it
self.id_search_label = Label(self.delete_window, text="id to search : ",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for label in window
self.id_search_label.place(x=120, y=130, anchor="center")
# create a Entry object for getting the id
self.id_search_entry = Entry(self.delete_window, width=20)
# set position for our Entry
self.id_search_entry.place(x=250, y=130, anchor="center")
# create a label object for setting the status situation
self.status_search = Label(self.delete_window, background="#ffbfff", foreground="#ff03ff",
font="arial 20 bold")
# set position for our label
self.status_delete = Label(self.delete_window, background="#ffbfff", foreground="#db0d0d",
font="arial 20 bold")
# create a button for search in information with name "Search Contact"
self.search_button = Button(self.delete_window, text="Search Contact", background="#b30eb3",
command=self.search_button_func)
# set position for our button
self.search_button.place(x=240, y=180, anchor="center")
# create a label for set "Name :" message
self.name_label = Label(self.delete_window, text="Name :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for label
self.name_label.place(x=140, y=300, anchor="center")
# create a Entry for getting name information
self.get_name = Entry(self.delete_window, width=20)
# set position for Entry
self.get_name.place(x=250, y=300, anchor="center")
# create a label object for setting "Family :" message
self.famili_label = Label(self.delete_window, text="Family :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for our label
self.famili_label.place(x=140, y=340, anchor="center")
# create a Entry object for getting family information
self.get_family = Entry(self.delete_window, width=20)
# set position for Entry
self.get_family.place(x=250, y=340, anchor="center")
# create a label for setting "Cellphone :" message
self.cellphone_label = Label(self.delete_window, text="Cellphone :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for label object
self.cellphone_label.place(x=130, y=380, anchor="center")
# create a Entry object for getting the cellphone number
self.get_cellphone = Entry(self.delete_window, width=20)
# set position for Entry object
self.get_cellphone.place(x=250, y=380, anchor="center")
# create a label object for setting "Email :" object
self.email_label = Label(self.delete_window, text="Email :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for label object
self.email_label.place(x=140, y=420, anchor="center")
# create a Entry object for getting the email
self.get_email = Entry(self.delete_window, width=20)
# set position for our Entry object
self.get_email.place(x=250, y=420, anchor="center")
# create a label object for setting "id" message
self.id_label = Label(self.delete_window, text="Id :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for label object
self.id_label.place(x=140, y=460, anchor="center")
# create a Entry object for getting the id information
self.get_id = Entry(self.delete_window, width=20)
# set position for Entry object
self.get_id.place(x=250, y=460, anchor="center")
# create a label object for setting the "Phone :" message
self.phone_label = Label(self.delete_window, text="Phone :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for label object
self.phone_label.place(x=140, y=500, anchor="center")
# create a Entry object for getting phone number
self.get_phone = Entry(self.delete_window, width=20)
# set position for Entry object
self.get_phone.place(x=250, y=500, anchor="center")
# create a label object for setting "Address :" message
self.address_label = Label(self.delete_window, text="Address :",
background="#ffbfff", foreground="#ff03ff",
font="arial 10 bold")
# set position for label object
self.address_label.place(x=140, y=540, anchor="center")
# create a Entry object for getting address
self.get_address = Entry(self.delete_window, width=20)
# set position for Entry object
self.get_address.place(x=250, y=540, anchor="center")
# create a button for delete a contact
self.delete_button1 = Button(self.delete_window, text="Delete Contact", background="#db0d0d",
command=self.delete_button_func)
# set postion for Entry object
self.delete_button1.place(x=250, y=590, anchor="center")
# run page
self.delete_window.mainloop()
# define the make_add_page
def make_add_page(self) -> None:
''' this function used for call the add_page function to create a window '''
# create a add_page with calling the add_page method
self.add1 = self.add_page()
# define the make_search_page
def make_search_page(self) -> None:
''' this function used for call the search_page function to create a window '''
# create a search_page with calling the search_page
self.search1 = self.search_page()
# define the make_delete_page function
def make_delete_page(self) -> None:
''' this function used for call the delete_page function to create a window '''
# create a delete_page window by calling the delete_page method
self.delete1 = self.delete_page()
# define the make_edit_page
def make_edit_page(self) -> None:
''' this function use for calling the edit_page function to create own page '''
# create edit page by calling the edit_page method
self.edit1 = self.edit_page()
# define the make_show_num
def make_show_num(self) -> None:
''' this function used calling the show_num function to create a own page '''
# create a show_numb_page object by calling the show_num method
self.show_num_page = self.show_num()
# define the show_emails
def make_show_email(self) -> None:
'''this function used for create a window to show all storage emails in our phone book'''
# create a show_email_page by calling the show_email method
self.show_email_page = self.show_email()
# define the make_show_address method
def make_show_address(self) -> None:
'''this function used for create a window that show all storage address in phonebook on it'''
# create a window to show address with calling the show_adres function
self.show_adres_page = self.show_adres()
# define the add_button_func
def add_button_func(self) -> None:
'''this function get all information that wrote in textboxes and
add them to the list as contact'''
# add any thing was in get_name Entry to Name_list
self.Name_list.append(self.get_name.get())
# add any thing was in get_family Entry to Family_list
self.famili_list.append(self.get_family.get())
# add any thing was in get_cellphone Entry to cellphone_list
self.cellphone_list.append(self.get_cellphone.get())
# add any thing was in get_email Entry to email_list
self.email_list.append(self.get_email.get())
# add any thing was in get_phone Entry to phone_list
self.phone_list.append(self.get_phone.get())
# add any thing was in get_address Entry to address_list
self.address_list.append(self.get_address.get())
# add any thing was in get_id Entry to id_list
self.id_list.append(self.get_id.get())
# fill all textboxes Entry with nothing
self.get_name.delete(0, END)
self.get_family.delete(0, END)
self.get_id.delete(0, END)
self.get_phone.delete(0, END)
self.get_address.delete(0, END)
self.get_cellphone.delete(0, END)
self.get_email.delete(0, END)
# saving the message for number of contant in our phonebook
self.num_contact["text"] = f"you have {len(self.Name_list)} contact"
# saving the message for our Status
self.status_label["text"] = "Contact Saved"
# set position for our label
self.status_label.place(x=250, y=500, anchor="center")
# define the search_button_func
def search_button_func(self) -> None:
'''this is function used for searching the contact from list
by the special id'''
# getting the specfic id from id_search_entry
id_text = self.id_search_entry.get()
# create a flag for status of founding the contact
found = 0
# searching the id one by one
for i in range(len(self.id_list)):
# check the user's id entered with all id that saved in phonebook
if self.id_list[i] == id_text:
# save the message for status of searching
self.status_search["text"] = "Contact Found"
# set position for status_label
self.status_search.place(x=250, y=220, anchor="center")
# delete all information in all textboxes in page
self.get_name.delete(0, END)
self.get_family.delete(0, END)
self.get_id.delete(0, END)
self.get_phone.delete(0, END)
self.get_address.delete(0, END)
self.get_cellphone.delete(0, END)
self.get_email.delete(0, END)
# fill all textboxes by that information saved in phonebook with that id
self.get_id.insert(0, self.id_list[i])
self.get_family.insert(0, self.famili_list[i])
self.get_phone.insert(0, self.phone_list[i])
self.get_name.insert(0, self.Name_list[i])
self.get_email.insert(0, self.email_list[i])
self.get_cellphone.insert(0, self.cellphone_list[i])
self.get_address.insert(0, self.address_list[i])
# change the situation of flag to True
found = 1
# exiting the loop
break
# checking the status of flag
if found == 0:
# showing the situation of searching with the label
self.status_search["text"] = "Contact Not Found"
# set position for our label
self.status_search.place(x=250, y=220, anchor="center")
# define the delete_button_func
def delete_button_func(self) -> None:
# getting the special id for deleting the concant
id_text = self.id_search_entry.get()
# searching the all id, one by one
for i in range(len(self.id_list)):
# checking the special id in storage id in phonebook
if self.id_list[i] == id_text:
# delete the all information from phonebook
del self.Name_list[i]
del self.famili_list[i]
del self.phone_list[i]
del self.cellphone_list[i]
del self.address_list[i]
del self.email_list[i]
del self.id_list[i]
# delete all texts from all textboxes
self.get_id.delete(0, END)
self.get_phone.delete(0, END)
self.get_name.delete(0, END)
self.get_family.delete(0, END)
self.get_email.delete(0, END)
self.get_cellphone.delete(0, END)
self.get_address.delete(0, END)
# saving the 'contact deleted' message
self.status_delete["text"] = "Contact Deleted"
# set position for our label
self.status_delete.place(x=250, y=640, anchor="center")
# changing the message from main page
self.num_contact["text"] = f"you have {len(self.Name_list)} contact"
# break the loop
break
# define the save_change_button_func
def save_change_button_func(self) -> None:
# getting the special id from own textbox
id_text = self.id_search_entry.get()
# searching all ids, one by one
for i in range(len(self.id_list)):
# checking the special id in storage ids in phonebook
if self.id_list[i] == id_text:
# saving the new information to found index contact
self.Name_list[i] = self.get_name.get()
self.famili_list[i] = self.get_family.get()
self.phone_list[i] = self.get_phone.get()
self.cellphone_list[i] = self.get_cellphone.get()
self.address_list[i] = self.get_address.get()
self.email_list[i] = self.get_email.get()
self.id_list[i] = self.get_id.get()
# delete all texts from all textboxes
self.get_id.delete(0, END)
self.get_phone.delete(0, END)
self.get_name.delete(0, END)
self.get_family.delete(0, END)
self.get_email.delete(0, END)
self.get_cellphone.delete(0, END)
self.get_address.delete(0, END)
# save the message for situation status of chaning data
self.status_edit["text"] = "Change Saved"
# set position for the label
self.status_edit.place(x=250, y=640, anchor="center")
# exiting from loop
break
# define the info_button_func
def info_button_func(self) -> None:
# showing the saved information in main page
self.info_label["text"] = self.info