MathSignal: Mark segments as complete
[pulseview.git] / pv / metadata_obj.hpp
blob6837fef2b2879cbc8918722816db30a206ad5ef0
1 /*
2 * This file is part of the PulseView project.
4 * Copyright (C) 2020 Soeren Apel <soeren@apelpie.net>
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.
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.
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/>.
20 #ifndef PULSEVIEW_PV_METADATA_OBJ_HPP
21 #define PULSEVIEW_PV_METADATA_OBJ_HPP
23 #include <deque>
24 #include <vector>
26 #include <QObject>
27 #include <QSettings>
28 #include <QString>
29 #include <QVariant>
31 using std::deque;
32 using std::vector;
34 namespace pv {
37 // When adding an entry here, don't forget to update MetadataObjectNames as well
38 enum MetadataObjectType {
39 MetadataObjMainViewRange,
40 MetadataObjSelection,
41 MetadataObjTimeMarker,
42 // --- Types below will not be saved/restored ---
43 MetadataObjMousePos,
44 MetadataObjectTypeCount // Indicates how many metadata object types there are, must always be last
47 // When adding an entry here, don't forget to update MetadataValueNames as well
48 enum MetadataValueType {
49 MetadataValueStartSample, // int64_t / qlonglong
50 MetadataValueEndSample, // int64_t / qlonglong
51 MetadataValueText,
52 MetadataValueTypeCount // Indicates how many metadata value types there are, must always be last
55 extern const char* MetadataObjectNames[MetadataObjectTypeCount];
56 extern const char* MetadataValueNames[MetadataValueTypeCount];
59 class MetadataObjManager;
60 class MetadataObject;
63 class MetadataObjObserverInterface
65 public:
66 virtual void on_metadata_object_created(MetadataObject* obj);
67 virtual void on_metadata_object_deleted(MetadataObject* obj);
68 virtual void on_metadata_object_changed(MetadataObject* obj,
69 MetadataValueType value_type);
73 class MetadataObject
75 public:
76 MetadataObject(MetadataObjManager* obj_manager, uint32_t obj_id, MetadataObjectType obj_type);
77 virtual ~MetadataObject() = default;
79 virtual uint32_t id() const;
80 virtual MetadataObjectType type() const;
82 virtual void set_value(MetadataValueType value_type, const QVariant& value);
83 virtual QVariant value(MetadataValueType value_type) const;
84 private:
85 MetadataObjManager* obj_manager_;
86 uint32_t id_;
87 MetadataObjectType type_;
88 vector<QVariant> values_;
92 class MetadataObjManager : public QObject
94 Q_OBJECT
96 public:
97 MetadataObject* create_object(MetadataObjectType obj_type);
98 void delete_object(uint32_t obj_id);
99 MetadataObject* find_object_by_type(MetadataObjectType obj_type);
100 MetadataObject* object(uint32_t obj_id);
102 void add_observer(MetadataObjObserverInterface *cb);
103 void remove_observer(MetadataObjObserverInterface *cb);
105 void save_objects(QSettings &settings) const;
106 void restore_objects(QSettings &settings);
108 void notify_observers(MetadataObject* obj, MetadataValueType changed_value);
110 private:
111 vector<MetadataObjObserverInterface*> callbacks_;
112 deque<MetadataObject> objects_;
116 } // namespace pv
118 #endif // PULSEVIEW_PV_METADATA_OBJ_HPP