14 #include "pulserdriverconnector.h"
15 #include "pulserdriver.h"
17 #include <QTableWidget>
18 #include <QHeaderView>
20 #include "graphwidget.h"
22 XQPulserDriverConnector::XQPulserDriverConnector(
23 const shared_ptr<XPulser> &node, QTableWidget *item,
XQGraph *qgraph)
29 shared_ptr<XPulser> pulser(node);
31 m_lsnOnPulseChanged = tr[ *pulser].onRecord().connectWeakly(
32 shared_from_this(), &XQPulserDriverConnector::onPulseChanged,
33 XListener::FLAG_MAIN_THREAD_CALL | XListener::FLAG_AVOID_DUP | XListener::FLAG_DELAY_ADAPTIVE);
35 m_pTable->setColumnCount(3);
37 m_pTable->setColumnWidth(0, (
int)(def * 1.5));
38 m_pTable->setColumnWidth(1, (
int)(def * 1.5));
39 m_pTable->setColumnWidth(2, (
int)(def * 3.0));
41 labels +=
"Time [ms]";
42 labels +=
"Diff [ms]";
43 labels +=
"Pattern (Port 0, 1, ...)";
44 m_pTable->setHorizontalHeaderLabels(labels);
48 QHeaderView *header = m_pTable->verticalHeader();
49 #if QT_VERSION >= 0x50000
50 header->setSectionResizeMode(QHeaderView::Fixed);
52 header->setResizeMode(QHeaderView::Fixed);
54 connect(m_pTable, SIGNAL( cellClicked(
int,
int)),
55 this, SLOT(cellClicked(
int,
int)) );
56 connect(m_pTable, SIGNAL( itemSelectionChanged()),
this, SLOT(selectionChanged()) );
62 shared_ptr<XAxis> axisx = static_pointer_cast<
XAxis>(axes_list.at(0));
63 shared_ptr<XAxis> axisy = static_pointer_cast<
XAxis>(axes_list.at(1));
65 tr[ *axisy->ticLabelFormat()] =
"%.0f";
67 tr[ *m_graph->backGround()] = QColor(0x0A, 0x05, 0x45).rgb();
68 tr[ *m_graph->titleColor()] = clWhite;
69 tr[ *m_graph->drawLegends()] =
false;
70 tr[ *axisx->label()] =
"Time [ms]";
71 tr[ *axisx->ticColor()] = clWhite;
72 tr[ *axisx->labelColor()] = clWhite;
73 tr[ *axisx->ticLabelColor()] = clWhite;
74 tr[ *axisy->label()] =
"Port";
75 tr[ *axisy->majorTicScale()] = 1;
76 tr[ *axisy->autoFreq()] =
false;
77 tr[ *axisy->displayMinorTics()] =
false;
78 tr[ *axisy->ticColor()] = clWhite;
79 tr[ *axisy->labelColor()] = clWhite;
80 tr[ *axisy->ticLabelColor()] = clWhite;
82 for(
int i=0; i < XPulser::NUM_DO_PORTS; i++) {
83 shared_ptr<XXYPlot> plot = m_graph->plots()->create<
XXYPlot>(
84 tr, formatString(
"Port%d", i).c_str(),
true, ref(tr), m_graph);
85 tr[ *plot->label()] = i18n(
"Port%1").arg(i);
86 tr[ *plot->axisX()] = axisx;
87 tr[ *plot->axisY()] = axisy;
88 m_plots.push_back(plot);
89 tr[ *plot->drawPoints()] =
false;
90 tr[ *plot->displayMajorGrid()] =
false;
91 tr[ *plot->lineColor()] = QColor(0x4e, 0xff, 0x10).rgb();
95 m_barPlot = m_graph->plots()->create<
XXYPlot>(tr,
"Bars",
true, ref(tr), m_graph);
96 tr[ *m_barPlot->label()] = i18n(
"Bars");
97 tr[ *m_barPlot->axisX()] = axisx;
98 tr[ *m_barPlot->axisY()] = axisy;
99 tr[ *m_barPlot->drawBars()] =
true;
100 tr[ *m_barPlot->drawLines()] =
false;
101 tr[ *m_barPlot->drawPoints()] =
false;
102 tr[ *m_barPlot->barColor()] = QColor(0x4A, 0x3D, 0x87).rgb();
103 tr[ *m_barPlot->displayMajorGrid()] =
true;
104 tr[ *m_barPlot->majorGridColor()] = QColor(0x4A, 0x4A, 0).rgb();
112 tr[ *m_graph->label()] = i18n(
"Pulse Patterns");
116 XQPulserDriverConnector::~XQPulserDriverConnector() {
120 XQPulserDriverConnector::cellClicked(
int ,
int ) {
124 XQPulserDriverConnector::selectionChanged() {
125 shared_ptr<XPulser> pulser(m_pulser);
127 updateGraph(shot,
true);
130 XQPulserDriverConnector::updateGraph(
const Snapshot &shot,
bool checkselection) {
131 shared_ptr<XPulser> pulser(m_pulser);
132 const XPulser::Payload::RelPatList &relpatlist(shot[ *pulser].relPatList());
134 auto &barplot_points(tr[ *m_barPlot].points());
135 tr[ *m_barPlot->maxCount()] = relpatlist.size();
136 barplot_points.clear();
137 std::vector<decltype(&barplot_points)> plots_points;
138 for(
auto it = m_plots.begin();
139 it != m_plots.end(); it++) {
140 tr[ *(*it)->maxCount()] = relpatlist.size() * 2;
141 tr[ **it].points().clear();
142 plots_points.push_back(&tr[ **it].points());
144 uint32_t lastpat = relpatlist.empty() ? 0 :
145 relpatlist[relpatlist.size() - 1].pattern;
146 double firsttime = -0.001, lasttime = 100;
149 for(XPulser::Payload::RelPatList::const_iterator it = relpatlist.begin();
150 it != relpatlist.end(); it++) {
151 double time = it->time * pulser->resolution();
152 auto tableitem = m_pTable->item(i + 1, 0);
153 if(tableitem && tableitem->isSelected()) {
154 if(firsttime < 0) firsttime = time;
158 for(
int j = 0; j < (int)plots_points.size(); j++) {
159 plots_points[j]->push_back(
XGraph::ValPoint(time, j + 0.7 * ((lastpat >> j) % 2)));
160 plots_points[j]->push_back(
XGraph::ValPoint(time, j + 0.7 * ((it->pattern >> j) % 2)));
162 lastpat = it->pattern;
166 if(lasttime == firsttime) {
170 double width = lasttime - firsttime;
171 firsttime -= width / 10;
172 lasttime += width / 10;
173 shared_ptr<XAxis> axisx = tr[ *m_barPlot->axisX()];
174 tr[ *axisx->autoScale()] =
false;
175 tr[ *axisx->minValue()] = firsttime;
176 tr[ *axisx->maxValue()] = lasttime;
178 tr.mark(tr[ *m_graph].onUpdate(), m_graph.get());
183 XQPulserDriverConnector::onPulseChanged(
const Snapshot &shot,
XDriver *) {
184 shared_ptr<XPulser> pulser(m_pulser);
185 if(shot[ *pulser].time()) {
186 m_pTable->blockSignals(
true);
187 m_pTable->setRowCount(shot[ *pulser].relPatList().size());
189 for(XPulser::Payload::RelPatList::const_iterator it = shot[ *pulser].relPatList().begin();
190 it != shot[ *pulser].relPatList().end(); it++) {
192 m_pTable->setItem(i, 0,
new QTableWidgetItem(formatString(
"%.4f", it->time * pulser->resolution())));
193 m_pTable->setItem(i, 1,
new QTableWidgetItem(formatString(
"%.4f", it->toappear * pulser->resolution())));
195 uint32_t pat = it->pattern;
196 for(
int j = 0; j < XPulser::NUM_DO_PORTS; j++) {
198 s += (pat % 2) ?
"1" :
"0";
201 m_pTable->setItem(i, 2,
new QTableWidgetItem(s));
204 m_pTable->blockSignals(
false);
206 updateGraph(shot,
false);
211 for(
auto it = m_plots.begin();
212 it != m_plots.end(); it++) {
213 tr[ **it].points().clear();
215 tr[ *m_barPlot].points().clear();
216 tr.mark(tr[ *m_graph].onUpdate(), m_graph.get());