Hello all,

I’m trying to get into GUI programming, but am hesitating on using a Python library to make my first barebones program. My goal is to code basic buttons and understand how operating systems implement the way they draw windows for applications.

I have coded mostly in scientific libraries or high-level languages that are fairly simple (Python, Matlab, Julia)… Also am familiar with basic concepts and syntax from C.

Looking for recommendations to start. I am happy to learn a new PL. Interested in writing code for legacy hardware and mobile. Bonus if the codes are general enough to be written for most displays one could interact with.

  • KindaABigDyl@programming.dev
    link
    fedilink
    arrow-up
    10
    ·
    edit-2
    2 days ago

    Slint

    I really like Slint.

    It has Python bindings, tho you wouldn’t know it from the docs as it’s brand new bindings.

    However, it does WORK, and it works well.

    Just look for python files in the examples and reference the slint docs (it uses its own UI lang for that stuff anyway).

    I’m currently making an application in Python using Slint, and I really like it.

    It also supports embedded systems, the web, and multiple languages, AND since it has its own UI lang, you can reuse parts of your UI code across different codebases

    It seems to suit your use case.

    Godot

    Other than that, I second Godot.

    HOWEVER

    Godot’s GD Script is not Python but rather a Python-like language. (in fact, in some ways, I’m glad it’s not; there are things I prefer in GD Script).

    This is important as you may want to use specific Python libraries which won’t work with Godot!

    You can, however, use GD Native to bind C++ code and thus C++ libraries, so you’ll still be able to get done whatever you need to get done.

    Iced

    If you’re not tied to Python, then I recommend the Rust library Iced as it is a very intuitive system. I really enjoy working with it.

    Although, that said, Slint has great support for Rust, so maybe I’d recommend Slint anyway if you were gonna change language.

    Warning Against Legacy

    Avoid GTK, Qt, and TK at all costs imo. Also WinForms if ur on Windows.

    They’re old and crusty, and their APIs suck to use, even modern versions, and despite being aged, they’re buggy still, not robust “tried-and-true” methods.

    It’s also hard to do dynamic stuff with them.

    Just not well designed systems. Important, valuable to know bc they’re used all over, but not well designed

    Immediate

    I would also try ImGUI.

    It’s meant more for gamedev UIs rather than Apps themselves (tho I’ve made a couple in it)

    BUT

    It’s a totally different way of doing UI called “Immediate” bc you program the elements in a big loop, rather than event driven.

    It’s interesting and worth trying as a learning experience

    React

    And ofc, the Javascript/Electron world is huge and React is very popular with lots of tools. At least read up on it.

    • fossphi@lemm.ee
      link
      fedilink
      English
      arrow-up
      6
      ·
      2 days ago

      Very interesting of you to call gtk and qt legacy . Is this a common belief? I’m surprised to see this and never came across it before

      • KindaABigDyl@programming.dev
        link
        fedilink
        arrow-up
        1
        ·
        edit-2
        1 day ago

        The modern version of Gtk and its APIs started with the switch to Cairo back in Gtk 2.8 circa 2005. While Gtk 3 and 4 have undoubtedly improved upon Gtk 2, they fundamentally still work in a similar paradigm and still have all the crust of a 20 year old library. Like most old software projects, it has some level of backwards compatibility and deprecates and adds slowly. Gtk is, like, the definition of legacy, and Qt is in a similar boat. They’re OLD old.