this post was submitted on 03 Apr 2025
59 points (98.4% liked)

Linux

52784 readers
486 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

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.

all 33 comments
sorted by: hot top controversial new old
[–] eveninghere@beehaw.org 1 points 5 hours ago

How OS

Pretty much Qt. You can learn how different OSes have different way.

However, modern GUI programming is happening on the web and mobile phones. React is popular, but it's too high level and their XML-based approach is horrifically designed. Swift UI is nice, but it's Apple-only. Flutter is a good middle ground, but its Desktop capability is limited. You're going to shoot on your own foot several times.

[–] cy_narrator@discuss.tchncs.de 3 points 8 hours ago* (last edited 8 hours ago)

pyqt5 or tkinter

[–] Hugin@lemmy.world 14 points 1 day ago

I'm going to agree with a lot of the other posters and say QT with QT creator. It's a tested and well though out implementation. It's signals and slots event system is straight forward and easy to learn.

Whatever route you take learn Model View Controller (MVC). It gets in the mindset of keeping your data model seprate from things that use the data and things that change the data.

https://en.m.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller

[–] wuphysics87@lemmy.ml 4 points 1 day ago

If you are interested into dipping your toes into rust land there is a library called Iced that I have used before. I at least like it better tham pyqt

[–] krigo666@lemmy.world 5 points 1 day ago

This might be of interest for you, and its free PDF. From 2019 but still actual.

An Introduction to C & GUI Programming – the new book from Raspberry Pi Press

[–] DieserTypMatthias@lemmy.ml 8 points 1 day ago (1 children)
[–] Uebercomplicated@lemmy.ml 1 points 1 day ago

+1 it was a tun of fun for me and rust is great

[–] Nibodhika@lemmy.world 5 points 1 day ago

I've worked with GUIs on python for a couple of years, we used PyQt, which is a python wrapper for Qt which is a C++ library for GUIs. It's fairly straightforward and easy to get something up on the screen in no time.

However from parts of your comment it seems you want to implement your own graphics library, and that is a lot harder to do.

Also you mentioned legacy hardware, not sure how legacy it would be. Python should run on most things people would call legacy nowadays, but there's definitely an overhead that could be felt if you're trying to run this on an embebed system or a REALLY old (as in 90s/00s era) computer.

You also mentioned mobile, I don't think PyQt can be compiled to mobile easily, nor do I think you should even if you manage to (been there, done that, not a happy time). Desktop and Mobile GUIs are very different, realistically if you want something that works well on both mobile and desktop with the same codebase the easiest approach is web UI.

[–] silverhand@reddthat.com 3 points 1 day ago

Beeware!

Toga is a blessing. You can make apps for Windows, MacOS, Android, iOS, Linux and Web - all with the same codebase!

[–] liliumstar@lemmy.dbzer0.com 13 points 1 day ago

You could get started with Qt, specifically the legacy widgets. There are bindings for Python available (pyside or pyqt) if you don't want to learn C++ or another language right away. You can also port your GUI definitions to other languages at a later date.

[–] lumony@lemmings.world 7 points 1 day ago* (last edited 1 day ago) (1 children)

Bless you for doing god's work. We need more GUI developers and a better ecosystem as a whole.

That said, it's pretty shite right now. Your established options are GTK and Qt. Qt uses C++ and I believe GTK uses C. I've only really looked briefly into Qt development, and it looks like there are bindings to Rust.

That said, I'm a firm believer that doing GUIs through code is an inefficient, cumbersome, and antiquated process that should be replaced with more visual alternatives, like we see in Godot Engine.

[–] ReversalHatchery@beehaw.org 2 points 1 day ago

That said, I'm a firm believer that doing GUIs through code is an inefficient, cumbersome, and antiquated process that should be replaced with more visual alternatives

what do you mean? I'm not familiar with Godot.

Android comes to mind where most commonly you build the UI in XML. what do you think about that?

[–] eugenia@lemmy.ml 2 points 1 day ago

If you prefer non-kde apps, then consider Vala. It's a young-ish language and it's well suited for Gtk apps.

[–] dessalines@lemmy.ml -1 points 21 hours ago

I don't see much point in making GUI apps for desktop nowadays, especially since desktop usage is in decline compared to smartphones. If you still want to, I'd go with iced, which is in rust, and well designed.

I'd recommend learning either android jetpack-compose, or iOS app dev.

[–] alfredon996@feddit.it 5 points 1 day ago

