Update Uptated-Prototype/PiperTTS-GUI-Test.py
This commit is contained in:
@@ -241,10 +241,10 @@ C_Button_previous.grid(row=1, column=3)
|
||||
C_Button_Next.grid(row=1, column=4)
|
||||
|
||||
# Prefrences stuff
|
||||
GUI_Combobox_1_Label = Label(Prefrences_Frame, text="Language?")
|
||||
GUI_Combobox_1 = ttk.Combobox(Prefrences_Frame)
|
||||
GUI_Combobox_2_Label = Label(Prefrences_Frame, text="Voice?")
|
||||
GUI_Combobox_2 = ttk.Combobox(Prefrences_Frame)
|
||||
GUI_Combobox_1_Label = Label(Prefrences_Frame, text="Language?", side="left")
|
||||
GUI_Combobox_1 = ttk.Combobox(Prefrences_Frame, side="left")
|
||||
GUI_Combobox_2_Label = Label(Prefrences_Frame, text="Voice?", side="left")
|
||||
GUI_Combobox_2 = ttk.Combobox(Prefrences_Frame, side="left")
|
||||
GUI_Spinbox_1_Label = Label(Prefrences_Frame, text="volume?")
|
||||
GUI_Spinbox_1 = ttk.Spinbox(Prefrences_Frame, from_ = 1, to = 100)
|
||||
GUI_Spinbox_2_Label = Label(Prefrences_Frame, text="length_scale?")
|
||||
@@ -283,11 +283,11 @@ File_Toolbar.add_command(label="Exit", command=Root_Window.quit)
|
||||
#Creating Playback menu for Toolbar
|
||||
Playback_Toolbar = Menu(Root_Toolbar, tearoff=False)
|
||||
Root_Toolbar.add_cascade(label="Playback", menu=Playback_Toolbar)
|
||||
Playback_Toolbar.add_command(label="▶\tPlay", command=PiperTTS_GUI_Play)
|
||||
Playback_Toolbar.add_command(label="⏸\tPause", command=PiperTTS_GUI_Pause)
|
||||
Playback_Toolbar.add_command(label="⏹\tStop", command=PiperTTS_GUI_Stop)
|
||||
Playback_Toolbar.add_command(label="⏮\tPrevious", command=PiperTTS_GUI_Previous)
|
||||
Playback_Toolbar.add_command(label="⏭\tNext", command=PiperTTS_GUI_Next)
|
||||
Playback_Toolbar.add_command(label="▶ Play", command=PiperTTS_GUI_Play)
|
||||
Playback_Toolbar.add_command(label="⏸ Pause", command=PiperTTS_GUI_Pause)
|
||||
Playback_Toolbar.add_command(label="⏹ Stop", command=PiperTTS_GUI_Stop)
|
||||
Playback_Toolbar.add_command(label="⏮ Previous", command=PiperTTS_GUI_Previous)
|
||||
Playback_Toolbar.add_command(label="⏭ Next", command=PiperTTS_GUI_Next)
|
||||
#Creating Tools menu for Toolbar
|
||||
Tools_Toolbar = Menu(Root_Toolbar, tearoff=False)
|
||||
Root_Toolbar.add_cascade(label="Tools", menu=Tools_Toolbar)
|
||||
@@ -297,7 +297,6 @@ Tools_Toolbar.add_separator()
|
||||
Tools_Toolbar.add_command(label="Randomize Text", command=PiperTTS_GUI_Randomize_Text)
|
||||
Tools_Toolbar.add_command(label="Reverse Text", command=PiperTTS_GUI_Reverse_Text)
|
||||
Tools_Toolbar.add_separator()
|
||||
|
||||
Tools_Toolbar.add_command(label="Prefrences", command=PiperTTS_GUI_Set_Prefrences)
|
||||
|
||||
# End of Code - Emd of Tkinter loop
|
||||
|
||||
Reference in New Issue
Block a user