]> sigrok.org Git - pulseview.git/blame - pv/views/tabular_decoder/view.hpp
Session: Fix issue #67 by improving error handling
[pulseview.git] / pv / views / tabular_decoder / view.hpp
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
8845be3c
UH
20#ifndef PULSEVIEW_PV_VIEWS_TABULAR_DECODER_VIEW_HPP
21#define PULSEVIEW_PV_VIEWS_TABULAR_DECODER_VIEW_HPP
24d69d27
SA
22
23#include <QAction>
86d4b8e3 24#include <QCheckBox>
24d69d27 25#include <QComboBox>
20c99cfc 26#include <QKeyEvent>
6f43db70 27#include <QSortFilterProxyModel>
24d69d27
SA
28#include <QTableView>
29#include <QToolButton>
30
8997f62a 31#include "pv/metadata_obj.hpp"
24d69d27
SA
32#include "pv/views/viewbase.hpp"
33#include "pv/data/decodesignal.hpp"
34
35namespace pv {
36class Session;
37
38namespace views {
39
40namespace tabular_decoder {
41
be0f5903
SA
42// When adding an entry here, don't forget to update SaveTypeNames as well
43enum SaveType {
44 SaveTypeCSVEscaped,
45 SaveTypeCSVQuoted,
46 SaveTypeCount // Indicates how many save types there are, must always be last
47};
48
86d4b8e3
SA
49// When adding an entry here, don't forget to update ViewModeNames as well
50enum ViewModeType {
51 ViewModeAll,
52 ViewModeLatest,
8997f62a 53 ViewModeVisible,
f2739bae 54 ViewModeCount // Indicates how many view mode types there are, must always be last
86d4b8e3
SA
55};
56
be0f5903 57extern const char* SaveTypeNames[SaveTypeCount];
86d4b8e3 58extern const char* ViewModeNames[ViewModeCount];
be0f5903
SA
59
60
8e168b23 61class AnnotationCollectionModel : public QAbstractTableModel
24d69d27
SA
62{
63 Q_OBJECT
64
65public:
66 AnnotationCollectionModel(QObject* parent = nullptr);
67
1c521100 68 int get_hierarchy_level(const Annotation* ann) const;
85125b0f 69 QVariant data_from_ann(const Annotation* ann, int index) const;
24d69d27
SA
70 QVariant data(const QModelIndex& index, int role) const override;
71 Qt::ItemFlags flags(const QModelIndex& index) const override;
72
6f43db70 73 uint8_t first_hidden_column() const;
24d69d27
SA
74 QVariant headerData(int section, Qt::Orientation orientation,
75 int role = Qt::DisplayRole) const override;
76 QModelIndex index(int row, int column,
77 const QModelIndex& parent_idx = QModelIndex()) const override;
78
79 QModelIndex parent(const QModelIndex& index) const override;
80
81 int rowCount(const QModelIndex& parent_idx = QModelIndex()) const override;
82 int columnCount(const QModelIndex& parent_idx = QModelIndex()) const override;
83
f54e68b0 84 void set_signal_and_segment(data::DecodeSignal* signal, uint32_t current_segment);
86d4b8e3
SA
85 void set_hide_hidden(bool hide_hidden);
86
87 void update_annotations_without_hidden();
6f43db70 88 QModelIndex update_highlighted_rows(QModelIndex first, QModelIndex last,
1c521100 89 int64_t sample_num);
f54e68b0 90
02078aa1
SA
91private Q_SLOTS:
92 void on_annotation_visibility_changed();
93
24d69d27 94private:
f54e68b0
SA
95 vector<QVariant> header_data_;
96 const deque<const Annotation*>* all_annotations_;
86d4b8e3
SA
97 deque<const Annotation*> all_annotations_without_hidden_;
98 const deque<const Annotation*>* dataset_;
d656b010 99 data::DecodeSignal* signal_;
6f43db70 100 uint8_t first_hidden_column_;
f54e68b0
SA
101 uint32_t prev_segment_;
102 uint64_t prev_last_row_;
1c521100
SA
103 int64_t highlight_sample_num_;
104 bool had_highlight_before_;
86d4b8e3 105 bool hide_hidden_;
f54e68b0
SA
106};
107
108
6f43db70
SA
109class CustomFilterProxyModel : public QSortFilterProxyModel
110{
111 Q_OBJECT
112
113public:
114 CustomFilterProxyModel(QObject* parent = 0);
115
116 void set_sample_range(uint64_t start_sample, uint64_t end_sample);
117
939d25cb
SA
118 void enable_range_filtering(bool value);
119
6f43db70
SA
120protected:
121 bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const override;
122
123private:
124 uint64_t range_start_sample_, range_end_sample_;
939d25cb 125 bool range_filtering_enabled_;
6f43db70
SA
126};
127
128
129class CustomTableView : public QTableView
f54e68b0
SA
130{
131 Q_OBJECT
132
133public:
20c99cfc
SA
134 virtual QSize minimumSizeHint() const override;
135 virtual QSize sizeHint() const override;
136
137protected:
138 virtual void keyPressEvent(QKeyEvent *event) override;
139
140Q_SIGNALS:
141 void activatedByKey(const QModelIndex &index);
24d69d27
SA
142};
143
144
8997f62a 145class View : public ViewBase, public MetadataObjObserverInterface
24d69d27
SA
146{
147 Q_OBJECT
148
149public:
150 explicit View(Session &session, bool is_main_view=false, QMainWindow *parent = nullptr);
8997f62a 151 ~View();
24d69d27
SA
152
153 virtual ViewType get_type() const;
154
155 /**
156 * Resets the view to its default state after construction. It does however
157 * not reset the signal bases or any other connections with the session.
158 */
159 virtual void reset_view_state();
160
161 virtual void clear_decode_signals();
162 virtual void add_decode_signal(shared_ptr<data::DecodeSignal> signal);
163 virtual void remove_decode_signal(shared_ptr<data::DecodeSignal> signal);
164
165 virtual void save_settings(QSettings &settings) const;
166 virtual void restore_settings(QSettings &settings);
167
168private:
169 void reset_data();
170 void update_data();
171
be0f5903 172 void save_data_as_csv(unsigned int save_type) const;
24d69d27
SA
173
174private Q_SLOTS:
175 void on_selected_decoder_changed(int index);
86d4b8e3
SA
176 void on_hide_hidden_changed(bool checked);
177 void on_view_mode_changed(int index);
178
24d69d27 179 void on_signal_name_changed(const QString &name);
88a25978 180 void on_signal_color_changed(const QColor &color);
24d69d27
SA
181 void on_new_annotations();
182
02c87df7 183 void on_decoder_reset();
24d69d27
SA
184 void on_decoder_stacked(void* decoder);
185 void on_decoder_removed(void* decoder);
186
187 void on_actionSave_triggered(QAction* action = nullptr);
188
9a35b05d
SA
189 void on_table_item_clicked(const QModelIndex& index);
190 void on_table_item_double_clicked(const QModelIndex& index);
191 void on_table_header_requested(const QPoint& pos);
192 void on_table_header_toggled(bool checked);
193
8997f62a
SA
194 virtual void on_metadata_object_changed(MetadataObject* obj,
195 MetadataValueType value_type);
196
24d69d27
SA
197 virtual void perform_delayed_view_update();
198
199private:
200 QWidget* parent_;
201
f54e68b0 202 QComboBox* decoder_selector_;
86d4b8e3
SA
203 QCheckBox* hide_hidden_cb_;
204 QComboBox* view_mode_selector_;
24d69d27
SA
205
206 QToolButton* save_button_;
207 QAction* save_action_;
208
6f43db70 209 CustomTableView* table_view_;
24d69d27 210 AnnotationCollectionModel* model_;
6f43db70 211 CustomFilterProxyModel* filter_proxy_model_;
24d69d27 212
f54e68b0
SA
213 data::DecodeSignal* signal_;
214 const data::decode::Decoder* decoder_;
24d69d27
SA
215};
216
217} // namespace tabular_decoder
218} // namespace views
219} // namespace pv
220
8845be3c 221#endif // PULSEVIEW_PV_VIEWS_TABULAR_DECODER_VIEW_HPP