signalgenerator.h
1 /***************************************************************************
2  Copyright (C) 2002-2015 Kentaro Kitagawa
3  kitagawa@phys.s.u-tokyo.ac.jp
4 
5  This program is free software; you can redistribute it and/or
6  modify it under the terms of the GNU Library General Public
7  License as published by the Free Software Foundation; either
8  version 2 of the License, or (at your option) any later version.
9 
10  You should have received a copy of the GNU Library General
11  Public License and a list of authors along with this program;
12  see the files COPYING and AUTHORS.
13 ***************************************************************************/
14 #ifndef signalgeneratorH
15 #define signalgeneratorH
16 
17 #include "primarydriver.h"
18 #include "xnodeconnector.h"
19 
20 class Ui_FrmSG;
22 
23 class DECLSPEC_SHARED XSG : public XPrimaryDriver {
24 public:
25  XSG(const char *name, bool runtime,
26  Transaction &tr_meas, const shared_ptr<XMeasure> &meas);
27  //! usually nothing to do
28  virtual ~XSG() {}
29  //! show all forms belonging to driver
30  virtual void showForms();
31 
32  struct Payload : public XPrimaryDriver::Payload {
33  double freq() const {return m_freq;}
34  private:
35  friend class XSG;
36  double m_freq;
37  };
38 protected:
39  //! Starts up your threads, connects GUI, and activates signals.
40  virtual void start();
41  //! Shuts down your threads, unconnects GUI, and deactivates signals
42  //! This function may be called even if driver has already stopped.
43  virtual void stop();
44 
45  //! This function will be called when raw data are written.
46  //! Implement this function to convert the raw data to the record (Payload).
47  //! \sa analyze()
48  virtual void analyzeRaw(RawDataReader &reader, Transaction &tr) throw (XRecordError&);
49  //! This function is called after committing XPrimaryDriver::analyzeRaw() or XSecondaryDriver::analyze().
50  //! This might be called even if the record is invalid (time() == false).
51  virtual void visualize(const Snapshot &shot);
52 public:
53  //! driver specific part below
54  const shared_ptr<XBoolNode> &rfON() const {return m_rfON;} //!< Activate Output
55  const shared_ptr<XDoubleNode> &freq() const {return m_freq;} //!< freq [MHz]
56  const shared_ptr<XDoubleNode> &oLevel() const {return m_oLevel;} //!< Output Level [dBm]
57  const shared_ptr<XBoolNode> &fmON() const {return m_fmON;} //!< Activate FM
58  const shared_ptr<XBoolNode> &amON() const {return m_amON;} //!< Activate AM
59 protected:
60  virtual void changeFreq(double mhz) = 0;
61  virtual void onRFONChanged(const Snapshot &shot, XValueNodeBase *) = 0;
62  virtual void onOLevelChanged(const Snapshot &shot, XValueNodeBase *) = 0;
63  virtual void onFMONChanged(const Snapshot &shot, XValueNodeBase *) = 0;
64  virtual void onAMONChanged(const Snapshot &shot, XValueNodeBase *) = 0;
65  virtual void onFreqChanged(const Snapshot &shot, XValueNodeBase *);
66 private:
67 
68  const shared_ptr<XBoolNode> m_rfON;
69  const shared_ptr<XDoubleNode> m_freq;
70  const shared_ptr<XDoubleNode> m_oLevel;
71  const shared_ptr<XBoolNode> m_fmON;
72  const shared_ptr<XBoolNode> m_amON;
73 
74  std::deque<xqcon_ptr> m_conUIs;
75  shared_ptr<XListener> m_lsnRFON, m_lsnFreq, m_lsnOLevel, m_lsnFMON, m_lsnAMON;
76 
77  const qshared_ptr<FrmSG> m_form;
78 };//---------------------------------------------------------------------------
79 #endif

Generated for KAME4 by  doxygen 1.8.3