]> sigrok.org Git - pulseview.git/blobdiff - pv/data/analog.cpp
Fix #684 by implementing snap-to-edge for TimeItem-based classes
[pulseview.git] / pv / data / analog.cpp
index ca2659b175815aa02e05711f4d22b5724bf768bd..da025882949ea8486638198fcb5fe124c22fa7ff 100644 (file)
@@ -14,8 +14,7 @@
  * 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/>.
  */
 
 #include <cassert>
@@ -38,7 +37,7 @@ Analog::Analog() :
 
 void Analog::push_segment(shared_ptr<AnalogSegment> &segment)
 {
-       segments_.push_front(segment);
+       segments_.push_back(segment);
 }
 
 const deque< shared_ptr<AnalogSegment> >& Analog::analog_segments() const
@@ -52,20 +51,46 @@ vector< shared_ptr<Segment> > Analog::segments() const
                segments_.begin(), segments_.end());
 }
 
+uint32_t Analog::get_segment_count() const
+{
+       return (uint32_t)segments_.size();
+}
+
 void Analog::clear()
 {
        segments_.clear();
+
+       samples_cleared();
+}
+
+double Analog::get_samplerate() const
+{
+       if (segments_.empty())
+               return 1.0;
+
+       return segments_.front()->samplerate();
 }
 
 uint64_t Analog::max_sample_count() const
 {
        uint64_t l = 0;
-       for (const std::shared_ptr<AnalogSegment> s : segments_) {
+       for (const shared_ptr<AnalogSegment> s : segments_) {
                assert(s);
                l = max(l, s->get_sample_count());
        }
        return l;
 }
 
+void Analog::notify_samples_added(QObject* segment, uint64_t start_sample,
+       uint64_t end_sample)
+{
+       samples_added(segment, start_sample, end_sample);
+}
+
+void Analog::notify_min_max_changed(float min, float max)
+{
+       min_max_changed(min, max);
+}
+
 } // namespace data
 } // namespace pv