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 TGO4MONITOREDLISTSLOTS_H 00017 #define TGO4MONITOREDLISTSLOTS_H 00018 00019 #include "Go4GUIBase/TGo4SlotsBaseClass.h" 00020 00021 class TGo4MonitoredListStatus; 00022 class TGo4MonitoredList; 00023 class QListViewItem; 00024 class TGo4GUIRegistry; 00025 class TGo4Status; 00026 class TGo4DockBrowsers; 00027 class TGo4MainWindow; 00031 class TGo4MonitoredListSlots : public TGo4SlotsBaseClass { 00032 public: 00033 00034 TGo4MonitoredListSlots(const char * name, const char * title, TGo4MonitoredList * p); 00035 virtual ~TGo4MonitoredListSlots(); 00036 void DeleteItem(); 00037 void StatusChanged(TGo4Status * s); 00038 void ItemDoubleClicked (QListViewItem *MonitoredObject); 00039 void PlotSelected(); 00040 void SendToLocalList(); 00041 void AddObject(TNamed *fxData); 00042 void SetGUI(TGo4MonitoredList* p); 00043 TGo4MonitoredList* GetGUI(); 00044 TGo4Status * GetStatus(); 00045 void StartMonitoring(); 00046 void MonitorVisible(); 00047 void ResetRemoteObj(const char* ObjName); 00049 Bool_t IsAllMonitorDone(); 00050 00051 private: 00052 00054 TGo4GUIRegistry * fxTGo4GUIRegistry; 00055 TGo4MonitoredList * fxTGo4MonitoredList; 00056 Int_t NoOfLocalSelectedObjects; 00057 00060 TGo4MonitoredListStatus *fxTGo4MonitoredListStatus; 00061 TGo4DockBrowsers *fxTGo4DockBrowsers; 00062 TGo4MainWindow * fxMainWin; 00063 }; 00064 #endif //TGO4MONITOREDLISTSLOTS_H 00065 00066 00067 00068 //----------------------------END OF GO4 SOURCE FILE ---------------------