I want to create GUI applications with C++ on Windows. I have downloaded Qt, and it works well, but it has sooooo 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 libs out there for Windows C++ that is "just gui"?

Thanks

link|improve this question

feedback

6 Answers

up vote 6 down vote accepted

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.

link|improve this answer
It's really good, but also a little ugly. Is there anything like that with native L&F? – demonkoryu Oct 21 '10 at 14:34
Nothing I know of that's lightweight. wxWidgets wraps the native widgets (mostly - where possible) while remaining cross platform. It's definitely a larger, heavier platform though. – Shaun Oct 22 '10 at 0:34
feedback

JUCE is fairly light weight, it can be as simple as one .cpp & one .h file. (Look at amalgamated JUCE) It doesn't look like a standard windows app however. On the other hand, it is cross platform.

link|improve this answer
Cannot be freely used in commercial projects. – Vijay Mathew Aug 16 '09 at 6:55
feedback

Even if wxWidgets is named here already:

WXWIDGETS!!!

Its a great and valuable Framwork (API, Class Library, whatever you may call it).

BUT: You can divide the funtionality of this library into many small parts (base, core, gui, internet, xml) and use them, when nesessary.

If you really want to make GOOD GUI applications, you have to use a GOOD API. wxWidgets is absolutly free (QT is not), only needs a small overhead in binary form, linked as dll or o-file is it about 2Megs, but has to offer all that you ever need to programm great applications...

And wxWidgets is much more lighter than QT... and even better... :)

Try it...

link|improve this answer
feedback

wxWidgets

link|improve this answer
What's lightweight about wxWidgets??? – sbi Aug 16 '09 at 20:56
2  
hey, compared with Qt, everything is lightweight. – Stefano Borini Aug 16 '09 at 21:36
1  
Ah, OK, I haven't looked at Qt yet. I found wxWidgets quite heavy. – sbi Aug 17 '09 at 18:54
1  
Qt is a great library. I cannot imagine a better library out there. It has quirks (does not play nice with boost, for example), but it's well structured, documented and self-contained. If you use Qt, you don't generally need anything else. STL stuff, DB access, widgets, everything is in there. – Stefano Borini Aug 17 '09 at 19:30
feedback

Try eGui (see here or here) or WTL.

link|improve this answer
feedback

try GTK with Glade3.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.