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 TGO4REMOTEBROWSERSLOTS_H 00017 #define TGO4REMOTEBROWSERSLOTS_H 00018 00019 #include "Go4GUIBase/TGo4SlotsBaseClass.h" 00020 00021 class QListViewItem; 00022 class TGo4Status; 00023 class TFolder; 00024 class TGo4GUIRegistry; 00025 class TGo4RemoteBrowser; 00026 class TGo4RemoteBrowserStatus; 00027 class QTabWidget; 00028 class TGo4DockBrowsers; 00032 class TGo4RemoteBrowserSlots : public TGo4SlotsBaseClass { 00033 00034 public: 00035 TGo4RemoteBrowserSlots(const char * name, const char * title, TGo4RemoteBrowser *p); 00036 virtual ~TGo4RemoteBrowserSlots(); 00037 00038 TGo4Status * GetStatus(); 00039 void SetGUI(TGo4RemoteBrowser *GUI ); 00040 void RemoveObjectFromAnalysis(QListViewItem* Item); 00041 void ResetRemoteObj(const char* ObjName); 00042 void ChangeProtectionsRemoteObj(const char* ObjName, const char* flags); 00043 void Refresh(Bool_t changepage = kFALSE); 00044 void MonitorRemoteObj(QListViewItem*item); 00045 void GetRemoteObj(QListViewItem*item); 00046 TGo4RemoteBrowser *GetGUI(){return fxTGo4RemoteBrowser;} 00047 void RemoteSelectionChanged(const char *ObjName); 00048 void AddObject(TNamed *fxData); 00049 void AddFolder(TFolder* folder, QListViewItem* folderitem = 0, Bool_t isTreeFolders = kFALSE); 00050 void ClearBrowser(); 00051 00052 Bool_t BrowserRefreshed() const { return fbBrowserRefreshed; } 00053 00054 private: 00055 00057 TGo4GUIRegistry * fxTGo4GUIRegistry; 00058 TGo4RemoteBrowser * fxTGo4RemoteBrowser; 00059 TGo4RemoteBrowserStatus * fxTGo4RemoteBrowserStatus; 00060 QTabWidget *TGo4DockBrowserTabs; 00061 TGo4DockBrowsers *fxTGo4DockBrowsers; 00062 Bool_t fbBrowserRefreshed; 00063 00064 00065 }; 00066 #endif //TGO4REMOTEBROWSERSLOTS_H 00067 00068 00069 00070 00071 00072 //----------------------------END OF GO4 SOURCE FILE ---------------------