I’ve seen that a few people have implemented Tkinter and wxpython.
What is the best option to integrate with a package, including unmentioned alternatives?
( best == easy to implement + least requirements on user side + cross-platform )
Basically, what I’m looking to implement is a simple toggle popup, which can be positioned relative to the user screen:
Ideally, the GUI will be capable of displaying borderless windows to achieve the effect shown above.
I have worked with view.show_popup, but find it’s location parameter to be rather limited.
The issue is that location is relative to the active document and seems to correspond to characters in the document, rather than any x or y coordinate. I’d prefer to work with absolute coordinates, in order to easily center GUI positions.
Apart from the toggle popup, I’d also like to experiment with interface options related to some plugins I’m working on.
