entrylistconnector.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 #include "entrylistconnector.h"
15 #include "analyzer.h"
16 #include "driver.h"
17 #include <QLabel>
18 #include <QPushButton>
19 #include <QCheckBox>
20 #include <QTableWidget>
21 #include <QDoubleSpinBox>
22 
23 //---------------------------------------------------------------------------
24 
25 XEntryListConnector::XEntryListConnector
26 (const shared_ptr<XScalarEntryList> &node, QTableWidget *item, const shared_ptr<XChartList> &chartlist)
27  : XListQConnector(node, item),
28  m_chartList(chartlist) {
29  connect(item, SIGNAL( cellClicked( int, int)),
30  this, SLOT(cellClicked( int, int)) );
31  m_pItem->setColumnCount(4);
32  const double def = 50;
33  m_pItem->setColumnWidth(0, (int)(def * 2.5));
34  m_pItem->setColumnWidth(1, (int)(def * 2.0));
35  m_pItem->setColumnWidth(2, (int)(def * 0.8));
36  m_pItem->setColumnWidth(3, (int)(def * 2.5));
37  QStringList labels;
38  labels += i18n("Entry");
39  labels += i18n("Value");
40  labels += i18n("Store");
41  labels += i18n("Delta");
42  m_pItem->setHorizontalHeaderLabels(labels);
43 
44  Snapshot shot( *node);
45  if(shot.size()) {
46  for(int idx = 0; idx < shot.size(); ++idx) {
48  e.emitter = node.get();
49  e.caught = shot.list()->at(idx);
50  e.index = idx;
51  onCatch(shot, e);
52  }
53  }
54 }
55 void
56 XEntryListConnector::onRecord(const Snapshot &shot, XDriver *driver) {
57  for(tconslist::iterator it = m_cons.begin(); it != m_cons.end(); it++) {
58  if(( *it)->entry->driver().get() == driver) {
59  ( *it)->label->setText(shot[ *( *it)->entry->value()].to_str());
60  }
61  }
62 }
63 
64 void
65 XEntryListConnector::cellClicked ( int row, int col) {
66  switch(col) {
67  case 0:
68  case 1: {
69  Snapshot shot( *m_chartList);
70  if(shot.size()) {
71  if((row >= 0) && (row < (int)shot.list()->size())) {
72  dynamic_pointer_cast<XValChart>(shot.list()->at(row))->showChart();
73  }
74  }
75  }
76  break;
77  default:
78  break;
79  }
80 }
81 void
82 XEntryListConnector::onRelease(const Snapshot &shot, const XListNodeBase::Payload::ReleaseEvent &e) {
83  for(tconslist::iterator it = m_cons.begin(); it != m_cons.end();) {
84  assert(m_pItem->rowCount() == (int)m_cons.size());
85  if(( *it)->entry == e.released) {
86  for(int i = 0; i < m_pItem->rowCount(); i++) {
87  if(m_pItem->cellWidget(i, 1) == ( *it)->label) m_pItem->removeRow(i);
88  }
89  it = m_cons.erase(it);
90  }
91  else {
92  it++;
93  }
94  }
95 }
96 void
97 XEntryListConnector::onCatch(const Snapshot &shot, const XListNodeBase::Payload::CatchEvent &e) {
98  shared_ptr<XScalarEntry> entry = static_pointer_cast<XScalarEntry>(e.caught);
99  int i = m_pItem->rowCount();
100  m_pItem->insertRow(i);
101  m_pItem->setItem(i, 0, new QTableWidgetItem(entry->getLabel().c_str()));
102 
103  shared_ptr<XDriver> driver = entry->driver();
104 
105  m_cons.push_back(std::make_shared<tcons>());
106  m_cons.back()->entry = entry;
107  m_cons.back()->label = new QLabel(m_pItem);
108  m_pItem->setCellWidget(i, 1, m_cons.back()->label);
109  QCheckBox *ckbStore = new QCheckBox(m_pItem);
110  m_cons.back()->constore = xqcon_create<XQToggleButtonConnector>(entry->store(), ckbStore);
111  m_pItem->setCellWidget(i, 2, ckbStore);
112  QDoubleSpinBox *numDelta = new QDoubleSpinBox(m_pItem);
113  numDelta->setRange(-1, 1e4);
114  numDelta->setSingleStep(1);
115  numDelta->setValue(0);
116  numDelta->setDecimals(5);
117  m_cons.back()->condelta = xqcon_create<XQDoubleSpinBoxConnector>(entry->delta(), numDelta);
118  m_pItem->setCellWidget(i, 3, numDelta);
119  m_cons.back()->driver = driver;
120  driver->iterate_commit([=](Transaction &tr){
121  m_cons.back()->lsnOnRecord = tr[ *driver].onRecord().connectWeakly(
122  shared_from_this(), &XEntryListConnector::onRecord,
123  XListener::FLAG_MAIN_THREAD_CALL | XListener::FLAG_AVOID_DUP | XListener::FLAG_DELAY_ADAPTIVE);
124  });
125 
126  assert(m_pItem->rowCount() == (int)m_cons.size());
127 }
128 

Generated for KAME4 by  doxygen 1.8.3