General Qt Questions

I learned the basics of Qt and am now interested in the depths of this pretty library. Please help me understand:

  • Are all classes derived from QObject ?
  • Why is it possible to draw on QWidget (and derived classes)?
  • What does the string return app.exec(); mean return app.exec(); ? What does the exec () method do?
  • Are there virtual slots ? And virtual signals ?

Thanks.

+4
source share
1 answer

Qt has really good and extensive documentation, if you have more questions then they probably already answered there. Start by programming with Qt .

+5
source

Source: https://habr.com/ru/post/1347389/


All Articles