Re: Another XLibre and/or Wayland subthread
Lawrence D’Oliveiro <[email protected]> Tue, 28 Jul 2026 04:38:06 -0000 (UTC)
| Newsgroups | comp.os.linux.misc |
|---|---|
| Organization | A noiseless patient Spider |
| Message-ID | <[email protected]> |
On Tue, 28 Jul 2026 04:11:35 GMT, Charlie Gibbs wrote: > I haven't done much GUI programming in Linux. I'd like to port my > Windows stuff and I've done some experimenting, but I wound up using > GTK instead of Qt simply because only GTK has C bindings and I > didn't want to have to rewrite everything in C++. I’ve been using GTK from Python almost by default. The “GI Repository” system provides good bindings, for Python and other high-level languages. I wanted a GUI that had a decent event loop -- i.e. poll(2)-style event handling, not busy-waiting, so that ruled out Tkinter. Currently I have been experimenting a bit with this <https://pywebview.flowrl.com/>.