Qt-UI

Q Widget Slots

MOC CMake Example | | QMainWindow

Each class derived from QWidget has the following signals:

  • void destroyed ( QObject * obj = 0 )
  • void customContextMenuRequested ( const QPoint & pos )

E.g. signals of QCheckBox:

  • void stateChanged ( int state )
  • 4 signals inherited from QAbstractButton (clicked pressed released toggled)
  • 1 signal inherited from QWidget (customContextMenuRequested)
  • 1 signal inherited from QObject (destroyed)


MOC CMake Example | | QMainWindow

Options: