Here is what I want:
- cross-platform (Windows, OSX, Linux minimum)
- distributed as source
- statically-linked (no heavy dlls to redistribute with an otherwise tiny app)
- object-oriented and encapsulated (no global init() or cleanup() functions, every GUI object should be fully initialized after construction)
- useable from native applications - that is I should be able to integrate a modless dialog from the GUI framework within some hosting native applications
If you think I want a lot, please note that I didn't mention it should be free. I've briefly looked at wxWidgets and Qt and it seems they have trouble with points 3 to 5. Normally I use .NET for GUI applications but this time I'm writing plugins for a couple of native applications :( I also don't have time to dig into the sources of existing GUI frameworks to make them work the way I want.