QGEGainFrame.hh
Go to the documentation of this file.00001
00002 #ifndef _QELE_GAIN_FRAME_HH_
00003 #define _QELE_GAIN_FRAME_HH_
00004
00005 #include "QGuiCompositeFrame.hh"
00006
00007 class QGuiDropDownList;
00008
00009 class QGEGainFrame: public QGuiCompositeFrame
00010 {
00011 public:
00012 QGEGainFrame(const TGWindow* parent);
00013
00014 virtual ~QGEGainFrame();
00015
00016 Bool_t SetGain(const std::string& gain);
00017
00018 const std::string& GetGain() const;
00019
00020 void GainChanged() { Emit("GainChanged()"); }
00021
00022 void Lock(Bool_t doLock);
00023 private:
00024
00025 QGuiDropDownList* fGainWidget;
00026
00027 ClassDef(QGEGainFrame,0)
00028 };
00029
00030 #endif