Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm thinking about writing a very simple paint program. I would like a more advanced method of inputting data into my program like colors, thickness of the brush, etc. I would like to use a GUI library so I can program buttons and menus to make input easier.

Any suggestions?

(I'm running Visual C++ 2005 SP1)

share|improve this question

5 Answers

up vote 16 down vote accepted

Qt is a pretty solid GUI application framework. It is cross-platform, well documented, supported, and free.

share|improve this answer
1  
with Qt you start-up creating a "simple paint program" and end-up creating huge software such as Google Earth :) – Lawand Aug 26 '09 at 18:45
Ever since QT went LGPL'd, I don't see any reason not to use it in any C++ application, OSS, commercial, or otherwise. It beats all competitors on performance, feature-completeness, stability, and documentation by a very large margin. – Pavel Minaev Sep 3 '09 at 23:16
Not to mention Qt comes with several "simple paint program"-like demos to learn from. – Graphics Noob Sep 3 '09 at 23:25

wxWidgets is a cross-platform, open source GUI library that has some nice graphics features.

share|improve this answer

Does GTK+ not suit your needs? It has a lot of advanced controls for handling colour input (being originally design for GIMP). gtkmm is:

the official C++ interface for the popular GUI library GTK+. Highlights include typesafe callbacks, and a comprehensive set of widgets that are easily extensible via inheritance. You can create user interfaces either in code or with the Glade User Interface designer, using libglademm. There's extensive documentation, including API reference and a tutorial.

Qt is also a possibility. Both will allow you to write [mostly] platform independent code.

share|improve this answer
While there is Gtk/Win32, Gtk applications still look somewhat foreign on Windows - the "native" theme is far from perfect. Setting it up to work with VS might also be a hassle. – Pavel Minaev Sep 3 '09 at 23:19

Why not use either ATL or MFC, as they're both supplied with VS2005 anyway...

Another option would be WTL, which comes recommended by some former colleagues of mine.

share|improve this answer
Or Windows Froms – Nick Aug 26 '09 at 18:47
You could but I'd normally recommend using C# (or VB.Net) for winforms, rather than MC++ – Rowland Shaw Aug 26 '09 at 18:50
Another vote for WTL – Nemanja Trifunovic Aug 26 '09 at 19:23
MFC is fairly low-level and inflexible, and you're in to a world of hurt if you try to do anything non-standard. ATL+WTL is even more low-level, and you'll be dealing with raw API calls half of the time. All in all, unless output binary size is a constraint (as it often is for e.g. ActiveX controls), using either MFC or ATL/WTL leads to unproductive waste of time compared to a high-level framework such as Qt. – Pavel Minaev Sep 3 '09 at 23:18
1  
QT has a great WYSIWYG editor. – Ron Warholic Sep 14 '09 at 22:14
show 1 more comment

A few of your options:

  • Win32 API
  • Qt
  • .NET framework (using C++/CLI)
  • wxWidgets

My usual choice: Win32 API

My recommendation for you: Qt

EDIT: Actually a simple paint program sounds very doable using only Win32 API and GDI+. If you feel brave enough, then you may want to give that a try. (I tend to be kind of biased to lightweight solutions.)

share|improve this answer
can i use the QT library in visual studios 05? – TheFuzz Aug 26 '09 at 19:28
Well you could, but not with graphical widget+layout design support. But, Qt has its own version of that, actually 2 versions, Designer (just designs the GUI), and Creator (which is a whole IDE; Designer, editor, and debugger, in one). – JDonner Aug 26 '09 at 20:15
@TheFuzz, yes you can, there are some tutorials available on the net for this. As JDonner is saying, you won't get the visual designer if you are using Visual Studio, but don't worry about that. It's only a tool that allows you to draw widgets visually like in Visual Basic. You don't really need it, actually I even prefer making my GUI's in code. – StackedCrooked Aug 26 '09 at 20:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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