qmca  0.0.20
powersupplycontrolpanel.h
Go to the documentation of this file.
1 #ifndef POWERSUPPLYCONTROLPANEL_H
2 #define POWERSUPPLYCONTROLPANEL_H
3 
4 #include <QObject>
5 #include <QFrame>
6 #include <QList>
7 
8 class EpicsPowerSupply;
9 class QGridLayout;
10 class QPushButton;
11 
12 class PowerSupplyControlPanel : public QFrame
13 {
14  Q_OBJECT;
15 
16  public:
17  PowerSupplyControlPanel(QWidget *parent);
18  virtual ~PowerSupplyControlPanel();
19 
20  void append(EpicsPowerSupply *hvps);
21 
22  private:
23  QGridLayout *m_GridLayout;
24  QList<EpicsPowerSupply*> m_PowerSupplyList;
25 };
26 
27 #endif
PowerSupplyControlPanel(QWidget *parent)
void append(EpicsPowerSupply *hvps)
QList< EpicsPowerSupply * > m_PowerSupplyList