]> sigrok.org Git - pulseview.git/blame - pv/views/tabular_decoder/view.cpp
TabularDecView: Hide vertical header
[pulseview.git] / pv / views / tabular_decoder / view.cpp
CommitLineData
24d69d27
SA
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2020 Soeren Apel <soeren@apelpie.net>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <climits>
21
f54e68b0 22#include <QApplication>
24d69d27
SA
23#include <QDebug>
24#include <QFileDialog>
f54e68b0
SA
25#include <QFontMetrics>
26#include <QHeaderView>
24d69d27
SA
27#include <QLabel>
28#include <QMenu>
29#include <QMessageBox>
30#include <QToolBar>
31#include <QVBoxLayout>
32
33#include <libsigrokdecode/libsigrokdecode.h>
34
35#include "view.hpp"
36
37#include "pv/globalsettings.hpp"
9a35b05d 38#include "pv/session.hpp"
24d69d27
SA
39#include "pv/util.hpp"
40#include "pv/data/decode/decoder.hpp"
41
42using pv::data::DecodeSignal;
43using pv::data::SignalBase;
44using pv::data::decode::Decoder;
45using pv::util::Timestamp;
46
f54e68b0 47using std::make_shared;
24d69d27
SA
48using std::shared_ptr;
49
50namespace pv {
51namespace views {
52namespace tabular_decoder {
53
be0f5903
SA
54const char* SaveTypeNames[SaveTypeCount] = {
55 "CSV, commas escaped",
56 "CSV, fields quoted"
57};
58
f54e68b0
SA
59QSize QCustomTableView::minimumSizeHint() const
60{
61 QSize size(QTableView::sizeHint());
62
63 int width = 0;
64 for (int i = 0; i < horizontalHeader()->count(); i++)
65 if (!horizontalHeader()->isSectionHidden(i))
88a25978 66 width += horizontalHeader()->sectionSize(i);
f54e68b0
SA
67
68 size.setWidth(width + (horizontalHeader()->count() * 1));
69
70 return size;
71}
72
73QSize QCustomTableView::sizeHint() const
74{
75 return minimumSizeHint();
76}
77
24d69d27
SA
78
79View::View(Session &session, bool is_main_view, QMainWindow *parent) :
80 ViewBase(session, is_main_view, parent),
81
82 // Note: Place defaults in View::reset_view_state(), not here
83 parent_(parent),
84 decoder_selector_(new QComboBox()),
85 save_button_(new QToolButton()),
86 save_action_(new QAction(this)),
f54e68b0 87 table_view_(new QCustomTableView()),
24d69d27 88 model_(new AnnotationCollectionModel()),
6d46525f 89 signal_(nullptr)
24d69d27
SA
90{
91 QVBoxLayout *root_layout = new QVBoxLayout(this);
92 root_layout->setContentsMargins(0, 0, 0, 0);
93 root_layout->addWidget(table_view_);
94
95 // Create toolbar
96 QToolBar* toolbar = new QToolBar();
97 toolbar->setContextMenuPolicy(Qt::PreventContextMenu);
98 parent->addToolBar(toolbar);
99
100 // Populate toolbar
101 toolbar->addWidget(new QLabel(tr("Decoder:")));
102 toolbar->addWidget(decoder_selector_);
103 toolbar->addSeparator();
104 toolbar->addWidget(save_button_);
105
106 connect(decoder_selector_, SIGNAL(currentIndexChanged(int)),
107 this, SLOT(on_selected_decoder_changed(int)));
108
109 // Configure widgets
110 decoder_selector_->setSizeAdjustPolicy(QComboBox::AdjustToContents);
111
112 // Configure actions
113 save_action_->setText(tr("&Save..."));
114 save_action_->setIcon(QIcon::fromTheme("document-save-as",
115 QIcon(":/icons/document-save-as.png")));
116 save_action_->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_S));
117 connect(save_action_, SIGNAL(triggered(bool)),
118 this, SLOT(on_actionSave_triggered()));
119
120 QMenu *save_menu = new QMenu();
121 connect(save_menu, SIGNAL(triggered(QAction*)),
122 this, SLOT(on_actionSave_triggered(QAction*)));
123
be0f5903
SA
124 for (int i = 0; i < SaveTypeCount; i++) {
125 QAction *const action = save_menu->addAction(tr(SaveTypeNames[i]));
126 action->setData(qVariantFromValue(i));
127 }
128
24d69d27
SA
129 save_button_->setMenu(save_menu);
130 save_button_->setDefaultAction(save_action_);
131 save_button_->setPopupMode(QToolButton::MenuButtonPopup);
132
133 // Set up the table view
134 table_view_->setModel(model_);
9a35b05d 135 table_view_->setSelectionBehavior(QAbstractItemView::SelectRows);
be0f5903 136 table_view_->setSelectionMode(QAbstractItemView::ContiguousSelection);
24d69d27
SA
137 table_view_->setSortingEnabled(true);
138 table_view_->sortByColumn(0, Qt::AscendingOrder);
139
f54e68b0
SA
140 const int font_height = QFontMetrics(QApplication::font()).height();
141 table_view_->verticalHeader()->setDefaultSectionSize((font_height * 5) / 4);
2a89c44b 142 table_view_->verticalHeader()->setVisible(false);
f54e68b0 143
88a25978
SA
144 table_view_->horizontalHeader()->setStretchLastSection(true);
145 table_view_->horizontalHeader()->setCascadingSectionResizes(true);
146 table_view_->horizontalHeader()->setSectionsMovable(true);
9a35b05d 147 table_view_->horizontalHeader()->setContextMenuPolicy(Qt::CustomContextMenu);
f54e68b0
SA
148
149 table_view_->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
150 parent->setSizePolicy(table_view_->sizePolicy());
151
9a35b05d
SA
152 connect(table_view_, SIGNAL(clicked(const QModelIndex&)),
153 this, SLOT(on_table_item_clicked(const QModelIndex&)));
154 connect(table_view_, SIGNAL(doubleClicked(const QModelIndex&)),
155 this, SLOT(on_table_item_double_clicked(const QModelIndex&)));
156 connect(table_view_->horizontalHeader(), SIGNAL(customContextMenuRequested(const QPoint&)),
157 this, SLOT(on_table_header_requested(const QPoint&)));
158
24d69d27
SA
159 reset_view_state();
160}
161
162ViewType View::get_type() const
163{
164 return ViewTypeTabularDecoder;
165}
166
167void View::reset_view_state()
168{
169 ViewBase::reset_view_state();
170
171 decoder_selector_->clear();
172}
173
174void View::clear_decode_signals()
175{
176 ViewBase::clear_decode_signals();
177
178 reset_data();
179 reset_view_state();
180}
181
182void View::add_decode_signal(shared_ptr<data::DecodeSignal> signal)
183{
184 ViewBase::add_decode_signal(signal);
185
186 connect(signal.get(), SIGNAL(name_changed(const QString&)),
187 this, SLOT(on_signal_name_changed(const QString&)));
88a25978
SA
188
189 // Note: At time of initial creation, decode signals have no decoders so we
190 // need to watch for decoder stacking events
191
24d69d27
SA
192 connect(signal.get(), SIGNAL(decoder_stacked(void*)),
193 this, SLOT(on_decoder_stacked(void*)));
194 connect(signal.get(), SIGNAL(decoder_removed(void*)),
195 this, SLOT(on_decoder_removed(void*)));
196
88a25978 197 // Add the top-level decoder provided by an already-existing signal
24d69d27 198 auto stack = signal->decoder_stack();
f54e68b0
SA
199 if (!stack.empty()) {
200 shared_ptr<Decoder>& dec = stack.at(0);
201 decoder_selector_->addItem(signal->name(), QVariant::fromValue((void*)dec.get()));
202 }
24d69d27
SA
203}
204
205void View::remove_decode_signal(shared_ptr<data::DecodeSignal> signal)
206{
207 // Remove all decoders provided by this signal
208 for (const shared_ptr<Decoder>& dec : signal->decoder_stack()) {
209 int index = decoder_selector_->findData(QVariant::fromValue((void*)dec.get()));
210
211 if (index != -1)
212 decoder_selector_->removeItem(index);
213 }
214
215 ViewBase::remove_decode_signal(signal);
216
217 if (signal.get() == signal_) {
218 reset_data();
219 update_data();
220 reset_view_state();
221 }
222}
223
224void View::save_settings(QSettings &settings) const
225{
226 ViewBase::save_settings(settings);
227}
228
229void View::restore_settings(QSettings &settings)
230{
231 // Note: It is assumed that this function is only called once,
232 // immediately after restoring a previous session.
233 ViewBase::restore_settings(settings);
234}
235
236void View::reset_data()
237{
238 signal_ = nullptr;
239 decoder_ = nullptr;
240}
241
242void View::update_data()
243{
f54e68b0 244 model_->set_signal_and_segment(signal_, current_segment_);
24d69d27
SA
245}
246
be0f5903 247void View::save_data_as_csv(unsigned int save_type) const
24d69d27 248{
be0f5903
SA
249 // Note: We try to follow RFC 4180 (https://tools.ietf.org/html/rfc4180)
250
24d69d27
SA
251 assert(decoder_);
252 assert(signal_);
253
254 if (!signal_)
255 return;
256
be0f5903
SA
257 const bool save_all = !table_view_->selectionModel()->hasSelection();
258
259 GlobalSettings settings;
24d69d27
SA
260 const QString dir = settings.value("MainWindow/SaveDirectory").toString();
261
262 const QString file_name = QFileDialog::getSaveFileName(
be0f5903 263 parent_, tr("Save Annotations as CSV"), dir, tr("CSV Files (*.csv);;Text Files (*.txt);;All Files (*)"));
24d69d27
SA
264
265 if (file_name.isEmpty())
266 return;
267
268 QFile file(file_name);
269 if (file.open(QIODevice::WriteOnly | QIODevice::Truncate)) {
be0f5903
SA
270 QTextStream out_stream(&file);
271
272 if (save_all)
273 table_view_->selectAll();
274
275 // Write out header columns in visual order, not logical order
276 for (int i = 0; i < table_view_->horizontalHeader()->count(); i++) {
277 int column = table_view_->horizontalHeader()->logicalIndex(i);
278
279 if (table_view_->horizontalHeader()->isSectionHidden(column))
280 continue;
281
282 const QString title = model_->headerData(column, Qt::Horizontal, Qt::DisplayRole).toString();
283
284 if (save_type == SaveTypeCSVEscaped)
285 out_stream << title;
286 else
287 out_stream << '"' << title << '"';
288
289 if (i < (table_view_->horizontalHeader()->count() - 1))
290 out_stream << ",";
291 }
292 out_stream << '\r' << '\n';
24d69d27 293
24d69d27 294
be0f5903 295 QModelIndexList selected_rows = table_view_->selectionModel()->selectedRows();
24d69d27 296
be0f5903
SA
297 for (int i = 0; i < selected_rows.size(); i++) {
298 const int row = selected_rows.at(i).row();
299
300 // Write out columns in visual order, not logical order
301 for (int c = 0; c < table_view_->horizontalHeader()->count(); c++) {
302 const int column = table_view_->horizontalHeader()->logicalIndex(c);
303
304 if (table_view_->horizontalHeader()->isSectionHidden(column))
305 continue;
306
307 const QModelIndex idx = model_->index(row, column, QModelIndex());
308 QString s = model_->data(idx, Qt::DisplayRole).toString();
309
310 if (save_type == SaveTypeCSVEscaped)
311 out_stream << s.replace(",", "\\,");
312 else
313 out_stream << '"' << s.replace("\"", "\"\"") << '"';
314
315 if (c < (table_view_->horizontalHeader()->count() - 1))
316 out_stream << ",";
317 }
318
319 out_stream << '\r' << '\n';
320 }
321
322 if (out_stream.status() == QTextStream::Ok) {
323 if (save_all)
324 table_view_->clearSelection();
24d69d27 325
24d69d27
SA
326 return;
327 }
be0f5903
SA
328 }
329
330 QMessageBox msg(parent_);
331 msg.setText(tr("Error") + "\n\n" + tr("File %1 could not be written to.").arg(file_name));
332 msg.setStandardButtons(QMessageBox::Ok);
333 msg.setIcon(QMessageBox::Warning);
334 msg.exec();
24d69d27
SA
335}
336
337void View::on_selected_decoder_changed(int index)
338{
02c87df7 339 if (signal_) {
85125b0f 340 disconnect(signal_, SIGNAL(color_changed(QColor)));
24d69d27 341 disconnect(signal_, SIGNAL(new_annotations()));
02c87df7
SA
342 disconnect(signal_, SIGNAL(decode_reset()));
343 }
24d69d27
SA
344
345 reset_data();
346
347 decoder_ = (Decoder*)decoder_selector_->itemData(index).value<void*>();
348
349 // Find the signal that contains the selected decoder
350 for (const shared_ptr<DecodeSignal>& ds : decode_signals_)
351 for (const shared_ptr<Decoder>& dec : ds->decoder_stack())
352 if (decoder_ == dec.get())
353 signal_ = ds.get();
354
02c87df7 355 if (signal_) {
88a25978 356 connect(signal_, SIGNAL(color_changed(QColor)), this, SLOT(on_signal_color_changed(QColor)));
24d69d27 357 connect(signal_, SIGNAL(new_annotations()), this, SLOT(on_new_annotations()));
02c87df7
SA
358 connect(signal_, SIGNAL(decode_reset()), this, SLOT(on_decoder_reset()));
359 }
24d69d27
SA
360
361 update_data();
362}
363
364void View::on_signal_name_changed(const QString &name)
365{
366 (void)name;
367
368 SignalBase* sb = qobject_cast<SignalBase*>(QObject::sender());
369 assert(sb);
370
371 DecodeSignal* signal = dynamic_cast<DecodeSignal*>(sb);
372 assert(signal);
373
f54e68b0 374 // Update the top-level decoder provided by this signal
24d69d27 375 auto stack = signal->decoder_stack();
f54e68b0
SA
376 if (!stack.empty()) {
377 shared_ptr<Decoder>& dec = stack.at(0);
378 int index = decoder_selector_->findData(QVariant::fromValue((void*)dec.get()));
24d69d27 379
f54e68b0
SA
380 if (index != -1)
381 decoder_selector_->setItemText(index, signal->name());
382 }
24d69d27
SA
383}
384
88a25978
SA
385void View::on_signal_color_changed(const QColor &color)
386{
387 (void)color;
388
389 table_view_->update();
390}
391
24d69d27
SA
392void View::on_new_annotations()
393{
394 if (!delayed_view_updater_.isActive())
395 delayed_view_updater_.start();
396}
397
02c87df7
SA
398void View::on_decoder_reset()
399{
400 // Invalidate the model's data connection immediately - otherwise we
401 // will use a stale pointer in model_->index() when called from the table view
402 model_->set_signal_and_segment(signal_, current_segment_);
403}
404
24d69d27
SA
405void View::on_decoder_stacked(void* decoder)
406{
24d69d27
SA
407 Decoder* d = static_cast<Decoder*>(decoder);
408
409 // Find the signal that contains the selected decoder
410 DecodeSignal* signal = nullptr;
411
412 for (const shared_ptr<DecodeSignal>& ds : decode_signals_)
413 for (const shared_ptr<Decoder>& dec : ds->decoder_stack())
414 if (d == dec.get())
415 signal = ds.get();
416
417 assert(signal);
418
88a25978
SA
419 const shared_ptr<Decoder>& dec = signal->decoder_stack().at(0);
420 int index = decoder_selector_->findData(QVariant::fromValue((void*)dec.get()));
421
422 if (index == -1) {
423 // Add the decoder to the list
85125b0f 424 decoder_selector_->addItem(signal->name(), QVariant::fromValue((void*)d));
88a25978 425 }
24d69d27
SA
426}
427
428void View::on_decoder_removed(void* decoder)
429{
430 Decoder* d = static_cast<Decoder*>(decoder);
431
432 // Remove the decoder from the list
433 int index = decoder_selector_->findData(QVariant::fromValue((void*)d));
434
435 if (index != -1)
436 decoder_selector_->removeItem(index);
437}
438
439void View::on_actionSave_triggered(QAction* action)
440{
be0f5903
SA
441 int save_type = SaveTypeCSVQuoted;
442
443 if (action)
444 save_type = action->data().toInt();
24d69d27 445
be0f5903 446 save_data_as_csv(save_type);
24d69d27
SA
447}
448
9a35b05d
SA
449void View::on_table_item_clicked(const QModelIndex& index)
450{
451 (void)index;
452
453 // Force repaint, otherwise the new selection isn't shown for some reason
454 table_view_->viewport()->update();
455}
456
457void View::on_table_item_double_clicked(const QModelIndex& index)
458{
459 const Annotation* ann = static_cast<const Annotation*>(index.internalPointer());
460
461 shared_ptr<views::ViewBase> main_view = session_.main_view();
462
463 main_view->focus_on_range(ann->start_sample(), ann->end_sample());
464}
465
466void View::on_table_header_requested(const QPoint& pos)
467{
468 QMenu* menu = new QMenu(this);
469
470 for (int i = 0; i < table_view_->horizontalHeader()->count(); i++) {
471 int column = table_view_->horizontalHeader()->logicalIndex(i);
472
473 const QString title = model_->headerData(column, Qt::Horizontal, Qt::DisplayRole).toString();
474 QAction* action = new QAction(title, this);
475
476 action->setCheckable(true);
477 action->setChecked(!table_view_->horizontalHeader()->isSectionHidden(column));
478 action->setData(column);
479
480 connect(action, SIGNAL(toggled(bool)), this, SLOT(on_table_header_toggled(bool)));
481
482 menu->addAction(action);
483 }
484
485 menu->popup(table_view_->horizontalHeader()->viewport()->mapToGlobal(pos));
486}
487
488void View::on_table_header_toggled(bool checked)
489{
490 QAction* action = qobject_cast<QAction*>(QObject::sender());
491 assert(action);
492
493 const int column = action->data().toInt();
494
495 table_view_->horizontalHeader()->setSectionHidden(column, !checked);
496}
497
24d69d27
SA
498void View::perform_delayed_view_update()
499{
500 update_data();
501}
502
503
504} // namespace tabular_decoder
505} // namespace views
506} // namespace pv