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 TGO4EDITDYNENTRYSLOTS_H 00017 #define TGO4EDITDYNENTRYSLOTS_H 00018 00019 #include "Go4GUIBase/TGo4SlotsBaseClass.h" 00020 #include "TString.h" 00021 00022 class TGo4EditDynEntry; 00023 class TGo4Status; 00024 class TGo4EditDynEntryStatus; 00025 class TGo4GUIRegistry; 00026 00031 class TGo4EditDynEntrySlots : public TGo4SlotsBaseClass { 00032 00033 public: 00034 00035 TGo4EditDynEntrySlots(const char * name, 00036 const char * title, 00037 TGo4EditDynEntry* p=0); 00038 virtual ~TGo4EditDynEntrySlots(); 00039 void StatusChanged(TGo4Status *status); 00040 void SetGUI(TGo4EditDynEntry* e ); 00041 void AddObject(TNamed *object); 00042 TGo4Status * GetStatus(); 00043 00046 void SendRefreshCommand(); 00047 00050 void SendApplyCommand(); 00051 00053 void SendHistogramClearCommand(); 00054 00057 void SendHistogramPrintCommand(); 00058 00061 void SendDynListPrintCommand(); 00062 00064 void SendNewConditionCommand(const Text_t* name, 00065 const Text_t* classname); 00066 00068 void SendResetBackStoreCommand(); 00069 00071 void SendSetDynListIntervalCommand(Int_t value); 00072 00073 void SetConditionClass(const char* cname) { fxConditionClass=cname; } 00074 00075 private: 00077 TGo4GUIRegistry *fxTGo4GUIRegistry; 00078 TGo4EditDynEntry *fxTGo4EditDynEntry; 00079 TGo4EditDynEntryStatus *fxTGo4EditDynEntryStatus; 00080 00083 Int_t fiCondArrayType; 00085 TString fxConditionClass; 00086 }; 00087 00088 #endif //TGO4EDITDYNENTRYSLOTS_H 00089 00090 //----------------------------END OF GO4 SOURCE FILE ---------------------