//! //! \brief GuidewareTrackingWindow::setConnections //! void GuidewareTrackingWindow::setConnections(){ this->connect(closeButton, SIGNAL(clicked()), this, SLOT(closeSystem())); this->connect(playButton, SIGNAL(clicked()), this, SLOT(realTimeVideoPlay())); this->connect(noVolumeButton, SIGNAL(clicked()), this, SLOT(lastFramePlay())); this->connect(screenShotButton, SIGNAL(clicked()), this, SLOT(screenShot())); this->connect(this->displayTaskTimer, SIGNAL(timeout()), this, SLOT(updateLastFrame())); }
//!---------------------------------------------------------------------------------------------------- //! //! \brief GuidewareTrackingWindow::setConnections //! void GuidewareTrackingWindow::setConnections(){ this->connect(closeButton, SIGNAL(clicked()), this, SLOT(closeSystem())); this->connect(screenShotButton, SIGNAL(clicked()), this, SLOT(screenShot())); this->connect(resetButton, SIGNAL(clicked()), this, SLOT(changeStateToReconstruct())); this->connect(this->displayTaskTimer, SIGNAL(timeout()), this, SLOT(updateLastFrame())); this->connect(this->playButton, SIGNAL(clicked()), this, SLOT(startNaigation())); }