vote up 1 vote down star
1

I'm used to working in a Delphi and C# environment which seem to have a rich set of third party components available. I'm currently wanting to do cross-platform programming in C++ using either qt or wxwidgets. Is there a large market for third party components? I was looking at sourceforge and that doesn't seem to show much that is useful (how the hell do you find out what components or features are in a project without downloading the source?). I'm thinking carousel/coverflow components, rich datagrids (like the sort DevExpress provide). Or is this, write your own territory?

flag

0% accept rate

4 Answers

vote up 2 vote down

There are a number of good quality third party Qt libraries, though I don't know of a centralized resource for finding them.

A few places to start looking:

link|flag
vote up 1 vote down

In addition to the ones by ICS and at QtCentre the Qt-apps website has some open source widgets/components for Qt.

link|flag
vote up 1 vote down

For a crossplatform GUI development, Qt is the tool you should be looking for. I have used both. Here is what I feel about Qt

Building rich GUI is a piece of cake if you use Qt. It has a loads of GUI capabilities, starting with its Graphics View, OpenGL support, stylesheets that supports css. A mature painting system, Richtext formatting, Integration with Webkit, and I am sure I am missing a lot more here...

Qt has its own build system, qmake which creates platform dependent Makefiles, so no Makefile hassles. Moreover you get a single pro-file which is much easier to manage. For wxWidgets, you will need to create different Makefiles for the various compilers you intent to use.

Other advantages of using Qt over wxWidgets are - the Api is very easy to learn with its intuitive api, superb documentation and tons and tons of examples. This helps you get yourself productive pretty soon and thus getting your product early to marker. BTW Qt is a RAD tool. Moreover, there is a huge user base, and there are forums like QtCentre.org to help you with your questions. If you are planning to buy commercial license, you get support directly from Qt Software (trolltech).

You would obviously be using Qt's Model View pattern, allowing you to separate your business logic from the presentation tier. I would suggest that you write to "support at trolltech dot com" or "sales at trolltech dot com" to get more information. You can explain your requirements and they would be able to explain how Qt fits your needs.

You could also download the opensource version and have look at the demos. Coverflow: http://labs.trolltech.com/blogs/2007/11/02/pictureflow-on-windows-mobile/ , http://ariya.blogspot.com/2008/03/introducing-photoflow.html

As I said, if its Rich gui you are planning to develop, use Qt.

link|flag
vote up 0 vote down

For wxWidgets you have wxCode which has quite a few things although not all the existing third party components (including a few very useful ones) are available from there.

link|flag

Your Answer

Get an OpenID
or

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