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.

  • MonkderVierte@lemmy.ml
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    2 days ago

    Well, in short: Display Managers (X Wayland, Android’s Surface Flinger) have a set of instructions and translate them into lines, characters, etc.

    GUI frameworks are basically a simple vector graphics application (send those instructions) with bitmap-support and additionally pre-programmed sequences like, pressing a button. And that set of pre-programmed sequences and how it signsl-handling etc is organized, determines the usecases the framework is suited for.