graphlistconnector.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 
16 #include "graphlistconnector.h"
17 
18 #include <QComboBox>
19 #include <QPushButton>
20 #include <QTableWidget>
21 #include <QApplication>
22 
23 #include "recorder.h"
24 #include "analyzer.h"
25 
26 //---------------------------------------------------------------------------
27 
28 XGraphListConnector::XGraphListConnector(const shared_ptr<XGraphList> &node, QTableWidget *item,
29  QPushButton *btnnew, QPushButton *btndelete) :
30  XListQConnector(node, item),
31  m_graphlist(node),
32  m_newGraph(XNode::createOrphan<XTouchableNode>("NewGraph", true)),
33  m_deleteGraph(XNode::createOrphan<XTouchableNode>("DeleteGraph", true)),
34  m_conNewGraph(xqcon_create<XQButtonConnector>(m_newGraph, btnnew)),
35  m_conDeleteGraph(xqcon_create<XQButtonConnector>(m_deleteGraph, btndelete)) {
36 
37  btnnew->setIcon(
38  QApplication::style()->standardIcon(QStyle::SP_FileDialogStart));
39  btndelete->setIcon(
40  QApplication::style()->standardIcon(QStyle::SP_DialogCloseButton));
41 
42  connect(item, SIGNAL( cellClicked( int, int)),
43  this, SLOT(cellClicked( int, int)) );
44  m_pItem->setColumnCount(4);
45  const double def = 50;
46  m_pItem->setColumnWidth(0, (int)(def * 2.0));
47  m_pItem->setColumnWidth(1, (int)(def * 2.0));
48  m_pItem->setColumnWidth(2, (int)(def * 2.0));
49  m_pItem->setColumnWidth(3, (int)(def * 2.0));
50  QStringList labels;
51  labels += i18n("Name");
52  labels += i18n("Axis X");
53  labels += i18n("Axis Y");
54  labels += i18n("Axis Z");
55  m_pItem->setHorizontalHeaderLabels(labels);
56 
57  Snapshot shot( *node);
58  if(shot.size()) {
59  for(int idx = 0; idx < shot.size(); ++idx) {
61  e.emitter = node.get();
62  e.caught = shot.list()->at(idx);
63  e.index = idx;
64  onCatch(shot, e);
65  }
66  }
67 
68  m_newGraph->iterate_commit([=](Transaction &tr){
69  m_lsnNewGraph = tr[ *m_newGraph].onTouch().connectWeakly(
70  shared_from_this(), &XGraphListConnector::onNewGraph, XListener::FLAG_MAIN_THREAD_CALL);
71  });
72  m_deleteGraph->iterate_commit([=](Transaction &tr){
73  m_lsnDeleteGraph = tr[ *m_deleteGraph].onTouch().connectWeakly(
74  shared_from_this(), &XGraphListConnector::onDeleteGraph, XListener::FLAG_MAIN_THREAD_CALL);
75  });
76 }
77 
78 void
79 XGraphListConnector::onNewGraph (const Snapshot &shot, XTouchableNode *) {
80  static int graphidx = 1;
81  m_graphlist->createByTypename("", formatString("Graph-%d", graphidx++));
82 }
83 void
84 XGraphListConnector::onDeleteGraph (const Snapshot &shot, XTouchableNode *) {
85  int n = m_pItem->currentRow();
86  Snapshot shot_this( *m_graphlist);
87  if(shot_this.size()) {
88  if((n >= 0) && (n < (int)shot_this.list()->size())) {
89  shared_ptr<XNode> node = shot_this.list()->at(n);
90  m_graphlist->release(node);
91  }
92  }
93 }
94 void
95 XGraphListConnector::cellClicked ( int row, int col) {
96  switch(col) {
97  case 0: {
98  Snapshot shot( *m_graphlist);
99  if(shot.size()) {
100  if((row >= 0) && (row < (int)shot.list()->size())) {
101  dynamic_pointer_cast<XValGraph>(shot.list()->at(row))->showGraph();
102  }
103  }
104  }
105  break;
106  default:
107  break;
108  }
109 }
110 void
111 XGraphListConnector::onRelease(const Snapshot &shot, const XListNodeBase::Payload::ReleaseEvent &e) {
112  for(auto it = m_cons.begin(); it != m_cons.end();) {
113  if(it->node == e.released) {
114  for(int i = 0; i < m_pItem->rowCount(); i++) {
115  if(m_pItem->cellWidget(i, 1) == it->widget) m_pItem->removeRow(i);
116  }
117  it = m_cons.erase(it);
118  }
119  else {
120  it++;
121  }
122  }
123 }
124 void
125 XGraphListConnector::onCatch(const Snapshot &shot, const XListNodeBase::Payload::CatchEvent &e) {
126  shared_ptr<XValGraph> graph = static_pointer_cast<XValGraph>(e.caught);
127  int i = m_pItem->rowCount();
128  m_pItem->insertRow(i);
129  m_pItem->setItem(i, 0, new QTableWidgetItem(graph->getLabel().c_str()));
130 
131  Snapshot shot_entries( *m_graphlist->entries());
132  struct tcons con;
133  con.node = e.caught;
134  QComboBox *cmbX = new QComboBox(m_pItem);
135  con.conx = xqcon_create<XQComboBoxConnector>(graph->axisX(), cmbX, shot_entries);
136  m_pItem->setCellWidget(i, 1, cmbX);
137  QComboBox *cmbY1 = new QComboBox(m_pItem);
138  con.cony1 = xqcon_create<XQComboBoxConnector>(graph->axisY1(), cmbY1, shot_entries);
139  m_pItem->setCellWidget(i, 2, cmbY1);
140  QComboBox *cmbZ = new QComboBox(m_pItem);
141  con.conz = xqcon_create<XQComboBoxConnector>(graph->axisZ(), cmbZ, shot_entries);
142  m_pItem->setCellWidget(i, 3, cmbZ);
143 
144  con.widget = m_pItem->cellWidget(i, 1);
145  m_cons.push_back(con);
146 }

Generated for KAME4 by  doxygen 1.8.3