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
0002
0003
0004
0005
0006
0007
0008
0009
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)
0031 };
0032
0033 #endif