]> sigrok.org Git - pulseview.git/blame - pv/data/analog.hpp
SignalBase: Also emit data related signals
[pulseview.git] / pv / data / analog.hpp
CommitLineData
aba1dd16
JH
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
aba1dd16
JH
18 */
19
7a01bd36
JH
20#ifndef PULSEVIEW_PV_DATA_ANALOG_HPP
21#define PULSEVIEW_PV_DATA_ANALOG_HPP
aba1dd16 22
2acdb232 23#include "signaldata.hpp"
aba1dd16 24
aba1dd16 25#include <deque>
f9abf97e 26#include <memory>
aba1dd16 27
7db61e77
SA
28#include <QObject>
29
6f925ba9
UH
30using std::deque;
31using std::shared_ptr;
32using std::vector;
33
aba1dd16 34namespace pv {
1b1ec774 35namespace data {
aba1dd16 36
f3d66e52 37class AnalogSegment;
aba1dd16 38
7db61e77 39class Analog : public QObject, public SignalData
aba1dd16 40{
7db61e77
SA
41 Q_OBJECT
42
aba1dd16 43public:
b087ba7f 44 Analog();
aba1dd16 45
6f925ba9 46 void push_segment(shared_ptr<AnalogSegment> &segment);
aba1dd16 47
6f925ba9 48 const deque< shared_ptr<AnalogSegment> >& analog_segments() const;
aba1dd16 49
6f925ba9 50 vector< shared_ptr<Segment> > segments() const;
99503171 51
caabb84c 52 void clear();
b087ba7f 53
e45b13b5 54 uint64_t max_sample_count() const;
a007f5ad 55
7db61e77
SA
56 void notify_samples_added(QObject* segment, uint64_t start_sample,
57 uint64_t end_sample);
58
59Q_SIGNALS:
60 void samples_cleared();
61
62 void samples_added(QObject* segment, uint64_t start_sample,
63 uint64_t end_sample);
64
aba1dd16 65private:
6f925ba9 66 deque< shared_ptr<AnalogSegment> > segments_;
aba1dd16
JH
67};
68
1b1ec774 69} // namespace data
aba1dd16
JH
70} // namespace pv
71
7a01bd36 72#endif // PULSEVIEW_PV_DATA_ANALOG_HPP