PDA

View Full Version : How did you learn Qt?



laurynas2003
6th April 2020, 12:55
Hey guys,

I just wonder how did you learn Qt? Could someone recommend a channel or book to watch/read?

Ginsengelf
6th April 2020, 14:11
Learning by doing. I had some small projects that required a GUI, and so I got from labels, buttons, layouts to custom painting and the more advanced stuff. In the beginning I used the Qt examples, but when you've understood how Qt works it's mostly enough to read the docs (and sometimes the Qt source code...).

Ginsengelf

laurynas2003
6th April 2020, 14:38
Learning by doing. I had some small projects that required a GUI, and so I got from labels, buttons, layouts to custom painting and the more advanced stuff. In the beginning I used the Qt examples, but when you've understood how Qt works it's mostly enough to read the docs (and sometimes the Qt source code...).

Ginsengelf

Thank you:)

d_stranz
6th April 2020, 16:49
I also learned by doing, but I found the books by Mark Summerfield and Jasmin Blanchette (https://smile.amazon.com/gp/product/0132354160) and by Mark Summerfield (https://smile.amazon.com/gp/product/0134670876) to be really great for learning.

The code in the Qt examples usually doesn't include a lot of information about why the code was written in the way it was. The books fill in that gap by working through extensive examples covering several chapters, explaining what and why. Even though these are now old and based on Qt4, the basic parts of Qt concerned with building GUIs with Qt and C++ haven't changed a whole lot from Qt4 -> Qt5.