Commit Graph

833 Commits

Author SHA1 Message Date
PySimpleGUI 5bab941f2d Simplified code some 2024-02-03 10:55:14 -05:00
PySimpleGUI e050af5c9e Added new State Machine Demo Program using Timer API calls 2024-02-03 10:17:47 -05:00
PySimpleGUI 61efe57572 Demo of popup_error_with_traceback (that I thought was checked in 2 years ago but wasn't...) 2024-01-24 10:31:40 -05:00
PySimpleGUI 05939b2725 Make the multiple open demo program more useful 2023-11-23 14:28:24 -05:00
PySimpleGUI fe31a0a7ed Fixed numpy deprecated problems. Checking in improvement made long ago buit forgot to check in 2023-10-16 08:57:47 -04:00
PySimpleGUI 7f485c5f78 Remove extra space accidently added (learned you can put spaces after periods in Python?) 2023-10-05 16:26:20 -04:00
PySimpleGUI 3776730709 Replaced PIL's deprecated constant ANTIALIAS with LANCZOS 2023-10-05 16:11:51 -04:00
PySimpleGUI 854bdccdd3 Allow window resizing when in single photo mode. Updated the PIL resizing to much more recent resizing code. 2023-08-10 12:44:33 -04:00
PySimpleGUI 4a883851e6 Fix in pinning demo 2023-06-09 06:31:15 -04:00
PySimpleGUI eeb95398e0 Added a function around the functional example 2023-05-29 10:21:17 -04:00
PySimpleGUI b62648aa23 Expanded class wrapper demo to explain it's not a recommended design pattern. When initially released there was no explanation accompanying the code. 2023-05-29 10:19:32 -04:00
PySimpleGUI 440a34888f Addition of right click menu erase, save image and display of crosshairs 2023-05-18 12:05:07 -04:00
PySimpleGUI cb0da5887d Changed enter_submits to True so that the bind_return_key works correctly. 2023-04-26 09:47:14 -04:00
PySimpleGUI fb5fdbdd5c Moved update animation call to after check for window closed. Was getting an error because attempt to update animation was happening after window was closed 2023-04-22 10:13:36 -04:00
PySimpleGUI 3b7a17f6b6 Demo Program to show new Watermark features 2023-03-07 20:14:08 -05:00
PySimpleGUI efa236369f New Demo Program - CPU Utilization shown on a very nice VU Meter Graphic 2023-02-28 06:27:57 -05:00
PySimpleGUI 8e6fa8100a New Demo Program - Table with checkmarks 2023-02-25 13:21:26 -05:00
PySimpleGUI a059d92c8e Added a lambda example 2023-02-11 09:08:50 -05:00
PySimpleGUI 517262690f New Demo Program Custom Images Dark Theme 2023-02-07 11:37:05 -05:00
PySimpleGUI f3270e00ec And updated version of the "Edit Me" right menu design pattern 2023-02-07 07:17:07 -05:00
PySimpleGUI 7da029ebf8 Fixed typo in docstring 2023-02-06 11:43:54 -05:00
PySimpleGUI e764cc07b8 New Demo Program - automatically save and load Input element values using User Settings API 2023-02-04 17:45:33 -05:00
PySimpleGUI de383504e0 Error handling for when no editor has been configured 2023-01-25 07:57:50 -05:00
PySimpleGUI d9e42ed2e7 Demo Program - Time Chooser (ONE more time!) 2023-01-06 16:12:40 -05:00
PySimpleGUI 2821880b3c
Delete Demo_Time_Chooser.py 2023-01-06 16:11:28 -05:00
PySimpleGUI c8d01725f1 Demo Program - Time Chooser 2023-01-06 16:09:39 -05:00
PySimpleGUI 7fdee8f91b
Delete Demo_Time_Chooser.py 2023-01-06 16:08:54 -05:00
PySimpleGUI 0c77b57659 Demo Program - Time chooser 2023-01-06 16:04:33 -05:00
PySimpleGUI 02f3ae25be Revert "Demo program of an example window to choose a time"
This reverts commit 86976f50c3.
2023-01-06 16:02:08 -05:00
PySimpleGUI c3a6db921f Revert "Added option to enable/disable manual entry"
This reverts commit 73a6629045.
2023-01-06 16:01:52 -05:00
PySimpleGUI 73a6629045 Added option to enable/disable manual entry 2023-01-06 15:53:48 -05:00
PySimpleGUI 86976f50c3 Demo program of an example window to choose a time 2023-01-06 15:49:00 -05:00
PySimpleGUI 92d77a5ba8 Make the Image element expand so that the buttons will not jump around as much. 2023-01-03 14:16:52 -05:00
PySimpleGUI 4180f59c4c Addition of Window.timer_get_active_timers to get a list of the currently active timers for a window. Added to the demo program. 2022-12-28 10:07:53 -05:00
PySimpleGUI 747ff76d08 New Demo Program using new Window.timer_stop and Window.timer_stop 2022-12-27 07:32:30 -05:00
PySimpleGUI 560ab62e88 Added Window.timer_stop_all method 2022-12-25 12:17:07 -05:00
PySimpleGUI cf27988cbb Window Timer Feature and Demo Program 2022-12-25 11:31:50 -05:00
PySimpleGUI 6e4be7bb60 New Demo Program - generate periodic timer events 2022-12-23 08:45:01 -05:00
PySimpleGUI 9d0041a73b Simplified the multithreaded demo and introduced the tuple key design pattern for threading 2022-12-19 16:55:58 -05:00
PySimpleGUI eef70d2aaf Addition of right click menu and set size of combo boxes to be 30 entries long. 2022-12-14 08:49:53 -05:00
PySimpleGUI 5accdda30f Fixed menu definition (Help should have had a list like the other entries). Added key to the menu, etc. It's been a long time since updated. 2022-12-10 16:29:28 -05:00
PySimpleGUI 70085de109 Added zoom and subsample parms to PIL function (was recently supplied in an issue as a way to simulate the subsample parm found in tkinter port) 2022-12-07 10:07:01 -05:00
PySimpleGUI d7b16be284 Removed the Base64 encode as it's not required. The raw image data can be passed directly to the Image Element 2022-12-01 13:49:33 -05:00
PySimpleGUI fac982124d New Demo Program - Display an image located at URL online (thanks to @Necrosis000 for opening an issue to ask how) 2022-11-30 08:45:39 -05:00
PySimpleGUI 331774cb5f Made version window non-blocking 2022-11-26 07:01:24 -05:00
PySimpleGUI eeeb7ac9ba New enoji into the repo, the emoji browser, etc 2022-11-23 13:54:37 -05:00
PySimpleGUI 6c00c133b8 Update to make main GUI window less visible. Added a blocking popup at the end. 2022-11-18 16:53:12 -05:00
PySimpleGUI 5133225298 New Demo Program - Make windows and PySimpleGUI calls from a thread. 2022-11-15 06:31:53 -05:00
PySimpleGUI 95fd3c53a2 New Demo Program - a multi-threaded example using a queue to send data to your application 2022-11-12 11:02:09 -05:00
PySimpleGUI 5722f1ab09 New Demo showing how to redraw figures on a Graph if the window resizes 2022-11-11 10:35:56 -05:00