Manually moving from Dev Latest on PC

This commit is contained in:
MikeTheWatchGuy 2018-08-21 19:10:26 -04:00
parent eb3e21e8d1
commit c765f1f6f7
4 changed files with 16 additions and 36 deletions

View File

@ -1,26 +1,23 @@
import sys
import PySimpleGUI as sg import PySimpleGUI as sg
# Recipe for getting keys, one at a time as they are released # Recipe for getting keys, one at a time as they are released
# If want to use the space bar, then be sure and disable the "default focus" # If want to use the space bar, then be sure and disable the "default focus"
with sg.FlexForm('Realtime Keyboard Test', return_keyboard_events=True, use_default_focus=False) as form: with sg.FlexForm("Keyboard Test", return_keyboard_events=True, use_default_focus=False) as form:
text_elem = sg.Text('', size=(12,1)) text_elem = sg.Text("", size=(18,1))
layout = [[sg.Text('Press a key')], layout = [[sg.Text("Press a key or scroll mouse")],
[text_elem], [text_elem],
[sg.SimpleButton('OK')]] [sg.SimpleButton("OK")]]
form.Layout(layout) form.Layout(layout)
# ---===--- Loop taking in user input --- # # ---===--- Loop taking in user input --- #
while True: while True:
button, value = form.Read() button, value = form.ReadNonBlocking()
if button == 'OK': if button == "OK" or (button is None and value is None):
print(button, 'exiting') print(button, "exiting")
break break
if button is not None: if button is not None:
text_elem.Update(button) text_elem.Update(button)
else:
break

View File

@ -1,19 +1,16 @@
import PySimpleGUI as sg import PySimpleGUI as sg
# Recipe for getting a continuous stream of keys when using a non-blocking form with sg.FlexForm("Realtime Keyboard Test", return_keyboard_events=True, use_default_focus=False) as form:
# If want to use the space bar, then be sure and disable the "default focus" layout = [[sg.Text("Hold down a key")],
[sg.SimpleButton("OK")]]
with sg.FlexForm('Realtime Keyboard Test', return_keyboard_events=True, use_default_focus=False) as form:
layout = [[sg.Text('Hold down a key')],
[sg.SimpleButton('OK')]]
form.Layout(layout) form.Layout(layout)
# ---===--- Loop taking in user input --- #
while True: while True:
button, value = form.ReadNonBlocking() button, value = form.ReadNonBlocking()
if button == 'OK': if button == "OK":
print(button, value, 'exiting') print(button, value, "exiting")
break break
if button is not None: if button is not None:
print(button) print(button)

View File

@ -37,6 +37,8 @@ import fitz
import PySimpleGUI as sg import PySimpleGUI as sg
from binascii import hexlify from binascii import hexlify
sg.ChangeLookAndFeel('GreenTan')
if len(sys.argv) == 1: if len(sys.argv) == 1:
rc, fname = sg.GetFileBox('PDF Browser', 'PDF file to open', file_types=(("PDF Files", "*.pdf"),)) rc, fname = sg.GetFileBox('PDF Browser', 'PDF file to open', file_types=(("PDF Files", "*.pdf"),))
if rc is False: if rc is False:
@ -126,7 +128,7 @@ while True:
if button is None: if button is None:
continue continue
if button in ("Escape:27"): # this spares me a 'Quit' button! if button in ("Escape:27",): # this spares me a 'Quit' button!
break break
# print("hex(button)", hexlify(button.encode())) # print("hex(button)", hexlify(button.encode()))
if button[0] == chr(13): # surprise: this is 'Enter'! if button[0] == chr(13): # surprise: this is 'Enter'!

View File

@ -867,10 +867,6 @@ class FlexForm:
''' '''
Display a user defined for and return the filled in data Display a user defined for and return the filled in data
''' '''
<<<<<<< HEAD
=======
>>>>>>> 531b32ab66746c9f4b6acd2ea8b6d113cb235827
def __init__(self, title, default_element_size=(DEFAULT_ELEMENT_SIZE[0], DEFAULT_ELEMENT_SIZE[1]), auto_size_text=None, auto_size_buttons=None, scale=(None, None), location=(None, None), button_color=None, font=None, progress_bar_color=(None, None), background_color=None, is_tabbed_form=False, border_depth=None, auto_close=False, auto_close_duration=DEFAULT_AUTOCLOSE_TIME, icon=DEFAULT_WINDOW_ICON, return_keyboard_events=False, use_default_focus=True, text_justification=None): def __init__(self, title, default_element_size=(DEFAULT_ELEMENT_SIZE[0], DEFAULT_ELEMENT_SIZE[1]), auto_size_text=None, auto_size_buttons=None, scale=(None, None), location=(None, None), button_color=None, font=None, progress_bar_color=(None, None), background_color=None, is_tabbed_form=False, border_depth=None, auto_close=False, auto_close_duration=DEFAULT_AUTOCLOSE_TIME, icon=DEFAULT_WINDOW_ICON, return_keyboard_events=False, use_default_focus=True, text_justification=None):
self.AutoSizeText = auto_size_text if auto_size_text is not None else DEFAULT_AUTOSIZE_TEXT self.AutoSizeText = auto_size_text if auto_size_text is not None else DEFAULT_AUTOSIZE_TEXT
self.AutoSizeButtons = auto_size_buttons if auto_size_buttons is not None else DEFAULT_AUTOSIZE_BUTTONS self.AutoSizeButtons = auto_size_buttons if auto_size_buttons is not None else DEFAULT_AUTOSIZE_BUTTONS
@ -1038,10 +1034,6 @@ class FlexForm:
return BuildResults(self, False, self) return BuildResults(self, False, self)
def KeyboardCallback(self, event ): def KeyboardCallback(self, event ):
<<<<<<< HEAD
=======
>>>>>>> 531b32ab66746c9f4b6acd2ea8b6d113cb235827
self.LastButtonClicked = None self.LastButtonClicked = None
self.FormRemainedOpen = True self.FormRemainedOpen = True
if event.char != '': if event.char != '':
@ -1060,10 +1052,6 @@ class FlexForm:
BuildResults(self, False, self) BuildResults(self, False, self)
self.TKroot.quit() self.TKroot.quit()
<<<<<<< HEAD
=======
>>>>>>> 531b32ab66746c9f4b6acd2ea8b6d113cb235827
def _Close(self): def _Close(self):
try: try:
@ -1826,10 +1814,6 @@ def StartupTK(my_flex_form):
# root.bind('<Destroy>', MyFlexForm.DestroyedCallback()) # root.bind('<Destroy>', MyFlexForm.DestroyedCallback())
ConvertFlexToTK(my_flex_form) ConvertFlexToTK(my_flex_form)
my_flex_form.SetIcon(my_flex_form.WindowIcon) my_flex_form.SetIcon(my_flex_form.WindowIcon)
<<<<<<< HEAD
=======
>>>>>>> 531b32ab66746c9f4b6acd2ea8b6d113cb235827
if my_flex_form.ReturnKeyboardEvents and not my_flex_form.NonBlocking: if my_flex_form.ReturnKeyboardEvents and not my_flex_form.NonBlocking:
root.bind("<KeyRelease>", my_flex_form.KeyboardCallback) root.bind("<KeyRelease>", my_flex_form.KeyboardCallback)
root.bind("<MouseWheel>", my_flex_form.MouseWheelCallback) root.bind("<MouseWheel>", my_flex_form.MouseWheelCallback)