X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fviewport.hpp;h=de3e681dcf60a38cfa9e22a070e31e5e6a9e9f32;hp=e4c504215d7f266b21ad5c741bb4b90629afa248;hb=6f925ba9d6faf1077b73c5a5808259576081716a;hpb=d9ea96280ab1128427143660ae375c30b19aa0cb diff --git a/pv/view/viewport.hpp b/pv/view/viewport.hpp index e4c5042..de3e681 100644 --- a/pv/view/viewport.hpp +++ b/pv/view/viewport.hpp @@ -14,12 +14,11 @@ * 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 . */ -#ifndef PULSEVIEW_PV_VIEW_VIEWPORT_HPP -#define PULSEVIEW_PV_VIEW_VIEWPORT_HPP +#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_VIEWPORT_HPP +#define PULSEVIEW_PV_VIEWS_TRACEVIEW_VIEWPORT_HPP #include @@ -29,12 +28,16 @@ #include "pv/util.hpp" #include "viewwidget.hpp" +using std::shared_ptr; +using std::vector; + class QPainter; class QPaintEvent; class Session; namespace pv { -namespace view { +namespace views { +namespace TraceView { class View; @@ -51,7 +54,7 @@ private: * @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); + void item_hover(const shared_ptr &item); /** * Gets the first view item which has a hit-box that contains @c pt . @@ -59,8 +62,7 @@ private: * @return the view item that has been found, or and empty * @c shared_ptr if no item was found. */ - std::shared_ptr get_mouse_over_item( - const QPoint &pt); + shared_ptr get_mouse_over_item(const QPoint &pt); /** * Sets this item into the dragged state. @@ -81,7 +83,7 @@ private: /** * Gets the items in the view widget. */ - std::vector< std::shared_ptr > items(); + vector< shared_ptr > items(); /** * Handles touch begin update and end events. @@ -104,7 +106,8 @@ private: bool pinch_zoom_active_; }; -} // namespace view +} // namespace TraceView +} // namespace views } // namespace pv -#endif // PULSEVIEW_PV_VIEW_VIEWPORT_HPP +#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_VIEWPORT_HPP