QuoteOriginally posted by: EdgeyBottom line, what GUI library should I be using now? Any suggestions welcome.Take a look:
http://www.dwheeler.com/essays/easy-cro ... uages.29// Note: since a GUI-framework has-a GUI-library, widget toolkits list includes both.We already have had some discussions about that on Wilmott earlier; here are my views:
http://www.wilmott.com/messageview.cfm? ... cidentally, it's helpful to recognize the distinction between "a GUI library" and "a framework with a GUI library."An example of the former would be FLTK.An example of the latter would be Qt.Each has different uses and applications -- sometimes a lightweight library that weighs 100 KiB total is more appropriate than a 150 MiB framework.For instance, if you want a few buttons to test your numerically-intensive application (with its core competence being number-crunching performance, not the GUI/presentation part, and that may end up being used from Excel in production stage anyway) I'd say go for FLTK (though even here YMMV).Just like with optimization algorithms and programming languages, there's no free lunch, so this is a choice that you have to make and that may be be different for each of your applications.If your main purpose is producing charts, not GUIs with other widgets /* widgets being those --
http://en.wikipedia.org/wiki/GUI_widget ... ic_widgets */, then you might be better off forgetting about all of the above altogether and instead looking at:- MathGL --
http://mathgl.sourceforge.net/- PLplot --
http://plplot.sourceforge.net/Hope that helps.