Benjamin
Benjamin

Reputation: 1253

Simple C++ GUI Toolkit

I'm looking for a nice and simple GUI Toolkit that I can use with MSVC++ 2008. I need something with simple examples/tutorials and good documentation.

I've already tried wxWidgets, and I had a real headache on trying to compile it. And the Qt tutorials and examples seem way to complicated for me.

I have quite a bit experience in Swing, it's been the only GUI toolkit that I've been able to understand.

Thanks.

EDIT:

Three years ago I was very young and foolish and didn't know that much about widgeting toolkits. It'd highly recommend using Qt now. It's been working very well for me.

Upvotes: 1

Views: 2913

Answers (4)

Rag
Rag

Reputation: 6593

If you're using Visual C++ then why not just use the built in MFC widgets? It comes with an extensively-supported visual form designer integrated into the IDE, right? You drag and drop components from a toolbox and set properties from a graphical list; it can't possibly be easier.

Upvotes: 1

zvrba
zvrba

Reputation: 24546

Uh, if Qt looks complicated.. anyway, try fltk.

Upvotes: 2

Zhehao Mao
Zhehao Mao

Reputation: 1789

Maybe FLTK? I haven't used it that much myself and it's not particularly popular, but it's a relatively simple library with decent documentation. There's also GTKmm, which is quite a bit more complicated, but much more widely used.

Upvotes: 2

mwigdahl
mwigdahl

Reputation: 16578

Is there a reason that MFC, the toolkit that ships with MSVC++, is not an option for you? There's tons of example code and it's not particularly difficult to work with.

Upvotes: 4

Related Questions