pulserdriverconnector.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 pulserdriverconnectorH
15 #define pulserdriverconnectorH
16 
17 #include "xnodeconnector.h"
18 #include "pulserdriver.h"
19 //---------------------------------------------------------------------------
20 
21 class QTable;
22 class XQGraph;
23 class XXYPlot;
24 class XGraph;
25 
27  Q_OBJECT
28 public:
29  XQPulserDriverConnector(const shared_ptr<XPulser> &node, QTableWidget *item, XQGraph *graph);
30 public:
31  virtual ~XQPulserDriverConnector();
32 
33 protected slots:
34  void cellClicked ( int row, int col);
35  void selectionChanged ();
36 private:
37 
38  void updateGraph(const Snapshot &shot, bool checkselection);
39 
40  shared_ptr<XListener> m_lsnOnPulseChanged;
41  void onPulseChanged(const Snapshot &shot, XDriver*);
42 
43  QTableWidget *const m_pTable;
44  const weak_ptr<XPulser> m_pulser;
45 
46  const shared_ptr<XGraph> m_graph;
47  shared_ptr<XXYPlot> m_barPlot;
48  std::deque<shared_ptr<XXYPlot> > m_plots;
49 };
50 
51 #endif

Generated for KAME4 by  doxygen 1.8.3