A
A
Andrey PINEAPPLE2016-07-17 18:35:32
Qt
Andrey PINEAPPLE, 2016-07-17 18:35:32

What are the job options for a beginner Qt programmer?

Read the book: Qt 5.3. "Professional C++ Programming". But, unfortunately, there are no "exercises" in it, as is usually the case in other introductory books. As a result, everything I read in the book is clear to me (well, or almost everything), but practice is needed to solve any trivial tasks. Could you tell me how to start programming in Qt? At this stage, we are interested in any window applications under Windows.
Perhaps there is already a ready-made set of exercises for beginners in Qt, but I have not found it.
ps installed Qt 5.7.0 MSVC15

Answer the question

In order to leave comments, you need to log in

1 answer(s)
N
neosapient, 2016-07-18
@neosapient

>> need practice to solve any trivial tasks What
do you need Qt for? For rapid prototyping of office programs?
Then I set the following tasks:
The Model-View-Controller pattern is well implemented in this library.
Make a table model with fields <full name, date of birth>. (see QAbstractItemModel and its descendants; for simplicity, take QStandardItemModel)
Next, create a view that displays the <name, date of birth> table. (see QTableView)
And make a second view that displays the table <name, age> (see working with delegates)
And finally, add editing the table fields through the first view. Those. so that in the first view you can change the date, and then the age in the second view is automatically updated.
For motivation, the terms and conditions will be the same as in a normal office job, i.e.: "It was necessary to hand over yesterday. Do it!"

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question