X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fviewport.cpp;h=4b5fe245e0c11a9c6af77fdd038201d4427e997e;hp=9e136664f5078b1510dbef92d57c972b61d981ba;hb=c063290ac7189bdd15221450f598504f43286b43;hpb=838d0522bf01d4e7550f8c124135debd452f0cac diff --git a/pv/view/viewport.cpp b/pv/view/viewport.cpp index 9e136664..4b5fe245 100644 --- a/pv/view/viewport.cpp +++ b/pv/view/viewport.cpp @@ -14,8 +14,7 @@ * 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 . */ #include @@ -32,20 +31,20 @@ #include +#include + using std::abs; using std::back_inserter; using std::copy; using std::dynamic_pointer_cast; -using std::max; -using std::min; -using std::none_of; -using std::numeric_limits; +using std::none_of; // Used in assert()s. using std::shared_ptr; using std::stable_sort; using std::vector; namespace pv { -namespace view { +namespace views { +namespace TraceView { Viewport::Viewport(View &parent) : ViewWidget(parent), @@ -60,8 +59,7 @@ shared_ptr Viewport::get_mouse_over_item(const QPoint &pt) const ViewItemPaintParams pp(rect(), view_.scale(), view_.offset()); const vector< shared_ptr > items(this->items()); for (auto i = items.rbegin(); i != items.rend(); i++) - if ((*i)->enabled() && - (*i)->hit_box_rect(pp).contains(pt)) + if ((*i)->enabled() && (*i)->hit_box_rect(pp).contains(pt)) return *i; return nullptr; } @@ -100,7 +98,7 @@ void Viewport::drag_release() vector< shared_ptr > Viewport::items() { vector< shared_ptr > items; - const std::vector< shared_ptr > view_items( + const vector< shared_ptr > view_items( view_.list_by_type()); copy(view_items.begin(), view_items.end(), back_inserter(items)); const vector< shared_ptr > time_items(view_.time_items()); @@ -202,26 +200,27 @@ void Viewport::mouseDoubleClickEvent(QMouseEvent *event) view_.zoom(-2.0, event->x()); } -void Viewport::wheelEvent(QWheelEvent *e) +void Viewport::wheelEvent(QWheelEvent *event) { - assert(e); + assert(event); - if (e->orientation() == Qt::Vertical) { - if (e->modifiers() & Qt::ControlModifier) { + if (event->orientation() == Qt::Vertical) { + if (event->modifiers() & Qt::ControlModifier) { // Vertical scrolling with the control key pressed // is intrepretted as vertical scrolling view_.set_v_offset(-view_.owner_visual_v_offset() - - (e->delta() * height()) / (8 * 120)); + (event->delta() * height()) / (8 * 120)); } else { // Vertical scrolling is interpreted as zooming in/out - view_.zoom(e->delta() / 120, e->x()); + view_.zoom(event->delta() / 120, event->x()); } - } else if (e->orientation() == Qt::Horizontal) { + } else if (event->orientation() == Qt::Horizontal) { // Horizontal scrolling is interpreted as moving left/right view_.set_scale_offset(view_.scale(), - e->delta() * view_.scale() + view_.offset()); + event->delta() * view_.scale() + view_.offset()); } } -} // namespace view +} // namespace TraceView +} // namespace views } // namespace pv