wxasync icon indicating copy to clipboard operation
wxasync copied to clipboard

asyncio support for wxpython

Results 8 wxasync issues
Sort by recently updated
recently updated
newest added

I can't see anyway to stop a coroutine started via ```StartCoroutine()``` ? I've got a long running task, which runs it's own "while True" loop, with a condition check, but...

I just checked out the latest master and tried running the examples with latest Python 3.9 and wxPython snapshot on macOS. I tried with Python 3.10 too. These might be...

On macOS, the behavior of `.ShowWindowModal()` is quite useful as it allows dialogs to be shown within their parent window rather than as a separate window I am requesting a...

Hi, I'm grateful for your work. Allowing async/await in wxPython is great. Unfortunately, while testing, I find a pretty strange sluggishness which I'm unable to explain. Is it because I'm...

Example log below showing captured windows events. Only block when holding down mouse button on title bar. ``` 0 --> 10008 -31964 --> 10104 -31964 --> 10090 -31964 --> 10089...

Versions ``` Python 3.11.4 (tags/v3.11.4:d2340ef, Jun 7 2023, 05:45:37) [MSC v.1934 64 bit (AMD64)] on win32 wxasync 0.49 wxPython 4.2.2a1.dev5600+b67eef25 msw (phoenix) wxWidgets 3.2.2.1 ``` Running src/example/more_dialogs.py, clicking on HtmlHelpDialog...

```py def CreatePopupMenu(self, event=None): menu = wx.Menu() item_open = menu.Append(wx.ID_ANY, "Open App") item_about = menu.Append(wx.ID_ANY, "About…") item_settings = menu.Append(wx.ID_SETUP, "Settings…") item_exit = menu.Append(wx.ID_EXIT, "Exit") self.Bind(wx.EVT_MENU, self.on_open_app, item_open) self.Bind(wx.EVT_MENU, self.on_about, item_about)...