GUI Development on Linux and C++

Thread Starter

champ1

Joined Jun 4, 2018
136
Hi there

I do not have knowledge on GUI Development . I'm interested to know about GUI C++ development in Embedded development. I found The most common GUI frameworks on linux is QT.

Anyone has worked on GUI development.
 

BobaMosfet

Joined Jul 1, 2009
2,211
GUI development isn't hard, and I wouldn't bother using C++. Too cumbersome (library wise). Straight C works fine. If you want to write a GUI, you should learn how they actually work. I've done this many times in many environments.

Before you design a GUI, you need to determine screen-size, and color depth. If you don't know what that means, you have a lot of learning, and need to study how computers manage RGB bit maps, pix maps, and color spaces (color look up tables, etc). A GUI can be memory intensive for screen management, depending on how robust you want to make it (clipping regions, update regions, etc).
 
Top