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 TGO4QCONITEM_H 00017 #define TGO4QCONITEM_H 00018 00019 #include "TGo4QItem.h" 00020 00021 class TGo4WindowEditSlots; 00022 00028 class TGo4QConItem : public TGo4QItem { 00029 00030 public: 00031 00032 TGo4QConItem( QListView* parent, const char* pixmap, const QString & text, const QString & text1=0, const QString & text2=0) ; 00033 TGo4QConItem( QListViewItem* parent, const char* pixmap, const QString & text, const QString & text1=0, const QString & text2=0) ; 00034 TGo4WindowEditSlots *GetEditor(); 00035 virtual ~TGo4QConItem(); 00036 00037 virtual void ItemDBkRemote(); 00038 virtual void ItemDBkLocal(); 00039 00040 void SetHistogram(const char* name) { fxHistogram=name; } 00041 const char* GetHistogram() { return fxHistogram; } 00042 void SetHistoLink(bool on) { fbHasHistogram=on; } 00043 bool IsHistoLink() { return fbHasHistogram; } 00044 00045 virtual void SetStatus(TGo4Status* status); 00046 00047 private: 00048 00050 QString fxHistogram; 00052 bool fbHasHistogram; 00053 }; 00054 00055 00056 #endif //TGO4QCONITEM_H 00057 00058 00059 00060 00061 //----------------------------END OF GO4 SOURCE FILE ---------------------