There's many pages on C/C++ GUI libraries out there, but I've had a really hard time finding ones that have a native look and native feel.

I've taken a look at GTk+, and the problem is, while those emulate the Windows look very well, they don't feel like Windows windows -- because they're not. The buttons, for example, don't fade in on hover as they should in Windows 7; they suddenly become highlighted, because they're in fact just custom-drawn items that are made to look like buttons.

Does anyone know of any lightweight cross-platform GUI library that actually uses native controls (and so integrates seamlessly with the OS), rather than just trying to emulate them? (I need it to be lightweight so I can just link statically with it, without turning a 50 KB program into a 2 MB program.)

link|improve this question

"because they're in fact just custom-drawn items that are made to look like buttons." I think your impression of what a button actually is... is a bit construed. Surely it is always a drawn item that is made to look like a button; regardless of implementation? – Daniel Feb 2 '11 at 4:07
1  
@Daniel: My impression is in no way construed. Do you know how buttons are created in Windows, versus how they are implemented in GTk? Can you notice the difference, and have you ever used Spy++? – Mehrdad Feb 2 '11 at 4:12
I know nothing of the mechanics behind the applications; however my comment remains the same; they are both drawn onto the screen, and both act like buttons. I could understand that they may be lacking a few features you want (such as hover, or fade in), but they are regardless: buttons, same as any other... So saying one is imitation and one is real, makes no sense whatsoever. Not sure if this is OT or not. – Daniel Feb 2 '11 at 4:24
1  
@Daniel: Sorry, but it's precisely because you don't know the mechanics that you're saying this. If you look up how they work internally, this will make complete sense to you. – Mehrdad Feb 2 '11 at 4:25
feedback

4 Answers

up vote 6 down vote accepted

Have you tried wxWidgets?

From the homepage:

Unlike other cross-platform toolkits, wxWidgets gives its applications a truly native look and feel because it uses the platform's native API rather than emulating the GUI

link|improve this answer
This looks interesting. The windows installer is only 11 MB. – ThomasMcLeod Feb 2 '11 at 1:46
That does look interesting. :) The only trouble I'm having is that I can't run any of the demos with Visual Studio 2008. I'm getting c:\wxWidgets-2.9.1\include\wx/platform.h(256) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory but the paths seem to be fine... any ideas? (If I redirect it to \include\msvc, I get another error with wxSETUPH_PATH_STR...) – Mehrdad Feb 2 '11 at 1:51
OMG yes, it's exactly what I was looking for!! (I just downloaded a demo to test it.) Thanks so much! :) – Mehrdad Feb 2 '11 at 1:55
feedback

I suggest Qt4. I don't know if I would call it lightweight but in my opinion it's the best cross-platform multi purpose framework there is. And its free (LGPL). It comes with a very functional IDE - QtCreator.

link|improve this answer
It doesn't use native widgets though; it draws its own pseudo-widgets in a way that resembles the native widgets for the host OS... which is what the questioner is trying to avoid. – Jeremy Friesner Apr 28 at 6:18
feedback

If you think about what you're asking, you're asking a lot. To do this, the windowing/GUI APIs must be abstracted to a common point across all supported platforms. That is a very large and complex task.

link|improve this answer
Maybe, but Java SWT already does this (Eclipse)... so it's already been done before, and I'm just looking for a C/C++ version. It seems doable, even though difficult... doesn't it? (And sorry to say this, but is this really an answer?) – Mehrdad Feb 2 '11 at 1:31
1  
@Mehrdad: Eclipse is not a very good example, since it's anything but lightweight. – Ben Voigt Feb 2 '11 at 1:37
@Ben: But that's Java, not C/C++. Even then, do you have any C/C++ example that isn't lightweight? – Mehrdad Feb 2 '11 at 1:38
Java SWT runs on the JVM, which is not exactly lightweight. It can definitely be done, but there are many differences between platforms, which need to be abstracted away. QT is probably the best you can get. – ThomasMcLeod Feb 2 '11 at 1:39
@Mehrdad: Motif, which is a widget library for C and works for C++ as well, definitely isn't lightweight. – Ben Voigt Feb 2 '11 at 1:41
show 1 more comment
feedback

I would check out FLTK. It's supposed to be fast and lightweight. I've worked with both wxWidgets and FLTK, and FLTK is a lot lighter. It also has a GUI designer tool which will generate code if you like. Lots of sample programs too.

link|improve this answer
i guess the question specifically asks for a GUI library that uses native controls and feels at home on Windows... there is no mention of it in your answer... Wikipedia says FLTK does not have native look-and-feel on any platform... read the question carefully before you attempt an answer... :) all the best... – user1055604 Apr 28 at 6:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.