-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuddygui.py
327 lines (259 loc) · 10.6 KB
/
buddygui.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
#!/usr/bin/env python3
#Budget Buddy (GUI Version)
#A Money Management Tool
import tkinter as tk
import tkinter.filedialog as tkFileDialog
root = tk.Tk()
root.title("Budget Buddy")
root.geometry("510x636")
root.option_add("*Font", "TkDefaultFont 9")
root.columnconfigure(0, weight=1)
root.rowconfigure(0, weight=1)
#root.resizable(0,0)
#Main Frame
mainframe = tk.Frame(root, highlightcolor="#4D4D4D",
highlightbackground="#4D4D4D",
highlightthickness=1,
relief='flat')
mainframe.grid(sticky='n')
#titles
lab = tk.Label(mainframe, text="Budget Buddy", font='Arial 10 bold')
lab.grid(column=0, row=0, padx=12, pady=6, sticky='nw')
lab1 = tk.Label(mainframe, text="A Money Management Tool\n")
lab1.grid(column=0, row=1, padx=12, pady=4, sticky='nw')
#month
mon = tk.Label(mainframe, text="Month:\n")
mon.grid(column=0, row=2, padx=12, pady=4, sticky='nw')
mon = tk.Entry(mainframe, bd=1, width='11', justify='left')
mon.grid(column=0, row=2, padx=2, pady=4, sticky='n')
mon.focus_set()
lab2 = tk.Label(mainframe, text="Enter Income & Expenses", fg='#008000')
lab2.grid(column=0, row=3, padx=12, pady=4, sticky='nw')
lab3 = tk.Label(mainframe, text="Numbers Only", fg='#008000')
lab3.grid(column=1, row=3, padx=6, pady=4, sticky='nw')
stat = tk.Label(mainframe, text=" If None Enter 0", fg='#008000')
stat.grid(column=2, row=3, padx=6, pady=4, sticky='new')
#functions
def getTotal():
res = (int(a1.get())+int(a2.get())+int(a3.get())
+int(a4.get())+int(a5.get())+int(a6.get())
+int(a7.get())+int(a8.get())+int(a9.get()))
myTotal.set(res)
myTotal=tk.StringVar();
def getRemains():
rem = int(inca.get())-int(a10.get())
myRemains.set(rem)
myRemains=tk.StringVar();
def new_Remains():
new = int(a12.get())-int(a14.get())+int(a15.get())
newRemains.set(new)
newRemains=tk.StringVar();
def clear_fields(event=None):
inca.delete('0', 'end')
a1.delete('0', 'end')
a2.delete('0', 'end')
a3.delete('0', 'end')
a4.delete('0', 'end')
a5.delete('0', 'end')
a6.delete('0', 'end')
a7.delete('0', 'end')
a8.delete('0', 'end')
a9.delete('0', 'end')
a10.delete('0', 'end')
a12.delete('0', 'end')
a14.delete('0', 'end')
a15.delete('0', 'end')
a16.delete('0', 'end')
myTotal.set("")
myRemains.set("")
newRemains.set("")
inca.focus_set()
#file menu
def exit_com(event=None):
win = tk.Toplevel()
win.title("Exit")
xit = tk.Label(win, text="\n\nAre you sure you want to exit?\n")
xit.pack()
ex = tk.Button(win, text="Exit", width=4, command=root.destroy)
ex.pack(side='left', padx=28, pady=4)
ex.focus_set()
ex.bind("<Return>", (lambda event: root.destroy()))
can = tk.Button(win, text="Cancel", width=4, command=win.destroy)
can.pack(side='right', padx=28, pady=4)
win.transient(root)
win.geometry('240x120')
win.wait_window()
def save_com(event=None):
file = tkFileDialog.asksaveasfile(mode='w', defaultextension='.txt',
filetypes = (("Text Files", "*.txt"),("All Files", "*.*")))
if file:
file.write("\n")
file.write("\tBudget Buddy Results " + "\n\n")
file.write("\tMonth: " + (mon.get()) + "\n\n\n")
file.write("\tMonthly Income: " + (inca.get().rjust(4)) + "\n\n")
file.write("\t Rent/Mortgage: " + (a1.get().rjust(4)) + "\n")
file.write("\t Electric: " + (a2.get().rjust(4)) + "\n")
file.write("\t Internet/TV: " + (a3.get().rjust(4)) + "\n")
file.write("\t Car Insurance: " + (a4.get().rjust(4)) + "\n")
file.write("\t Food/Groceries: " + (a5.get().rjust(4)) + "\n")
file.write("\t Gasoline: " + (a6.get().rjust(4)) + "\n")
file.write("\t Personal Items: " + (a7.get().rjust(4)) + "\n")
file.write("\t Cell Phone: " + (a8.get().rjust(4)) + "\n")
file.write("\t Other Expenses: " + (a9.get().rjust(4)) + "\n\n")
file.write("\t Total Costs: " + (a10.get().rjust(4)) + "\n")
file.write("\t Remainder: " + (a12.get().rjust(4)) + "\n\n")
file.write("\tInto Savings Acct: " + (a14.get().rjust(4)) + "\n")
file.write("\tAdditional Income: " + (a15.get().rjust(4)) + "\n\n")
file.write("\t New Remainder: " + (a16.get().rjust(4)) + "\n")
file.close()
#help menu
def about_com(event=None):
win = tk.Toplevel()
win.title("About")
bout = tk.Label(win, text="""\n\nBudget Buddy
\nA Money Management Tool
\nCalculates Income & Expenses
\n\nMade in Python\n\n""")
bout.pack()
clo = tk.Button(win, text="Close", width=4, command=win.destroy)
clo.pack(padx=8, pady=4)
win.transient(root)
win.geometry('300x220+638+298')
win.wait_window()
def trouble_com(event=None):
win = tk.Toplevel()
win.title("Troubleshooting")
trouble = tk.Label(win, justify='left', text="""\n\n
This program will give a rough estimate of
how much you spend on a monthly basis.
All entry fields must contain a number
in order for program to work properly.
Whole Numbers Only. If none, enter zero (0)\n
Click on 'Total Costs' when you get there.
This will get the Total Costs for the month,
and the Remainder of your Monthly Income.
Fill in the next two fields (if zero, enter 0)
this will show New Remainder of income.
\n\n""")
trouble.pack()
cls = tk.Button(win, text="Close", command=win.destroy)
cls.pack()
win.transient(root)
win.geometry('354x350+612+230')
win.wait_window()
#Labels/Entry Fields
# q = question (label)
# a = answer (entry field)
#income
incq = tk.Label(mainframe, text="Monthly Income:\n")
incq.grid(column=0, row=4, padx=12, pady=4, sticky='nw')
inca = tk.Entry(mainframe, bd=1, width='8', justify='right')
inca.grid(column=1, row=4, padx=8, pady=4, sticky='nw')
#rent
q1 = tk.Label(mainframe, text="Rent/Mortgage:")
q1.grid(column=0, row=5, padx=28, pady=3, sticky='nw')
a1 = tk.Entry(mainframe, bd=1, width='8', justify='right')
a1.grid(column=1, row=5, padx=8, pady=3, sticky='nw')
#electric
q2 = tk.Label(mainframe, text="Electric:")
q2.grid(column=0, row=6, padx=28, pady=3, sticky='nw')
a2 = tk.Entry(mainframe, bd=1, width='8', justify='right')
a2.grid(column=1, row=6, padx=8, pady=3, sticky='nw')
#internet/tv
q3 = tk.Label(mainframe, text="Internet/TV:")
q3.grid(column=0, row=7, padx=28, pady=3, sticky='nw')
a3 = tk.Entry(mainframe, bd=1, width='8', justify='right')
a3.grid(column=1, row=7, padx=8, pady=3, sticky='nw')
#car ins
q4 = tk.Label(mainframe, text="Car Insurance:")
q4.grid(column=0, row=8, padx=28, pady=3, sticky='nw')
a4 = tk.Entry(mainframe, bd=1, width='8', justify='right')
a4.grid(column=1, row=8, padx=8, pady=3, sticky='nw')
#food
q5 = tk.Label(mainframe, text="Food/Groceries:")
q5.grid(column=0, row=9, padx=28, pady=3, sticky='nw')
a5 = tk.Entry(mainframe, bd=1, width='8', justify='right')
a5.grid(column=1, row=9, padx=8, pady=3, sticky='nw')
#gas
q6 = tk.Label(mainframe, text="Gasoline:")
q6.grid(column=0, row=10, padx=28, pady=3, sticky='nw')
a6 = tk.Entry(mainframe, bd=1, width='8', justify='right')
a6.grid(column=1, row=10, padx=8, pady=3, sticky='nw')
#personal
q7 = tk.Label(mainframe, text="Personal Items:")
q7.grid(column=0, row=11, padx=28, pady=3, sticky='nw')
a7 = tk.Entry(mainframe, bd=1, width='8', justify='right')
a7.grid(column=1, row=11, padx=8, pady=3, sticky='nw')
#cell
q8 = tk.Label(mainframe, text="Cell Phone:")
q8.grid(column=0, row=12, padx=28, pady=3, sticky='nw')
a8 = tk.Entry(mainframe, bd=1, width='8', justify='right')
a8.grid(column=1, row=12, padx=8, pady=3, sticky='nw')
#other
q9 = tk.Label(mainframe, text="Other Expenses:\n")
q9.grid(column=0, row=13, padx=28, pady=3, sticky='nw')
a9 = tk.Entry(mainframe, bd=1, width='8', justify='right')
a9.grid(column=1, row=13, padx=8, pady=3, sticky='nw')
#total costs
q10 = tk.Label(mainframe, text="\t\tTotal Costs:")
q10.grid(column=0, row=14, padx=8, pady=4, sticky='nw')
a10 = tk.Entry(mainframe, bd=1, width='8', justify='right', textvariable=myTotal)
a10.grid(column=1, row=14, padx=8, pady=4, sticky='nw')
a10.config(state='readonly')
#remains
q12 = tk.Label(mainframe, text="\t\tRemainder:\n")
q12.grid(column=0, row=15, padx=8, pady=4, sticky='nw')
a12 = tk.Entry(mainframe, bd=1, width='8', justify='right', textvariable=myRemains)
a12.grid(column=1, row=15, padx=8, pady=4, sticky='nw')
a12.config(state='readonly')
#intosavings
q14 = tk.Label(mainframe, text="How much into savings account?")
q14.grid(column=0, row=16, padx=12, pady=3, sticky='nw')
a14 = tk.Entry(mainframe, bd=1, width='8', justify='right')
a14.grid(column=1, row=16, padx=8, pady=3, sticky='nw')
#additional
q15 = tk.Label(mainframe, text="List all additional earned income:\n")
q15.grid(column=0, row=17, padx=12, pady=3, sticky='nw')
a15 = tk.Entry(mainframe, bd=1, width='8', justify='right')
a15.grid(column=1, row=17, padx=8, pady=3, sticky='nw')
#new remainder
q16 = tk.Label(mainframe, text="\t\tNew Remainder:\n")
q16.grid(column=0, row=18, padx=8, pady=4, sticky='nw')
a16 = tk.Entry(mainframe, bd=1, width='8', justify='right', textvariable=newRemains)
a16.grid(column=1, row=18, padx=8, pady=4, sticky='nw')
a16.config(state='readonly')
#buttons (column 2)
b1 = tk.Button(mainframe, text="Total Costs ", command=lambda: [getTotal(), getRemains()])
b1.grid(column=2, row=14, padx=28, pady=0, sticky='nw')
b2 = tk.Button(mainframe, text="Remainder ", command=new_Remains)
b2.grid(column=2, row=18, padx=28, pady=0, sticky='nw')
b3 = tk.Button(mainframe, text="Clear Fields", command=clear_fields)
b3.grid(column=2, row=5, padx=28, pady=0, sticky='nw')
spacer = tk.Label(mainframe, text="")
spacer.grid(column=3, row=19, padx=12, pady=8, sticky='nw')
#Menubar
menu = tk.Menu(root, bd=1, relief='flat')
root.config(menu=menu, bd=2)
#Filemenu
filemenu = tk.Menu(menu, tearoff=0)
menu.add_cascade(label="File ", menu=filemenu)
filemenu.add_command(label="Clear Fields",
command=clear_fields,
accelerator="Ctrl+C ".rjust(8))
filemenu.add_command(label="Save As",
command=save_com,
accelerator="Ctrl+S ".rjust(8))
filemenu.add_command(label="Exit",
command=exit_com, underline=1,
accelerator="Ctrl+Q ".rjust(8))
#Helpmenu
helpmenu = tk.Menu(menu, tearoff=0)
menu.add_cascade(label="Help ", menu=helpmenu)
helpmenu.add_command(label="About", command=about_com)
helpmenu.add_command(label="Troubleshooting", command=trouble_com)
#bindings
root.bind_all('<Control-c>', clear_fields)
root.bind_all('<Control-s>', save_com)
root.bind_all('<Control-q>', exit_com)
root.protocol("WM_DELETE_WINDOW")
root.mainloop()