started work on the individual pages of the notebook
This commit is contained in:
parent
b650b0c8b7
commit
7aa6112163
1 changed files with 26 additions and 3 deletions
29
wizard.py
29
wizard.py
|
@ -6,6 +6,8 @@ import urllib
|
||||||
|
|
||||||
#https://github.com/Lynnesbian/mstdn-ebooks/archive/master.zip
|
#https://github.com/Lynnesbian/mstdn-ebooks/archive/master.zip
|
||||||
|
|
||||||
|
# MAIN GUI
|
||||||
|
|
||||||
root = Tk()
|
root = Tk()
|
||||||
root.title = "mstdn-ebooks Setup Wizard"
|
root.title = "mstdn-ebooks Setup Wizard"
|
||||||
frame = ttk.Frame(root)
|
frame = ttk.Frame(root)
|
||||||
|
@ -15,13 +17,34 @@ btn_cancel = ttk.Button(frm_button_box, text = "Cancel")
|
||||||
btn_back = ttk.Button(frm_button_box, text = "Back")
|
btn_back = ttk.Button(frm_button_box, text = "Back")
|
||||||
btn_next = ttk.Button(frm_button_box, text = "Next")
|
btn_next = ttk.Button(frm_button_box, text = "Next")
|
||||||
|
|
||||||
|
pages = []
|
||||||
|
for i in ["Welcome", "Select instance", "Create account", "Paste link", "Confirm follows", "Set info", "Install Python", "Install mstdn-ebooks", "Download toots", "Schedule automatic posting", "Enable replies", "Finished"]:
|
||||||
|
#create pages
|
||||||
|
pages.append(ttk.Frame(nb))
|
||||||
|
nb.add(pages[len(pages) - 1], text = i, state="hidden")
|
||||||
|
|
||||||
nb.pack(fill = "both", expand = True)
|
nb.pack(fill = "both", expand = True)
|
||||||
frm_button_box.pack()
|
frm_button_box.pack()
|
||||||
|
|
||||||
btn_cancel.grid(column = 0, row = 0)
|
btn_cancel.grid(column = 0, row = 0, sticky="W")
|
||||||
btn_back.grid(column = 1, row = 0)
|
btn_back.grid(column = 1, row = 0, sticky="E")
|
||||||
btn_next.grid(column = 2, row = 0)
|
btn_next.grid(column = 2, row = 0, sticky="E")
|
||||||
|
|
||||||
frame.pack(fill = "both", expand = True)
|
frame.pack(fill = "both", expand = True)
|
||||||
|
|
||||||
|
# PAGES
|
||||||
|
# Welcome
|
||||||
|
# Select instance
|
||||||
|
# Create account
|
||||||
|
# Paste link
|
||||||
|
# Confirm follows
|
||||||
|
# Set info
|
||||||
|
# Install Python
|
||||||
|
# Install mstdn-ebooks
|
||||||
|
# Download toots
|
||||||
|
# Schedule automatic posting
|
||||||
|
# Enable replies
|
||||||
|
# Finished
|
||||||
|
|
||||||
|
|
||||||
root.mainloop()
|
root.mainloop()
|
||||||
|
|
Loading…
Reference in a new issue