]> sigrok.org Git - pulseview.git/blob - pv/views/tabular_decoder/view.hpp
TabularDecView: Visually indent annotations by PD stack level
[pulseview.git] / pv / views / tabular_decoder / view.hpp
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 #ifndef PULSEVIEW_PV_VIEWS_TABULARDECODER_VIEW_HPP
21 #define PULSEVIEW_PV_VIEWS_TABULARDECODER_VIEW_HPP
22
23 #include <QAction>
24 #include <QComboBox>
25 #include <QTableView>
26 #include <QToolButton>
27
28 #include "pv/globalsettings.hpp"
29 #include "pv/views/viewbase.hpp"
30 #include "pv/data/decodesignal.hpp"
31
32 namespace pv {
33 class Session;
34
35 namespace views {
36
37 namespace tabular_decoder {
38
39 class AnnotationCollectionModel : public QAbstractTableModel, public GlobalSettingsInterface
40 {
41         Q_OBJECT
42
43 public:
44         AnnotationCollectionModel(QObject* parent = nullptr);
45
46         QVariant data(const QModelIndex& index, int role) const override;
47         Qt::ItemFlags flags(const QModelIndex& index) const override;
48
49         QVariant headerData(int section, Qt::Orientation orientation,
50                 int role = Qt::DisplayRole) const override;
51         QModelIndex index(int row, int column,
52                 const QModelIndex& parent_idx = QModelIndex()) const override;
53
54         QModelIndex parent(const QModelIndex& index) const override;
55
56         int rowCount(const QModelIndex& parent_idx = QModelIndex()) const override;
57         int columnCount(const QModelIndex& parent_idx = QModelIndex()) const override;
58
59         void set_signal_and_segment(data::DecodeSignal* signal, uint32_t current_segment);
60
61         void on_setting_changed(const QString &key, const QVariant &value) override;
62
63 private:
64         vector<QVariant> header_data_;
65         const deque<const Annotation*>* all_annotations_;
66         data::DecodeSignal* signal_;
67         uint32_t prev_segment_;
68         uint64_t prev_last_row_;
69         bool theme_is_dark_;
70 };
71
72
73 class QCustomTableView : public QTableView
74 {
75         Q_OBJECT
76
77 public:
78         QSize minimumSizeHint() const;
79         QSize sizeHint() const;
80 };
81
82
83 class View : public ViewBase
84 {
85         Q_OBJECT
86
87 public:
88         explicit View(Session &session, bool is_main_view=false, QMainWindow *parent = nullptr);
89
90         virtual ViewType get_type() const;
91
92         /**
93          * Resets the view to its default state after construction. It does however
94          * not reset the signal bases or any other connections with the session.
95          */
96         virtual void reset_view_state();
97
98         virtual void clear_decode_signals();
99         virtual void add_decode_signal(shared_ptr<data::DecodeSignal> signal);
100         virtual void remove_decode_signal(shared_ptr<data::DecodeSignal> signal);
101
102         virtual void save_settings(QSettings &settings) const;
103         virtual void restore_settings(QSettings &settings);
104
105 private:
106         void reset_data();
107         void update_data();
108
109         void save_data() const;
110
111 private Q_SLOTS:
112         void on_selected_decoder_changed(int index);
113         void on_signal_name_changed(const QString &name);
114         void on_signal_color_changed(const QColor &color);
115         void on_new_annotations();
116
117         void on_decoder_reset();
118         void on_decoder_stacked(void* decoder);
119         void on_decoder_removed(void* decoder);
120
121         void on_actionSave_triggered(QAction* action = nullptr);
122
123         virtual void perform_delayed_view_update();
124
125 private:
126         QWidget* parent_;
127
128         QComboBox* decoder_selector_;
129
130         QToolButton* save_button_;
131         QAction* save_action_;
132
133         QCustomTableView* table_view_;
134
135         AnnotationCollectionModel* model_;
136
137         data::DecodeSignal* signal_;
138         const data::decode::Decoder* decoder_;
139         bool updating_data_;
140 };
141
142 } // namespace tabular_decoder
143 } // namespace views
144 } // namespace pv
145
146 #endif // PULSEVIEW_PV_VIEWS_TABULARDECODER_VIEW_HPP