View Poll Results: What qt4 book do you prefer?

Voters
10. You may not vote on this poll
  • The Book of Qt 4: The Art of Building Qt Applications By Daniel Molkentin

    1 10.00%
  • Foundations of Qt® Development By Johan Thelin

    0 0%
  • C++ GUI Programming with Qt 4 By Jasmin Blanchette and Mark Summerfield

    7 70.00%
  • Other

    2 20.00%
Results 1 to 15 of 15

Thread: Choosing a qt4 book

  1. #1
    Join Date
    Sep 2006
    Posts
    23
    Thanks
    4
    Qt products
    Qt4 Qt5
    Platforms
    Unix/X11 Android

    Default Choosing a qt4 book

    Hello,
    I want to buy a qt4 book, but I don't find any comparatives. What do you think is a good one?
    I'm thinking about those:


    So what do you think is a good one? Have I forgotten any book?

    Thanks

  2. #2
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: Choosing a qt4 book

    Each of these books is quite different, so I don't think you can say that one of them is "better" than others - it highly depends on what you seek and what is your knowledge of Qt.

    And yes, there are more Qt4 books available.

  3. #3
    Join Date
    Sep 2006
    Posts
    23
    Thanks
    4
    Qt products
    Qt4 Qt5
    Platforms
    Unix/X11 Android

    Default Re: Choosing a qt4 book

    I want to learn Qt4, I've started programming with it, and I want to know how does it work.

  4. #4
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: Choosing a qt4 book

    If you're a real newbie in Qt (but you know C++) then I'd suggest Johan's book. If you know a bit about Qt already, I'd suggest "C++ GUI Programming with Qt4" (though I think it covers only GUI topics, whereas Foundations... cover other Qt aspects as well). I don't know the third book, but it doesn't seem very complete, based on the "leaflet" available on TT site (and I don't know who the author is, so I can't say anything about his skills).

  5. #5
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: Choosing a qt4 book

    I just received Qt4 - The Art of Building Qt Applications. I need a few days to read it. I'll get back to you when I do. BTW. Daniel Molkentin has been a core developer of KDE and co-author of Kontact.

  6. #6
    Join Date
    Sep 2006
    Posts
    23
    Thanks
    4
    Qt products
    Qt4 Qt5
    Platforms
    Unix/X11 Android

    Default Re: Choosing a qt4 book

    Ok, thank you, i just want a book to understand as best as i can the Qt toolkit. So I won't have to ask very basic questions and I could understand better the Qt documentation.
    BTW, What are the other Qt books?

    Thanks

  7. #7
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: Choosing a qt4 book

    At least An Introduction to Design Patterns in C++ with Qt 4 (Bruce Perens' Open Source Series) by Alan Ezust and Paul Ezust

  8. #8
    Join Date
    May 2006
    Location
    Bangalore,India
    Posts
    235
    Thanks
    7
    Thanked 25 Times in 24 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Windows

    Default Re: Choosing a qt4 book

    I have not read any Qt book. I am using only Qt Assistance to learn Qt and this forum to solve my problems.
    Thanks to modulator of this forum.

    anyone having e-book of The Book of Qt 4: The Art of Building Qt Applications By Daniel Molkentin?

  9. #9
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: Choosing a qt4 book

    See three posts above

  10. #10
    Join Date
    Feb 2006
    Location
    Oslo, Norway
    Posts
    6,264
    Thanks
    36
    Thanked 1,519 Times in 1,389 Posts
    Qt products
    Qt4
    Platforms
    MacOS X Unix/X11 Windows Symbian S60 Maemo/MeeGo

    Default Re: Choosing a qt4 book

    J-P Nurmi

  11. #11
    Join Date
    Feb 2006
    Location
    US
    Posts
    173
    Thanks
    16
    Thanked 5 Times in 5 Posts
    Qt products
    Qt4 Qt5
    Platforms
    Unix/X11 Windows Android

    Default Re: Choosing a qt4 book

    I consider these two books essential (albeit for different reasons): 'C++ GUI Programming With Qt 4' and 'An Introduction To Design Patterns In C++ With Qt4'.

    1st book ...

    It covers the Qt API well enough to get started. The examples are well organized by chapter/topic and effectively reinforce topics as you proceed. The book is very easily read ... not too much fluff. The book is also structure in such a way that one can pursue many of the topics out of order.

    The biggest negative is that the book covers a few topics too lightly. Again, it's a great introduction.

    2nd book ...

    It goes into detail not covered in 1st book. I especially appreciated chapter 15 ... as I've recently been dealing with meta-objects and properties and would have found it very useful. Also of special import, chapter 17 presents a complete MVC example.

    There are many chapters that should have been covered more lightly ... especially chapters 1-8 and chapters 19-24. Those topics are covered in sufficient detail in other texts. However, after speaking with the author, he indicated that he was contracted to write a university text book requiring an introduction/reference for C++.

    The biggest negative is that the examples in the book are not structured by chapter/topic. It's a bit cumbersome to cherry-pick a topic and to have it easily reinforced by example.

  12. #12
    Join Date
    Feb 2006
    Location
    US
    Posts
    173
    Thanks
    16
    Thanked 5 Times in 5 Posts
    Qt products
    Qt4 Qt5
    Platforms
    Unix/X11 Windows Android

    Default Re: Choosing a qt4 book

    I haven't read the book 'Foundations of Qt Development' yet. However, I do remember the tutorials the author wrote sometime back ... called the 'Independent Qt Tutorial'. I found them very useful at the time as I was coming up to speed on Qt. I'll likely buy this book as well.

    I don't have a reference for the book 'The Book of Qt 4: The Art of Building Qt Applications'. I hope to see reviews here or on Amazon sometime soon.

    I am glad to see all the resources that are becoming available. That's a good sign the community is growing.
    Last edited by brcain; 30th August 2007 at 22:18.

  13. #13
    Join Date
    Aug 2007
    Location
    Ontario, Canada
    Posts
    22
    Thanks
    4
    Qt products
    Qt4
    Platforms
    MacOS X Unix/X11 Windows

    Default Re: Choosing a qt4 book

    I own a copy of C++ GUI Programming with Qt 4 and I am very pleased with the book. I have had no other introduction to Qt other than this book and the help of the members of this board when I have questions (#Qt on irc.freenode.net is good too). The book assumes you are familiar with C++. I am far from even an intermediate level and I find the book easy to follow. A broad portion of topics are covered in the text, although I wish there were more examples with more detail in parts, but the book is only ~450 pages. Overall, this book is very good. When I am writing the programs I am now working on this book and the Qt docs are both open. I would like to find another Qt book that is more of a reference. The Qt docs are very good but as a beginner I feel lost when trying to follow them sometimes.

  14. #14
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: Choosing a qt4 book


  15. #15
    Join Date
    Jan 2006
    Location
    Southern Europe
    Posts
    6
    Qt products
    Qt4
    Platforms
    Unix/X11

    Default Re: Choosing a qt4 book

    There is a review of Foundations of Qt Development on KDE Dot News.

Similar Threads

  1. Intalling Qt 3.3 on mac book
    By munna in forum Installation and Deployment
    Replies: 1
    Last Post: 19th January 2007, 10:35
  2. Any opinions of other Qt book?
    By brcain in forum General Discussion
    Replies: 4
    Last Post: 22nd September 2006, 22:49
  3. Note book widget
    By Seema Rao in forum Qt Programming
    Replies: 2
    Last Post: 30th May 2006, 19:02
  4. best book for qt programming
    By amulya in forum Qt Programming
    Replies: 2
    Last Post: 21st March 2006, 12:50
  5. Blanchete book for Qt 4?
    By Morea in forum Newbie
    Replies: 8
    Last Post: 28th February 2006, 21:22

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide.