X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fviewport.hpp;h=704e73115514b2183cb4ce058b86bbc9a9000a9d;hp=f43177d2d3f611d9ea00abe87b6eadfbe02ce92e;hb=8c0302f5df5182c0d3531d511416b5c9b1ea8e89;hpb=282905348863fe871a48c680bd12bc1dee364a43 diff --git a/pv/view/viewport.hpp b/pv/view/viewport.hpp index f43177d2..704e7311 100644 --- a/pv/view/viewport.hpp +++ b/pv/view/viewport.hpp @@ -18,12 +18,15 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PULSEVIEW_PV_VIEW_VIEWPORT_H -#define PULSEVIEW_PV_VIEW_VIEWPORT_H +#ifndef PULSEVIEW_PV_VIEW_VIEWPORT_HPP +#define PULSEVIEW_PV_VIEW_VIEWPORT_HPP + +#include #include #include +#include "pv/util.hpp" #include "viewwidget.hpp" class QPainter; @@ -43,6 +46,13 @@ public: explicit Viewport(View &parent); private: + /** + * Indicates when a view item is being hovered over. + * @param item The item that is being hovered over, or @c nullptr + * if no view item is being hovered over. + */ + void item_hover(const std::shared_ptr &item); + /** * Gets the first view item which has a hit-box that contains @c pt . * @param pt the point to search with. @@ -86,7 +96,8 @@ private: void wheelEvent(QWheelEvent *event); private: - double drag_offset_; + boost::optional drag_offset_; + int drag_v_offset_; double pinch_offset0_; double pinch_offset1_; @@ -96,4 +107,4 @@ private: } // namespace view } // namespace pv -#endif // PULSEVIEW_PV_VIEW_VIEWPORT_H +#endif // PULSEVIEW_PV_VIEW_VIEWPORT_HPP