Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Qt PDF Tutorial? [closed]

Tags:

c++

qt

Where can I find a Qt tutorial in PDF format. I have looked all over google but can't find one. I need to be able to read it offline as I can't always be on the internet. Thanks!

like image 484
Kredns Avatar asked Mar 29 '09 23:03

Kredns


3 Answers

If you're looking for a tutorial or a book, rather than QT docs have a look at this free ebook :

C++ GUI Programming with Qt 4

The author has released the first edition with an open license. If you like it You can still buy the printed second edition in amazon.

like image 92
davidnr Avatar answered Sep 29 '22 02:09

davidnr


There is no PDF directly from trolltech that I know of, but all of the docs are under

Qt\200x.xx\qt\doc\html

where 200x.xx represents the version of the Qt SDK. Mine is 2009.01 for example.

You could use one of many HTML to PDF converters to achieve what you're looking for.

like image 34
John T Avatar answered Sep 29 '22 01:09

John T


You can actually use an html to pdf converter created with QT... http://code.google.com/p/wkhtmltopdf/

like image 27
jle Avatar answered Sep 29 '22 00:09

jle