Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/root/TGIdleHandler.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // @(#)root/gui:$Id$
0002 // Author: Fons Rademakers   2/8/2004
0003 
0004 /*************************************************************************
0005  * Copyright (C) 1995-2004, Rene Brun and Fons Rademakers.               *
0006  * All rights reserved.                                                  *
0007  *                                                                       *
0008  * For the licensing terms see $ROOTSYS/LICENSE.                         *
0009  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
0010  *************************************************************************/
0011 
0012 #ifndef ROOT_TGIdleHandler
0013 #define ROOT_TGIdleHandler
0014 
0015 #include "TObject.h"
0016 
0017 class TGWindow;
0018 
0019 class TGIdleHandler : public TObject {
0020 
0021 private:
0022    TGWindow *fWindow;
0023 
0024 public:
0025    TGIdleHandler(TGWindow *w);
0026    ~TGIdleHandler() override;
0027 
0028    virtual Bool_t HandleEvent();
0029 
0030    ClassDefOverride(TGIdleHandler,0)  // Idle event handler
0031 };
0032 
0033 #endif