Initialise Trace widgets when the trace is received by the View
[pulseview.git] / pv / view / view.h
index 1bf7132267a6d29d03dd9e95d8a7ff96d15016db..f378e9116c24a6ccb0b3376cf2fe7d77ac18b7ba 100644 (file)
 
 #include <stdint.h>
 
-#include <utility>
+#include <boost/weak_ptr.hpp>
 
 #include <QAbstractScrollArea>
 #include <QSizeF>
 
-#include "cursor.h"
+#include "cursorpair.h"
 
 namespace pv {
 
@@ -88,6 +88,8 @@ public:
         */
        void set_scale_offset(double scale, double offset);
 
+       std::list<boost::weak_ptr<SelectableItem> > selected_items() const;
+
        /**
         * Returns true if cursors are displayed. false otherwise.
         */
@@ -98,25 +100,37 @@ public:
         */
        void show_cursors(bool show = true);
 
+       /**
+        * Moves the cursors to a convenient position in the view.
+        */
+       void centre_cursors();
+
        /**
         * Returns a reference to the pair of cursors.
         */
-       std::pair<Cursor, Cursor>& cursors();
+       CursorPair& cursors();
+
+       /**
+        * Returns a reference to the pair of cursors.
+        */
+       const CursorPair& cursors() const;
 
        const QPoint& hover_point() const;
 
+       void normalize_layout();
+
 signals:
        void hover_point_changed();
 
        void signals_moved();
 
+       void selection_changed();
+
 private:
        void get_scroll_layout(double &length, double &offset) const;
        
        void update_scroll();
 
-       void reset_signal_layout();
-
 private:
        bool eventFilter(QObject *object, QEvent *event);
 
@@ -129,6 +143,7 @@ private slots:
        void h_scroll_value_changed(int value);
        void v_scroll_value_changed(int value);
 
+       void signals_changed();
        void data_updated();
 
        void marker_time_changed();
@@ -151,9 +166,10 @@ private:
        double _offset;
 
        int _v_offset;
+       bool _updating_scroll;
 
        bool _show_cursors;
-       std::pair<Cursor, Cursor> _cursors;
+       CursorPair _cursors;
 
        QPoint _hover_point;
 };