15 #include "driverlistconnector.h"
19 #include <QPushButton>
20 #include <QTableWidget>
22 #include "ui_drivertool.h"
23 #include "ui_drivercreate.h"
27 XDriverListConnector::XDriverListConnector
28 (
const shared_ptr<XDriverList> &node,
FrmDriver *item)
35 item->m_btnNew->setIcon(
36 QApplication::style()->standardIcon(QStyle::SP_FileDialogStart));
37 item->m_btnDelete->setIcon(
38 QApplication::style()->standardIcon(QStyle::SP_DialogCloseButton));
40 connect(m_pItem, SIGNAL( cellClicked(
int,
int)),
41 this, SLOT(cellClicked(
int,
int)) );
43 m_pItem->setColumnCount(3);
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));
49 labels += i18n(
"Driver");
50 labels += i18n(
"Type");
51 labels += i18n(
"Recorded Time");
52 m_pItem->setHorizontalHeaderLabels(labels);
56 for(
int idx = 0; idx < shot.size(); ++idx) {
58 e.emitter = node.get();
59 e.caught = shot.list()->at(idx);
66 m_lsnOnCreateTouched = tr[ *m_create].onTouch().connectWeakly(shared_from_this(),
67 &XDriverListConnector::onCreateTouched, XListener::FLAG_MAIN_THREAD_CALL);
70 m_lsnOnReleaseTouched = tr[ *m_release].onTouch().connectWeakly(shared_from_this(),
71 &XDriverListConnector::onReleaseTouched, XListener::FLAG_MAIN_THREAD_CALL);
77 shared_ptr<XDriver> driver(static_pointer_cast<XDriver>(e.caught));
79 int i = m_pItem->rowCount();
80 m_pItem->insertRow(i);
81 m_pItem->setItem(i, 0,
new QTableWidgetItem(driver->getLabel().c_str()));
83 m_pItem->setItem(i, 1,
new QTableWidgetItem(driver->getTypename().c_str()));
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;
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);
95 assert(m_pItem->rowCount() == (int)m_cons.size());
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);
106 it = m_cons.erase(it);
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();
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());
135 dlg->m_edName->setText(QString(
"NewDriver%1").arg(num));
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());
142 dlg->m_lstType->setCurrentRow(-1);
143 if(dlg->exec() == QDialog::Rejected) {
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."));
153 driver = m_list->createByTypename(XDriverList::typenames()[idx],
154 dlg->m_edName->text().toUtf8().data());
158 gErrPrint(i18n(
"Driver creation failed."));
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;
168 if(driver) m_list->release(driver);