00001 //--------------------------------------------------------------- 00002 // Go4 Release Package v2.10-5 (build 21005) 00003 // 03-Nov-2005 00004 //--------------------------------------------------------------- 00005 // The GSI Online Offline Object Oriented (Go4) Project 00006 // Experiment Data Processing at DVEE department, GSI 00007 //--------------------------------------------------------------- 00008 // 00009 //Copyright (C) 2000- Gesellschaft f. Schwerionenforschung, GSI 00010 // Planckstr. 1, 64291 Darmstadt, Germany 00011 //Contact: http://go4.gsi.de 00012 //---------------------------------------------------------------- 00013 //This software can be used under the license agreements as stated 00014 //in Go4License.txt file which is part of the distribution. 00015 //---------------------------------------------------------------- 00016 #ifndef TGO4LOGINFOSLOTS_H 00017 #define TGO4LOGINFOSLOTS_H 00018 00019 #include "Go4GUIBase/TGo4SlotsBaseClass.h" 00020 00021 class TGo4GUIRegistry; 00022 class TGo4Status; 00023 class TGo4LogInfo; 00024 class TGo4LogInfoStatus; 00025 00026 //class TGo4Status; 00033 class TGo4LogInfoSlots : public TGo4SlotsBaseClass { 00034 00035 public: 00036 TGo4LogInfoSlots(const char * name, const char * title, TGo4LogInfo * p); 00037 virtual ~TGo4LogInfoSlots(); 00038 TGo4LogInfoStatus *GetStatus(); 00039 void SetGUI(TGo4LogInfo *GUI); 00040 TGo4LogInfo *GetGUI(){return fxTGo4LogInfo;} 00041 void StatusChanged(TGo4Status *Status); 00042 void SaveToFile(const char *filename); 00043 void DisplayLogInfo(const char* Name, const char* Date,const char* Time); 00044 void ClearLogInfo(); 00045 void RestoreInfo(); 00046 00047 private: 00048 TGo4LogInfoStatus *fxTGo4LogInfoStatus; 00049 TGo4LogInfo *fxTGo4LogInfo; 00050 TGo4GUIRegistry * fxTGo4GUIRegistry; 00051 }; 00052 00053 #endif //TGO4LOGINFOSLOTS_H 00054 00055 //----------------------------END OF GO4 SOURCE FILE ---------------------