]> sigrok.org Git - pulseview.git/blobdiff - pv/view/viewwidget.hpp
Change namespace for the trace view and implement ViewBase
[pulseview.git] / pv / view / viewwidget.hpp
index 003c0eeda09b57f31d9f26e31b54244045876ac6..cfcbda43ff3b68db0679d6f4a44fd5e50017adf5 100644 (file)
@@ -18,8 +18,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
-#ifndef PULSEVIEW_PV_VIEWWIDGET_H
-#define PULSEVIEW_PV_VIEWWIDGET_H
+#ifndef PULSEVIEW_PV_VIEWWIDGET_HPP
+#define PULSEVIEW_PV_VIEWWIDGET_HPP
 
 #include <memory>
 
@@ -28,7 +28,8 @@
 class QTouchEvent;
 
 namespace pv {
-namespace view {
+namespace views {
+namespace TraceView {
 
 class View;
 class ViewItem;
@@ -47,7 +48,7 @@ protected:
         * @remarks the default implementation does nothing.
         */
        virtual void item_hover(
-               const std::shared_ptr<pv::view::ViewItem> &item);
+               const std::shared_ptr<ViewItem> &item);
 
        /**
         * Indicates the event an a view item has been clicked.
@@ -55,7 +56,7 @@ protected:
         * @remarks the default implementation does nothing.
         */
        virtual void item_clicked(
-               const std::shared_ptr<pv::view::ViewItem> &item);
+               const std::shared_ptr<ViewItem> &item);
 
        /**
         * Returns true if the selection of row items allows dragging.
@@ -94,7 +95,7 @@ protected:
        /**
         * Gets the items in the view widget.
         */
-       virtual std::vector< std::shared_ptr<pv::view::ViewItem> > items() = 0;
+       virtual std::vector< std::shared_ptr<ViewItem> > items() = 0;
 
        /**
         * Gets the first view item which has a hit-box that contains @c pt .
@@ -102,7 +103,7 @@ protected:
         * @return the view item that has been found, or and empty
         *   @c shared_ptr if no item was found.
         */
-       virtual std::shared_ptr<pv::view::ViewItem> get_mouse_over_item(
+       virtual std::shared_ptr<ViewItem> get_mouse_over_item(
                const QPoint &pt) = 0;
 
        /**
@@ -121,12 +122,12 @@ protected:
         * Handles touch begin update and end events.
         * @param e the event that triggered this handler.
         */
-       virtual bool touch_event(QTouchEvent *e);
+       virtual bool touch_event(QTouchEvent *event);
 
 protected:
        bool event(QEvent *event);
 
-       void mousePressEvent(QMouseEvent * event);
+       void mousePressEvent(QMouseEvent *event);
        void mouseReleaseEvent(QMouseEvent *event);
        void mouseMoveEvent(QMouseEvent *event);
 
@@ -139,14 +140,15 @@ Q_SIGNALS:
        void selection_changed();
 
 protected:
-       pv::view::View &view_;
+       pv::views::TraceView::View &view_;
        QPoint mouse_point_;
        QPoint mouse_down_point_;
        std::shared_ptr<ViewItem> mouse_down_item_;
        bool item_dragging_;
 };
 
-} // namespace view
+} // namespace TraceView
+} // namespace views
 } // namespace pv
 
-#endif // PULSEVIEW_PV_VIEWWIDGET_H
+#endif // PULSEVIEW_PV_VIEWWIDGET_HPP