GraphicsView缩小比例问题

时间:2017-05-29 13:36:21

标签: c++ qt qt5.5 qt5.7

我的工作环境:Qt 5.8 MSVC2015 64位,QT GraphicsView,Windows 7 64位

当GraphicsView垂直滚动条消失时,缩小应停止。

所以我尝试使用下面的代码,但它无法正常工作:

void GraphicsView::scale(qreal scaleFactor)
{
    QRectF r(0, 0, 1, 1); // A reference
    int pos_x = this->horizontalScrollBar()->value();
    int pos_y = this->verticalScrollBar()->value();

    qreal factor = transform().scale(scaleFactor, scaleFactor).mapRect(r).width(); // absolute zoom factor


    if ( factor > 7) { // Check zoom out limit
        return;
    }

   //Failed, this code failed If zoom out again.** 
   if(pos_x <= 0 && pos_y <= 0 ) 
    {
        return;
    }

任何建议如何修复上述代码?

1 个答案:

答案 0 :(得分:0)

我的问题没有回复。这是解决我的解决方案, 从wheelEvent检查我们是否正在放大或缩小。我缩放检查垂直&amp;水平滚动条。

这里_steps是我的GraphicsView类的私有数据成员。 GraphicsView派生自QGraphicsView。

void GraphicsView::wheelEvent(QWheelEvent * event)
{
    // Typical Calculations (Ref Qt Doc)
    const int degrees = event->delta() / 8;
    _steps = degrees / 15;  // _steps = 1 for Zoom in, _steps = -1 for Zoom out.

}



void GraphicsView::scale(qreal scaleFactor)
{
    QRectF r(0, 0, 1, 1); // A reference
    int pos_x = this->horizontalScrollBar()->value();
    int pos_y = this->verticalScrollBar()->value();
    qreal factor = transform().scale(scaleFactor, scaleFactor).mapRect(r).width(); // absolute zoom factor
    if ( factor > 7) { // Calculate your zoom in limit from factor
        return;
    }

 //When there is no scroll bar, am I still I am zooming, stop it using _steps  
    if(pos_x <= 0 && pos_y <= 0 && _steps == -1)
    {
        return;
    }
    QGraphicsView::scale(scaleFactor, scaleFactor);
}

我知道有更好的解决方案,但我只发现了这一点:(