X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fviewport.cpp;h=1504f482ca3915d605ff9a09d66e6c1584ab7362;hp=1b3d371748b844255e0f5ef8b29b311d8130a538;hb=efdec55aec1a137460fa362a381ed1904182bfed;hpb=cbf0f87e496c9d9157591c94dc445aaa960fe79d diff --git a/pv/view/viewport.cpp b/pv/view/viewport.cpp index 1b3d371..1504f48 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,6 +31,8 @@ #include +#include + using std::abs; using std::back_inserter; using std::copy; @@ -45,7 +46,8 @@ using std::stable_sort; using std::vector; namespace pv { -namespace view { +namespace views { +namespace TraceView { Viewport::Viewport(View &parent) : ViewWidget(parent), @@ -68,7 +70,7 @@ shared_ptr Viewport::get_mouse_over_item(const QPoint &pt) void Viewport::item_hover(const shared_ptr &item) { - if (item) + if (item && item->is_draggable()) setCursor(dynamic_pointer_cast(item) ? Qt::SizeVerCursor : Qt::SizeHorCursor); else @@ -78,6 +80,7 @@ void Viewport::item_hover(const shared_ptr &item) void Viewport::drag() { drag_offset_ = view_.offset(); + drag_v_offset_ = view_.owner_visual_v_offset(); } void Viewport::drag_by(const QPoint &delta) @@ -87,6 +90,8 @@ void Viewport::drag_by(const QPoint &delta) view_.set_scale_offset(view_.scale(), (*drag_offset_ - delta.x() * view_.scale())); + + view_.set_v_offset(-drag_v_offset_ - delta.y()); } void Viewport::drag_release() @@ -179,10 +184,10 @@ void Viewport::paintEvent(QPaintEvent*) for (const shared_ptr r : row_items) r->paint_mid(p, pp); - p.setRenderHint(QPainter::Antialiasing, false); - for (const shared_ptr r : row_items) r->paint_fore(p, pp); + + p.setRenderHint(QPainter::Antialiasing, false); for (const shared_ptr t : time_items) t->paint_fore(p, pp); @@ -199,29 +204,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