GUI programing?

is there any library u recomend me learning for doing multiplatformed GUI programming in c++? since i dont think sdl is gonna cut it when doing gui stuff, am i right?
No, SDL provides no GUI functionality (but it provides the means to create a GUI toolkit of your own).
You basically have two primary choices for GUI toolkits: Qt and wxWidgets.
ya i have heard qt is good, i guess i can start learning that :)

"but it provides the means to create a GUI toolkit of your own"

care to explain a bit more, you got me interested haha.
Well, basically SDL allows you to bring pixels on the screen where you want them and allows you to capture mouse and keyboard input.
That way, you can create widgets like buttons, text fields, list boxes, scroll bars etc. of your own design. But of course, that's much more work than just learning how to use an existing toolkit like Qt.
haha ya. i mean even just creating a simple in game menu using sdl can be a pain in the ass sometimes :P

well thanks for the help :)
Topic archived. No new replies allowed.