driverlistconnector.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 driverlistconnectorH
15 #define driverlistconnectorH
16 
17 #include "driver.h"
18 #include "xnodeconnector.h"
19 //---------------------------------------------------------------------------
20 
21 class Ui_FrmDriver;
23 
24 class QTableWidget;
25 class QLabel;
26 
28  Q_OBJECT
29 public:
31  (const shared_ptr<XDriverList> &node, FrmDriver *item);
32  virtual ~XDriverListConnector() {}
33 protected:
34  virtual void onCatch(const Snapshot &shot, const XListNodeBase::Payload::CatchEvent &e);
35  virtual void onRelease(const Snapshot &shot, const XListNodeBase::Payload::ReleaseEvent &e);
36 protected slots:
37 void cellClicked ( int row, int col);
38 private:
39  shared_ptr<XTouchableNode> m_create, m_release;
40 
41  struct tcons {
42  QLabel *label;
43  shared_ptr<XDriver> driver;
44  shared_ptr<XListener> lsnOnRecord;
45  };
46  typedef std::deque<shared_ptr<tcons> > tconslist;
47  tconslist m_cons;
48 
49  shared_ptr<XListener> m_lsnOnCreateTouched, m_lsnOnReleaseTouched;
50 
51  const xqcon_ptr m_conCreate, m_conRelease;
52  void onRecord(const Snapshot &shot, XDriver *);
53  void onCreateTouched(const Snapshot &shot, XTouchableNode *);
54  void onReleaseTouched(const Snapshot &shot, XTouchableNode *);
55 };
56 
57 
58 #endif

Generated for KAME4 by  doxygen 1.8.3