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 TGO4MARKERPAINTER_H 00017 #define TGO4MARKERPAINTER_H 00018 00019 #include "TGo4LabelPainter.h" 00020 00021 class TGo4Marker; 00022 00023 class TGo4MarkerPainter : public TGo4LabelPainter { 00024 public: 00025 TGo4MarkerPainter(); 00026 TGo4MarkerPainter(const Text_t * name); 00027 TGo4MarkerPainter(const Text_t * name, const Text_t * title); 00028 virtual ~TGo4MarkerPainter(); 00029 00031 virtual void PaintLabel(Option_t* opt=""); 00032 virtual void UnPaintLabel(Option_t* opt=""); 00033 void PaintConnector(Option_t* opt=""); 00034 void UnPaintConnector(Option_t* opt=""); 00035 00036 virtual void SetMarker(TGo4Marker* mark) {fxMarker=mark;} 00037 00038 protected: 00039 00041 Bool_t CheckConnector(); 00042 00044 TGo4Marker* fxMarker; 00045 00047 TGo4LabelConnector* fxConnector; 00048 00049 private: 00051 Bool_t fbIsConStreamed; 00052 00053 00054 ClassDef(TGo4MarkerPainter,1) 00055 }; 00056 #endif //TGO4MARKERPAINTER_H 00057 00058 00059 00060 00061 //----------------------------END OF GO4 SOURCE FILE ---------------------