Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Lightweight C++ Gui Library [closed]

Tags:

I want to create GUI applications with C++ on Windows. I have downloaded Qt, and it works well, but it has so much stuff in it and so many header files that I really don't use. It is a nice framework, but it has more than just GUI.

Are there any lighter GUI libraries out there for Windows C++ that is "just GUI"?

like image 392
QAH Avatar asked Aug 16 '09 00:08

QAH


People also ask

Does C have a GUI library?

Many programming languages bolster GUI improvement as one of the centrepieces of its language highlights. C has no such library connected to it like the string library, IO library, etc, that we every now and again use.

Does C++ have a built in GUI library?

The C++ standard library does not contain any GUI functions as Java or C# do, but there are many useful external libraries that you can install.

Which is the best GUI for C?

GTK is a popular GUI that works with C .

Is CPP good for GUI?

Yes C++ is a good language for doing GUI programming. You have many options for libraries to use for making GUIs.


1 Answers

FLTK, if you are serious about lightweight.

http://www.fltk.org/

edit:
Blurb from the website:

FLTK is designed to be small and modular enough to be statically linked, but works fine as a shared library. FLTK also includes an excellent UI builder called FLUID that can be used to create applications in minutes.

I'll add that its mature and stable, too.

like image 118
Shaun Avatar answered Sep 27 '22 18:09

Shaun