]> sigrok.org Git - pulseview.git/blobdiff - pv/view/rowitem.hpp
Change namespace for the trace view and implement ViewBase
[pulseview.git] / pv / view / rowitem.hpp
index 331acdde1b3da6b1b249e9218851aa2149b03882..d2e2dd99ee1b824b8ce07cd4d4013a9bbda381c0 100644 (file)
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
-#ifndef PULSEVIEW_PV_VIEW_HEADERITEM_HPP
-#define PULSEVIEW_PV_VIEW_HEADERITEM_HPP
+#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_ROWITEM_HPP
+#define PULSEVIEW_PV_VIEWS_TRACEVIEW_ROWITEM_HPP
 
-#include <memory>
-
-#include <QPropertyAnimation>
-
-#include "viewitem.hpp"
+#include <pv/view/viewitem.hpp>
 
 namespace pv {
-namespace view {
-
-class RowItemOwner;
+namespace views {
+namespace TraceView {
 
-class RowItem : public ViewItem,
-       public std::enable_shared_from_this<pv::view::RowItem>
+class RowItem : public ViewItem
 {
        Q_OBJECT
-       Q_PROPERTY(int visual_v_offset
-               READ visual_v_offset
-               WRITE set_visual_v_offset)
-
-public:
-       /**
-        * Constructor.
-        */
-       RowItem();
-
-       /**
-        * Gets the vertical layout offset of this signal.
-        */
-       int layout_v_offset() const;
-
-       /**
-        * Sets the vertical layout offset of this signal.
-        */
-       void set_layout_v_offset(int v_offset);
-
-       /**
-        * Gets the vertical visual offset of this signal.
-        */
-       int visual_v_offset() const;
-
-       /**
-        * Sets the vertical visual offset of this signal.
-        */
-       void set_visual_v_offset(int v_offset);
-
-       /**
-        * Sets the visual and layout offset of this signal.
-        */
-       void force_to_v_offset(int v_offset);
-
-       /**
-        * Begins an animation that will animate the visual offset toward
-        * the layout offset.
-        */
-       void animate_to_layout_v_offset();
-
-       /**
-        * Gets the owner this trace in the view trace hierachy.
-        */
-       pv::view::RowItemOwner* owner() const;
-
-       /**
-        * Sets the owner this trace in the view trace hierachy.
-        * @param The new owner of the trace.
-        */
-       void set_owner(pv::view::RowItemOwner *owner);
-
-       /**
-        * Gets the visual y-offset of the axis.
-        */
-       int get_visual_y() const;
-
-       /**
-        * Drags the item to a delta relative to the drag point.
-        * @param delta the offset from the drag point.
-        */
-       void drag_by(const QPoint &delta);
-
-       /**
-        * Gets the arrow-tip point of the row item marker.
-        * @param rect the rectangle of the header area.
-        */
-       QPoint point(const QRect &rect) const;
-
-       /**
-        * Computes the vertical extents of the contents of this row item.
-        * @return A pair containing the minimum and maximum y-values.
-        */
-       virtual std::pair<int, int> v_extents() const = 0;
 
 public:
        virtual void hover_point_changed();
-
-protected:
-       pv::view::RowItemOwner *owner_;
-
-       int layout_v_offset_;
-       int visual_v_offset_;
-
-private:
-       QPropertyAnimation v_offset_animation_;
 };
 
-} // namespace view
+} // namespace TraceView
+} // namespace views
 } // namespace pv
 
-#endif // PULSEVIEW_PV_VIEW_HEADERITEM_HPP
+#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_ROWITEM_HPP