Lightweight C++ Gui Library

c++, frameworks, user-interface

Solution

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.

Problem

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"?

Original source