Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make Linux C++ GUI apps [closed]

Tags:

What is the easiest way to make Linux C++ GUI apps? I'm using GNOME and ubuntu 8.10.

like image 250
Kredns Avatar asked Mar 15 '09 01:03

Kredns


People also ask

Can you make GUI with C?

A C compiler itself won't provide you with GUI functionality, but there are plenty of libraries for that sort of thing. The most popular is probably GTK+, but it may be a little too complicated if you are just starting out and want to quickly get a GUI up and running.

How do I run a GUI in Linux?

Install support for Linux GUI apps You will need to be on Windows 11 Build 22000 or later to access this feature. To run Linux GUI apps, you should first install the driver matching your system below. This will enable you to use a virtual GPU (vGPU) so you can benefit from hardware accelerated OpenGL rendering.

Is a graphical user interface GUI library for the programming language C ++?

Gtkmm. gtkmm (formerly known as gtk– or gtk minus minus ) is the official C++ interface for the popular GUI library GTK .


2 Answers

The easiest way is to use an GUI GUI builder.

Glade for GTK.

QT Designer for QT.

wxDesigner and wxFormBuilder for wxWidgets.

Update: I should mention that these output C++ among many others?

like image 110
Allen Avatar answered Sep 20 '22 15:09

Allen


I personally prefer QT as I prefer working with the signal/slots mechanism and just find it easy to develop applications quickly with it. Some of your other options would be wxWidgets and GTK+.

like image 41
CTT Avatar answered Sep 19 '22 15:09

CTT