X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fviews%2Fviewbase.hpp;h=0a7605db153f822693aff9ae6c709265d86cd887;hb=ffc00fdd5946593ad2a587078fd4ee9ba0a507ec;hp=8e71f3bbe221c9b05a0ee36cd84c7a713483e974;hpb=558ad6ceb934ab7406d286c1a4ae08da4aba1448;p=pulseview.git diff --git a/pv/views/viewbase.hpp b/pv/views/viewbase.hpp index 8e71f3b..0a7605d 100644 --- a/pv/views/viewbase.hpp +++ b/pv/views/viewbase.hpp @@ -100,6 +100,9 @@ public Q_SLOTS: virtual void perform_delayed_view_update(); private Q_SLOTS: + void on_samples_added(QObject* segment, uint64_t start_sample, + uint64_t end_sample); + void on_data_updated(); protected: @@ -107,10 +110,14 @@ protected: const bool is_main_view_; + util::Timestamp ruler_shift_; util::TimeUnit time_unit_; unordered_set< shared_ptr > signalbases_; + /// The ID of the currently displayed segment + uint32_t current_segment_; + QTimer delayed_view_updater_; };