Reputation: 1811
I need a nice and possibly lightweight wrapper for winapi gui and gtk gui (what I mean is a GUI library which have its own abstract api, is available for windows and linux, and it uses winapi on windows to draw widgets and on linux it uses gtk). Pretty much how wxwidgets works, but since wxwidget macro C-style api is a mess, it's heavy weight and I can't get my app to compile with it, so I definetely don't want it. I also don't want QT (i don't want extra compiler and heavyweight dependencies). There is also fox toolkit and fltk, but they don't wrap winapi and gtk but have their own rendering, which I don't like.
I don't need many features, just few basic widgets and window managment, and that's it. There are many very nice libs that do this for python, but in C++ I can't find any (besides wx widgets which doesn't work and is too heavy).
Could anybody help me? Because I'm stuck with developing my game as I need to develop a crossplatform editor. If everything else fail I will just write it in python, but I really want to make it in C++.
Thanks
Upvotes: 1
Views: 787
Reputation: 11454
Another alternative is to use GTKmm, the C++ bindings for GTK, with a Windows theme. But it's true that GTK theming may be hard to get right on several Windows versions.
Upvotes: 1