QgarphicsItem是Qt視圖系統中的項目。 QGraphicsItem本身是不支援滑鼠拖曳來縮放的,本文介紹如何透過更改滑鼠事件來修改項目的大小。 (本文所用Qt版本為Qt4.8)
下文程式碼實現的功能為:按住shift,再用滑鼠拖曳,可以改變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可以接受鍵盤事件。
void Box::mousePressEvent(QGraphicsSceneMouseEvent *event) { if(event->modifiers()&Qt::ShiftModifier) { resizing = true; //resizing变量在鼠标点击时变为true //在放开时变为false setCursor(Qt::SizeAllCursor);//鼠标样式变为十字 } else QGraphicsItem::mousePressEvent(event); }
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座標。
void Box::mouseReleaseEvent(QGraphicsSceneMouseEvent *event) { if(resizing) { resizing = false; setCursor(Qt::ArrowCursor); } else QGraphicsItem::mouseReleaseEvent(event); }
使用者在改變大小的過程中放開滑鼠,就將resizing改為true,並將滑鼠樣式變回箭頭。
以上是QGraphicsItem的縮放的詳細內容。更多資訊請關注PHP中文網其他相關文章!