Exemplo n.º 1
0
//!
//! \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()));
}
Exemplo n.º 2
0
//!----------------------------------------------------------------------------------------------------
//!
//! \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()));
}