commit a2ee25e549f38ef8cbb6c5a3a8706f5401e025bc
parent 5d119c960ee0208df79f479db2ad46675dc6c231
Author: therealFIGBERT <naomi@Naomis-MacBook-Air.local>
Date: Sat, 29 Jun 2019 22:01:20 -0700
Adding additional graphical changes
Diffstat:
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/figENC_MacOS.py b/figENC_MacOS.py
@@ -100,14 +100,14 @@ canvas.pack()
frame = tk.Frame(root, bg='white')
frame.place(relwidth=1, relheight=1)
-header = tk.Label(frame, text="figENC\nIndustry leading encryption by FIGBERT", bg="gray", fg="black", justify="center", font=("Arial", "24"))
+header = tk.Label(frame, text="figENC\nIndustry leading encryption by FIGBERT", bg="gray", fg="black", justify="center", font=("Arial", "24"), relief=tk.GROOVE)
header.pack(fill="x", side="top", ipady="5")
action = tk.Frame(frame, bg="white")
action.pack(fill='both')
action_label = tk.Label(action, text="Action:", bg="white", justify='left', font=("Arial", "14"))
action_label.pack()
-action_list = tk.Listbox(action, bg="white", selectmode="single", font=("Arial", "12"), height=4, bd=1)
+action_list = tk.Listbox(action, bg="white", selectmode="single", font=("Arial", "12"), height=4, bd=1, relief=tk.SUNKEN)
action_list.insert(1, "Encrypt with fresh keys")
action_list.insert(2, "Encrypt with generated keys")
action_list.insert(3, "Decrypt with generated keys")
@@ -123,16 +123,16 @@ modifiers = tk.Frame(step_two, bg="white")
modifiers.pack(fill="both")
file_label = tk.Label(modifiers, text="If you see this, the app broke", font=("Arial", "14"))
file_instructions = tk.Label(modifiers, text="Separate filepaths with colons (:)", font=("Arial", "11"))
-file_input = tk.Entry(modifiers, font=("Arial", "12"), justify=tk.CENTER, textvariable=tk.StringVar)
+file_input = tk.Entry(modifiers, font=("Arial", "12"), justify=tk.CENTER, textvariable=tk.StringVar, relief=tk.SUNKEN)
passcode_label = tk.Label(modifiers, text="If you see this, the app broke", font=("Arial", "14"))
passcode_instructions = tk.Label(modifiers, text="If you see this, the app broke", font=("Arial", "11"))
-passcode_input = tk.Entry(modifiers, font=("Arial", "12"), justify=tk.CENTER, textvariable=tk.StringVar)
+passcode_input = tk.Entry(modifiers, font=("Arial", "12"), justify=tk.CENTER, textvariable=tk.StringVar, relief=tk.SUNKEN)
save = tk.Frame(step_two, bg='white')
save.pack(fill='both')
save_label = tk.Label(save, text="Save location for keys", font=("Arial", "14"))
save_instructions = tk.Label(save, text="Save the keys to an empty folder, and store them somewhere secure\nIf other key files exist in the same folder, they will be overwritten", font=("Arial", "11"))
-save_input = tk.Entry(save, font=("Arial", "12"), justify=tk.CENTER, textvariable=tk.StringVar)
+save_input = tk.Entry(save, font=("Arial", "12"), justify=tk.CENTER, textvariable=tk.StringVar, relief=tk.SUNKEN)
submit = tk.Button(save, text="If you see this, the app broke", font=("Arial", "12"), command=lambda: go(mode=crypto_mode, save_folder=save_input.get(), target_file=file_input.get(), passkey=passcode_input.get()))
root.mainloop()
\ No newline at end of file