RetroShare/retroshare-gui/src/gui/RsAutoUpdatePage.cpp

32 lines
587 B
C++
Raw Normal View History

#include <iostream>
#include <QTimer>
#include "RsAutoUpdatePage.h"
RsAutoUpdatePage::RsAutoUpdatePage(int ms_update_period,QWidget *parent)
: MainPage(parent)
{
_timer = new QTimer ;
QObject::connect(_timer,SIGNAL(timeout()),this,SLOT(timerUpdate())) ;
_timer->start(ms_update_period) ;
}
void RsAutoUpdatePage::showEvent(QShowEvent *event)
{
std::cout << "In show event !!" << std::endl ;
updateDisplay();
}
void RsAutoUpdatePage::timerUpdate()
{
// only update when the widget is visible.
//
if(!isVisible())
return ;
updateDisplay() ;
update() ; // Qt flush
}