interfacelistconnector.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 INTERFACELISTCONNECTOR_H_
15 #define INTERFACELISTCONNECTOR_H_
16 
17 #include "interface.h"
18 #include "xnodeconnector.h"
19 
20 class QTableWidget;
21 class QPushButton;
22 
24  Q_OBJECT
25 public:
26  XInterfaceListConnector(const shared_ptr<XInterfaceList> &node, QTableWidget *item);
27  virtual ~XInterfaceListConnector() {}
28 protected:
29  virtual void onCatch(const Snapshot &shot, const XListNodeBase::Payload::CatchEvent &e);
30  virtual void onRelease(const Snapshot &shot, const XListNodeBase::Payload::ReleaseEvent &e);
31 protected slots:
32 void cellClicked ( int row, int col);
33 private:
34  struct tcons {
35  xqcon_ptr condev, concontrol, conport, conaddr;
36  shared_ptr<XInterface> interface;
37  QPushButton *btn;
38  shared_ptr<XListener> lsnOnControlChanged;
39  };
40  typedef std::deque<tcons> tconslist;
41  tconslist m_cons;
42 
43  const shared_ptr<XInterfaceList> m_interfaceList;
44  void onControlChanged(const Snapshot &shot, XValueNodeBase *);
45 };
46 
47 #endif /*INTERFACELISTCONNECTOR_H_*/

Generated for KAME4 by  doxygen 1.8.3