views:

1258

answers:

3

Which C++ cross-platform GUI toolkit gives smallest footprint with both static and dynamic builds? I don't need a very sophisticated GUI, just basic controls & widgets. Thank you in advance.

+4  A: 

the smallest one I've heard of is fltk

oykuo
Thank you. I found http://www.tecgraf.puc-rio.br/iup/ with small footprint too.
Viet
+1  A: 

try cegui. It was designed for game guis, which have to be light (for console games). I've never tried fltk. It may be more suitable.

caspin
Thanks you Caspin.
Viet
cegui has a rather big footprint. wouldn't recommend it!
frunsi
+1  A: 

The Tk from Tcl/Tk is well known of its small memory footprint. Details in Memory Footprint Comparisons on Tcl/Tk Wiki. Both, Tcl and Tk, are extremely simple to use with C++/Tcl and C++/Tk libraries. They were inspired by Boost.Python

mloskot