// $Id$ //----------------------------------------------------------------------- // The GSI Online Offline Object Oriented (Go4) Project // Experiment Data Processing at EE department, GSI //----------------------------------------------------------------------- // Copyright (C) 2000- GSI Helmholtzzentrum fuer Schwerionenforschung GmbH // Planckstr. 1, 64291 Darmstadt, Germany // Contact: http://go4.gsi.de //----------------------------------------------------------------------- // This software can be used under the license agreements as stated // in Go4License.txt file which is part of the distribution. //----------------------------------------------------------------------- #ifndef TGO4HISDRAWOPTIONSSHORT_H #define TGO4HISDRAWOPTIONSSHORT_H #include "QGo4Widget.h" #include "ui_TGo4HisDrawOptionsShort.h" class TGo4HisDrawOptionsShort : public QGo4Widget, public Ui::TGo4HisDrawOptionsShort { Q_OBJECT public: TGo4HisDrawOptionsShort(QWidget *parent = nullptr, const char *name = nullptr); void ChangeColor(int kind); void SetDrawOpt(int kind, int value, const char *dropt); public slots: virtual void SlotXlin(); virtual void SlotXlog(); virtual void SlotYlin(); virtual void SlotYlog(); virtual void SlotZlin(); virtual void SlotZlog(); virtual void SlotD1his(); virtual void SlotD1line(); virtual void SlotD2scatter(); virtual void SlotD2pixel(); virtual void SlotD2surfcol(); virtual void SlotD2lego(); virtual void SlotD2contfill(); virtual void SlotD2contline(); virtual void SlotLineColor(); virtual void SlotFillColor(); virtual void SlotMarkerColor(); }; #endif