// @(#)root/qt:$Name: $:$Id: TQtTimer.cxx,v 1.5 2005/03/01 07:24:01 brun Exp $
// Author: Valeri Fine 23/01/2003
/*************************************************************************
* Copyright (C) 1995-2004, Rene Brun and Fons Rademakers. *
* Copyright (C) 2003 by Valeri Fine. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#include <qapplication.h>
#include "TQtTimer.h"
#include "TSystem.h"
////////////////////////////////////////////////////////////////////////////////
//
// TQtTimer is a singelton QTimer to awake the ROOT event loop from Qt event loop
//
////////////////////////////////////////////////////////////////////////////////
ClassImp(TQtTimer)
TQtTimer *TQtTimer::fgQTimer=0;
//______________________________________________________________________________
void TQtTimer::AwakeRootEvent(){
// proceess the ROOT events inside of Qt event loop
gSystem->DispatchOneEvent(kFALSE);
start(300,TRUE);
}
//______________________________________________________________________________
TQtTimer * TQtTimer::Create(QObject *parent, const char *name)
{
// Create a singelton object TQtTimer
qApp->lock();
if (!fgQTimer) {
fgQTimer = new TQtTimer(parent,name);
qApp->unlock();
connect(fgQTimer,SIGNAL(timeout()),fgQTimer,SLOT(AwakeRootEvent()) );
} else {
qApp->unlock();
}
return fgQTimer;
}
ROOT page - Class index - Class Hierarchy - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.