What is the most popular C++ gui framework in windows? [closed] - c++

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
Nowadays there are many windows applications. Several years ago, MFC may be the most popular gui framework to create windows applications. But I think MFC is too old and doesn't have a good OO design. So here I want to know is there any modern, well designed and widely used C++ gui framework in windows?

My company use Qt framework.
Adobe Photoshop (AFAIK) and other popular Windows programs are using it.
Qt is modern, well documented and tested. Just try it and enjoy :)

If you need a free portable GUI framework you can use wxWidgets. QT is also a choice, but AFAIK it's not completely free.
So the answer depends on what you want to do with it.

There's this post which seems similar to yours.
It states QT as a decent free GUI solution.

Related

Suggestions for quick GUI development tool with C++? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I am looking for an RAD C++ development tool that can let me put together a not-too-complex GUI project (for video processing & display) very quickly. I would use a Active Control in the GUI, and calling some C++ libraries. I am looking at these options:
Visual C++. It's actually not an RAD tool, and from my past experience, MFC is really outdated and painful to use. I really don't want to touch it any more.
QT Creator. It's modern, elegant to use, but still not an RAD environment. I would like to work out my App in two weeks. I don't think I can do that with the QT ecosystem.
C++ Builder. This looks like the ideal choice. Dead easy to develop. Tons of VCL controls to easily extend the GUI functionality. But it looks like it's falling into obscurity these days (for reasons I yet to understand).
What do you think is the best choice for quick GUI development tool with C++?
(Please answer quickly since this question probably will be killed for "Off Topic" very shortly)
You can use Windows Forms, pretty easy with lots of help and example code.
Glade is a RAD tool to enable quick & easy development of user interfaces for the GTK+ toolkit and the GNOME desktop environment.

Metro style gui c++ library without winrt? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Is there a cross platform gui library that emulate metro style look ?
if not, i wonder if you guys can provide me with a cross platform gui library that is customizable.
i tried SFGUI, its good but still in development and very bugy.
If you don't mind switching to another language, I suggest the C# and WPF that allows such customizations.
If you want to stick to C++ try the ones by Embarcadero C++Builder and their Firemonkey API(Its cross platform too) or my favorite Qt from Nokia
My other suggestion would be to use a Webkit control and build the metro style UI in HTML/CSS/Javascript instead.
There are many ways to do what you want to achieve.

Highly customizable C++ GUI library? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Is there any C++ GUI lib here that is fast, has highly customizable looks (like Swing) and ofcourse, of much higher level of abstraction then Win32?
I'm a complete begginer in c++ but loved Java+Swing combo very much for their customizability.
Simply put, I want the lib to be easy to learn, can be customized by simply subclassing and overiding their painting (like Swing) and free :)
Please help me!
P.S. I use orwell dev-c++ portable fork with 32 bit gcc. if that matters.
Qt is what you're looking for: http://qt-project.org
There's plenty: wxWidgets, Qt, GTK+, and many many more. All easy to find in short time using any search engine.

C win32 applications [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
So, I have started C++ (I already know java) but now I'm ready for windowed applications. I'm guessing win32 is what I what to start with, but my problem is, where to start learning this or is win32 not what I want to use.
There are many GUI libraries for C++ which supports windows:
Gtkmm (Gtk+ bindings for C++)
SmartWin++
V C++ GUI
FLTK
QT
These are the ones taken from stroustrup faq (Why doesn't C++ have a GUI?) and there is also wxWidgets. just pick the one you like.
If you want to do windowing, QT is your best choice in C++. win32 is just too low level these days.
Microsoft actually wants everyone to write touchscreen Windows 8/WinRT apps using the latest tools.
Check out the code gallery at http://code.msdn.microsoft.com/windowsapps/

choosing gui for c++ for cross-platform game [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I have just started learning c++ a few days ago and the book I have got does not cover any of the gui aspects in it. Ultimately I am wanting to make simple multilayer games(2-8 players).
I've been doing some reading on gui libraries but have no idea what would be best or what to look for. Is there a gui library you would suggest for cross platform game and why?
For most applications a typical toolkit like Nokia's Qt or WxWidgets is just fine.
If you're planning on having an OpenGL-based game anyhow, you might take a look at GLUI to see if it adds enough tools to make your GUI development easier.
The best free one is CEGUI.
http://www.cegui.org.uk
Why? Because there is no other that can really compete with it.
Ogre3D has some other GUIs too as Plugin, but as standalone CEGUI is leading to my knowledge.