4

Thought of learning Qt. Need help from experienced ones out here. How should I begin. Some good books to refer. Some good tutorials to learn...

Edit: Also which is the good IDE available out there for Qt programming. One that gives inline help, auto completion,indentation... I am using Debian Lenny

Walter
  • 16,158
  • 8
  • 58
  • 95
Jestin Joy
  • 151
  • 1
  • 5
  • C++ should be a good starting place. –  Dec 25 '10 at 10:34
  • http://stackoverflow.com/questions/427965/best-qt-ide This post gave me info about different IDE. Thanks – Jestin Joy Dec 26 '10 at 16:12
  • http://stackoverflow.com/questions/1519291/qt-should-i-use-visual-studio-qt-creator-or-something-else http://stackoverflow.com/questions/476323/qt-creator-opinions-and-thoughts These two posts about qt ide give more insight into qt ide – Jestin Joy Dec 26 '10 at 16:23
  • As a beginner I found this one http://sector.ynet.sk/qt4-tutorial/my-first-qt-gui-application.html really helpful – Jestin Joy Dec 28 '10 at 04:33

3 Answers3

3

C++ GUI Programming with Qt 4 passed at one time through my hands. From what few days I had it, it seemed like a nice book; it's style of writing (explaining things) suited me very much. Your mileage may vary, but worth checking out nevertheless.

alt text

Also, two more advanced ones as suggested by Martin Beckett and Jestin Joy.

Advanced Qt Programming: Creating Great Software with C++ and Qt 4 (Prentice Hall Open Source Software Development Series)

alt text

and The Book of Qt 4: The Art of Building Qt Applications alt text

Rook
  • 19,861
  • 9
  • 53
  • 96
  • There's also an advanced programming with Qt follow up – Martin Beckett Dec 26 '10 at 05:09
  • Found another interesting book while seearching through net. "The Book of Qt4 - The Art of Building Qt Applications " by Daniel Molkentin. – Jestin Joy Dec 27 '10 at 06:15
  • @Martin Beckett, @Jestin Joy - Thanks guys. I added those as well. – Rook Dec 27 '10 at 12:21
  • Install Qt from Trolltak and check out samples folder. There are alot of samples. They will teach many more techniques that you cannot learn just by reading books. – Badar Sep 16 '12 at 22:19
  • Is **The Book of Qt 4: The Art of Building Qt Applications** an advanced book? No, I am really asking this question. – Shravan Oct 05 '14 at 13:36
2

I always found the tutorials on the Qt/Troll/Nokia site very helpful, and I know other people with the same experience.

0

As Peter said QT tutorials & online documentation are always the places you should start. In addition you can also go to QT forums. Most importantly once you start coding you should download QT source code so that you can debug and explore it.

Gaurav
  • 3,729
  • 2
  • 25
  • 43