driverlistconnector.cpp
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 //---------------------------------------------------------------------------
15 #include "driverlistconnector.h"
16 #include "driver.h"
17 #include "measure.h"
18 #include <QLineEdit>
19 #include <QPushButton>
20 #include <QTableWidget>
21 #include <QLabel>
22 #include "ui_drivertool.h"
23 #include "ui_drivercreate.h"
24 
26 
27 XDriverListConnector::XDriverListConnector
28 (const shared_ptr<XDriverList> &node, FrmDriver *item)
29  : XListQConnector(node, item->m_tblDrivers),
30  m_create(XNode::createOrphan<XTouchableNode>("Create", true)),
31  m_release(XNode::createOrphan<XTouchableNode>("Release", true)),
32  m_conCreate(xqcon_create<XQButtonConnector>(m_create, item->m_btnNew)),
33  m_conRelease(xqcon_create<XQButtonConnector>(m_release, item->m_btnDelete)) {
34 
35  item->m_btnNew->setIcon(
36  QApplication::style()->standardIcon(QStyle::SP_FileDialogStart));
37  item->m_btnDelete->setIcon(
38  QApplication::style()->standardIcon(QStyle::SP_DialogCloseButton));
39 
40  connect(m_pItem, SIGNAL( cellClicked( int, int)),
41  this, SLOT(cellClicked( int, int)) );
42 
43  m_pItem->setColumnCount(3);
44  double def = 50;
45  m_pItem->setColumnWidth(0, (int)(def * 1.5));
46  m_pItem->setColumnWidth(1, (int)(def * 1.0));
47  m_pItem->setColumnWidth(2, (int)(def * 4.5));
48  QStringList labels;
49  labels += i18n("Driver");
50  labels += i18n("Type");
51  labels += i18n("Recorded Time");
52  m_pItem->setHorizontalHeaderLabels(labels);
53 
54  Snapshot shot( *node);
55  if(shot.size()) {
56  for(int idx = 0; idx < shot.size(); ++idx) {
58  e.emitter = node.get();
59  e.caught = shot.list()->at(idx);
60  e.index = idx;
61  onCatch(shot, e);
62  }
63  }
64 
65  m_create->iterate_commit([=](Transaction &tr){
66  m_lsnOnCreateTouched = tr[ *m_create].onTouch().connectWeakly(shared_from_this(),
67  &XDriverListConnector::onCreateTouched, XListener::FLAG_MAIN_THREAD_CALL);
68  });
69  m_release->iterate_commit([=](Transaction &tr){
70  m_lsnOnReleaseTouched = tr[ *m_release].onTouch().connectWeakly(shared_from_this(),
71  &XDriverListConnector::onReleaseTouched, XListener::FLAG_MAIN_THREAD_CALL);
72  });
73 }
74 
75 void
76 XDriverListConnector::onCatch(const Snapshot &shot, const XListNodeBase::Payload::CatchEvent &e) {
77  shared_ptr<XDriver> driver(static_pointer_cast<XDriver>(e.caught));
78 
79  int i = m_pItem->rowCount();
80  m_pItem->insertRow(i);
81  m_pItem->setItem(i, 0, new QTableWidgetItem(driver->getLabel().c_str()));
82  // typename is not set at this moment
83  m_pItem->setItem(i, 1, new QTableWidgetItem(driver->getTypename().c_str()));
84 
85  m_cons.push_back(std::make_shared<tcons>());
86  m_cons.back()->label = new QLabel(m_pItem);
87  m_pItem->setCellWidget(i, 2, m_cons.back()->label);
88  m_cons.back()->driver = driver;
89  driver->iterate_commit([=](Transaction &tr){
90  m_cons.back()->lsnOnRecord = tr[ *driver].onRecord().connectWeakly(
91  shared_from_this(), &XDriverListConnector::onRecord,
92  XListener::FLAG_MAIN_THREAD_CALL | XListener::FLAG_AVOID_DUP | XListener::FLAG_DELAY_ADAPTIVE);
93  });
94 
95  assert(m_pItem->rowCount() == (int)m_cons.size());
96 }
97 void
98 XDriverListConnector::onRelease(const Snapshot &shot, const XListNodeBase::Payload::ReleaseEvent &e) {
99  for(auto it = m_cons.begin(); it != m_cons.end();) {
100  assert(m_pItem->rowCount() == (int)m_cons.size());
101  if(( *it)->driver == e.released) {
102  for(int i = 0; i < m_pItem->rowCount(); i++) {
103  if(m_pItem->cellWidget(i, 2) == ( *it)->label)
104  m_pItem->removeRow(i);
105  }
106  it = m_cons.erase(it);
107  }
108  else
109  it++;
110  }
111 }
112 void
113 XDriverListConnector::cellClicked ( int row, int col) {
114  for(auto it = m_cons.begin(); it != m_cons.end(); it++) {
115  if(m_pItem->cellWidget(row, 2) == ( *it)->label) {
116  if(col < 3) ( *it)->driver->showForms();
117  }
118  }
119 }
120 
121 void
122 XDriverListConnector::onRecord(const Snapshot &shot, XDriver *driver) {
123  for(tconslist::iterator it = m_cons.begin(); it != m_cons.end(); it++) {
124  if(( *it)->driver.get() == driver) {
125  ( *it)->label->setText(shot[ *driver].time().getTimeStr());
126  }
127  }
128 }
129 void
130 XDriverListConnector::onCreateTouched(const Snapshot &shot, XTouchableNode *) {
131  qshared_ptr<DlgCreateDriver> dlg(new DlgCreateDriver(g_pFrmMain));
132  dlg->setModal(true);
133  static int num = 0;
134  num++;
135  dlg->m_edName->setText(QString("NewDriver%1").arg(num));
136 
137  dlg->m_lstType->clear();
138  for(unsigned int i = 0; i < XDriverList::typelabels().size(); i++) {
139  dlg->m_lstType->addItem(XDriverList::typelabels()[i].c_str());
140  }
141 
142  dlg->m_lstType->setCurrentRow(-1);
143  if(dlg->exec() == QDialog::Rejected) {
144  return;
145  }
146  int idx = dlg->m_lstType->currentRow();
147  shared_ptr<XNode> driver;
148  if((idx >= 0) && (idx < (int)XDriverList::typenames().size())) {
149  if(m_list->getChild(dlg->m_edName->text().toUtf8().data())) {
150  gErrPrint(i18n("Duplicated name."));
151  }
152  else {
153  driver = m_list->createByTypename(XDriverList::typenames()[idx],
154  dlg->m_edName->text().toUtf8().data());
155  }
156  }
157  if( !driver)
158  gErrPrint(i18n("Driver creation failed."));
159 }
160 void
161 XDriverListConnector::onReleaseTouched(const Snapshot &shot, XTouchableNode *) {
162  shared_ptr<XDriver> driver;
163  for(tconslist::iterator it = m_cons.begin(); it != m_cons.end(); it++) {
164  if(( *it)->label == m_pItem->cellWidget(m_pItem->currentRow(), 2)) {
165  driver = ( *it)->driver;
166  }
167  }
168  if(driver) m_list->release(driver);
169 }

Generated for KAME4 by  doxygen 1.8.3