]> sigrok.org Git - pulseview.git/blobdiff - pv/data/logic.hpp
SignalBase: Always hook into signal data, not just for analog
[pulseview.git] / pv / data / logic.hpp
index a51850719bbeba7e8c1355860a162bedce2acc8f..1ca5d3ed3af0f407ca34cb54908d4e6dc01e40e0 100644 (file)
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef PULSEVIEW_PV_DATA_LOGIC_H
-#define PULSEVIEW_PV_DATA_LOGIC_H
+#ifndef PULSEVIEW_PV_DATA_LOGIC_HPP
+#define PULSEVIEW_PV_DATA_LOGIC_HPP
 
 #include "signaldata.hpp"
 
 #include <deque>
-#include <memory>
+
+#include <QObject>
+
+using std::deque;
+using std::shared_ptr;
+using std::vector;
 
 namespace pv {
 namespace data {
 
-class LogicSnapshot;
+class LogicSegment;
 
 class Logic : public SignalData
 {
+       Q_OBJECT
+
 public:
        Logic(unsigned int num_channels);
 
-       int get_num_channels() const;
+       unsigned int num_channels() const;
+
+       void push_segment(shared_ptr<LogicSegment> &segment);
 
-       void push_snapshot(
-               std::shared_ptr<LogicSnapshot> &snapshot);
+       const deque< shared_ptr<LogicSegment> >& logic_segments() const;
 
-       const std::deque< std::shared_ptr<LogicSnapshot> >&
-               logic_snapshots() const;
+       vector< shared_ptr<Segment> > segments() const;
 
        void clear();
 
-       uint64_t get_max_sample_count() const;
+       uint64_t max_sample_count() const;
+
+       void notify_samples_added(QObject* segment, uint64_t start_sample,
+               uint64_t end_sample);
+
+Q_SIGNALS:
+       void samples_cleared();
+
+       void samples_added(QObject* segment, uint64_t start_sample,
+               uint64_t end_sample);
 
 private:
        const unsigned int num_channels_;
-       std::deque< std::shared_ptr<LogicSnapshot> > snapshots_;
+       deque< shared_ptr<LogicSegment> > segments_;
 };
 
 } // namespace data
 } // namespace pv
 
-#endif // PULSEVIEW_PV_DATA_LOGIC_H
+#endif // PULSEVIEW_PV_DATA_LOGIC_HPP