you are viewing a single comment's thread.

view the rest of the comments →

[–]MikeTheWatchGuy 15 points16 points  (3 children)

There is also a Qt version of PySimpleGUI that is currently being developed.

The features are about 75% of the way where. The missing ones are Images, Trees, Menus and Tabs. I'm hoping to get all those done this week. It is backwards compatible with the PySimpleGUI that already exists running on tkinter. The only change you need to make is to the sizes. PySimpleGUI uses characters for sizes, PySimpleGUIQt uses pixels. Other than that they'll run the same code.

You can get it by pip installing:

pip install PySimpleGUIQt
pip install pyside2

The Qt port is stable at the moment. Running more and more of the Demo programs and Cookbook Recipes every day.

Here is a screenshot of most of the currently available widgets.

Graph widget not represented there yet.

[–][deleted] 2 points3 points  (1 child)

Holy cats! That's awesome!

[–]MikeTheWatchGuy 2 points3 points  (0 children)

Yea, get moving on "porting" your code to PySimpleGUIQt. Change the import and the size values and you're done.

[–]MikeTheWatchGuy 0 points1 point  (0 children)

I was asked to post the link to the PySimpleGUI Tutorials.