My goal is to code basic buttons and understand how operating systems implement the way they draw windows for applications.

So do you want to program a GUI yourself, and not using a library, correct ?

[–] Presi300@lemmy.world 5 points 1 day ago (1 children)

Unpopular opinion: Just make a web app.

[–] grandel@lemmy.ml 3 points 20 hours ago

Damn, an actually unpopular opinion

[–] zolar@lemmy.world 5 points 1 day ago* (last edited 1 day ago)

Not directly programming or coding GUI from scratch with a library or something: Have you considered using a game engine like Godot ( https://godotengine.org/ ) ?

You would have a toolbox for several essential GUI-elements. You could visually create the GUI and add functionality by script. Also, there are several possibilities to handle different screen sizes and touch.

You would have to learn the UI and concepts of Godot but the documentation is ok and there are plenty of tutorials available.

[–] off@programming.dev 1 points 1 day ago

I don't like a lot of python stuff, especially the gui related. flutter (dart) probably the easiest thing I've ever used and it works across tons of systems including mobile. Other than that the classic html/css/javascript lol.

Anything that needs big processing of course will suffer with these, I've never done that on a GUI though, the backends only.

[–] ikidd@lemmy.world 4 points 1 day ago* (last edited 1 day ago) (2 children)

I've been using Flutter, I like how it's cross-platform, mostly. I've generally built things for Android, but the desktop (Linux and Windows) and web versions usually compile fine with no tweaking. Couldn't speak to the iOS versions as I can't be arsed to jump through Apple's hoops. You can make a nice looking app with it for whichever platform you're targeting.

It's very well supported, lots of examples, well documented. Not as much out there as Python for examples and troubleshooting, but not bad.

[–] MonkderVierte@lemmy.ml 1 points 1 day ago (2 children)

web versions usually compile fine with no tweaking

Isn't Flutter basically a webapp anyway?

[–] FrameXX@discuss.tchncs.de 2 points 20 hours ago* (last edited 20 hours ago)

Flutter uses its own UI engine. It does not rely on any webview AFAIK.

By contrast, Flutter minimizes those abstractions, bypassing the system UI widget libraries in favor of its own widget set. The Dart code that paints Flutter's visuals is compiled into native code, which uses Impeller for rendering. Impeller is shipped along with the application, allowing the developer to upgrade their app to stay updated with the latest performance improvements even if the phone hasn't been updated with a new Android version. The same is true for Flutter on other native platforms, such as Windows or macOS.

https://docs.flutter.dev/resources/architectural-overview#flutters-rendering-model

[–] ikidd@lemmy.world 3 points 1 day ago

Yah, and it has it's limitations, but it's far lighter than electron IME.

[–] lautan@lemmy.ca 1 points 1 day ago

Flutter apps are good but from the UI perspective have their own limitations, you essentially rely on premade UI components and if they don’t support a method you need you’re stuck. And I’ve seen some flutters behave weird. I would build a prototype before committing to it.

[–] Drito@sh.itjust.works 3 points 1 day ago

If you are in sciences, and happy to learn a new PL, I think you ll enjoy functional programming, even if it is not the most popular way. https://ocaml.org/docs/is-ocaml-gui-yet

[–] EffortlessEffluvium@lemm.ee 2 points 1 day ago

I just know I’m gonna get raked, but try Lazarus. A Delphi clone using the FreePascal compiler. Has a framework similar to the VCL, but has pluggable backends. Qt, GTK, Windows, Cocoa, and a native one, though I’m not sure of its maturity. Component programming that is relatively easy to extend.

[–] KindaABigDyl@programming.dev 3 points 1 day ago* (last edited 1 day ago) (1 children)

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 6 points 1 day ago (1 children)

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 0 points 22 hours ago* (last edited 22 hours 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.

If you're just trying to familiarize yourself with GUI programming in general, the fastest is going to be Gnome Builder or QT Creator (depending on which DE you're working in). Both are great tools, and make it super easy to understand what goes into all the different pieces of making a GUI app.

If you want something more portable to mobile, maybe Ionic or Cordova would be interesting to you.

[–] coolie4@lemmy.world 2 points 1 day ago

I'm not a GUI expert, but last project I made with one, I used PyQt, and had a fairly good experience.

[–] Aceofspades@lemmy.ca -1 points 1 day ago

You can start with Tkinter since it's a standard python library. Here's a tutorial to get you started.

https://www.geeksforgeeks.org/python-tkinter-tutorial/