首頁  >  文章  >  web前端  >  QGraphicsItem的縮放

QGraphicsItem的縮放

一个新手
一个新手原創
2017-09-22 10:19:242075瀏覽


QGraphicsItem的縮放

QgarphicsItem是Qt視圖系統中的項目。 QGraphicsItem本身是不支援滑鼠拖曳來縮放的,本文介紹如何透過更改滑鼠事件來修改項目的大小。 (本文所用Qt版本為Qt4.8)

下文程式碼實現的功能為:按住shift,再用滑鼠拖曳,可以改變Box的大小。

定義類別Box

class Box:public QGraphicsItem
{
    Q_DECLARE_TR_FUNCTIONS(Box)public:    
    Box();
    ...protected:    
    void mousePressEvent(QGraphicsSceneMouseEvent *event);    
    void mouseMoveEvent(QGraphicsSceneMouseEvent *event);    
    void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
};
Box::Box()
{
    setFlags(QGraphicsItem::ItemIsSelectable|
             QGraphicsItem::ItemIsMovable|
             QGraphicsItem::ItemSendsGeometryChanges|
             QGraphicsItem::ItemIsFocusable);       //接受键盘事件
    mBoundingRect = QRectF(0,0,100,100);
    mBoundingRect.translate(-mBoundingRect.center());
}

上面兩段程式碼為Box類別的定義及建構函式的實現,最重要的是三個滑鼠函數的重載,以及在setFlag中使Box可以接受鍵盤事件。

重載mousePressEvent

void Box::mousePressEvent(QGraphicsSceneMouseEvent *event)
{    if(event->modifiers()&Qt::ShiftModifier)
    {
        resizing = true;             //resizing变量在鼠标点击时变为true                                                    //在放开时变为false
        setCursor(Qt::SizeAllCursor);//鼠标样式变为十字
    }    else
        QGraphicsItem::mousePressEvent(event);
}

重載mouseMoveEvent

void Box::mouseMoveEvent(QGraphicsSceneMouseEvent *event)
{    if(resizing)
    {
        QRectF rect(mBoundingRect);        
        if(event->pos().x()<rect.x())
            rect.setBottomLeft(event->pos());        else
            rect.setBottomRight(event->pos());
        mBoundingRect=rect;
        mBoundingRect.translate(-mBoundingRect.center());
        scene()->update();
    }    else
        QGraphicsItem::mouseMoveEvent(event);
}

在這裡,簡單的更新Box的左下角和右上角來匹配滑鼠位置。更好的做法是分別處理x和y座標。

重載mouseReleaseEvent

void Box::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
{    if(resizing)
    {
        resizing = false;
        setCursor(Qt::ArrowCursor);
    }    else
        QGraphicsItem::mouseReleaseEvent(event);
}

使用者在改變大小的過程中放開滑鼠,就將resizing改為true,並將滑鼠樣式變回箭頭。

以上是QGraphicsItem的縮放的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn