我的QGraphicsItem项目未被鼠标注意到

时间:2015-03-10 14:38:24

标签: c++ qt graphics mouseevent

我正在尝试移动我的项目......唯一可行的方法是迭代我的所有项目并检查鼠标位置:

class Item : public QGraphicsItem
{
    Item() { setFlag(ItemIsMovable); setFlag(ItemIsSelectable); scale = 10; }
    QRectF boundingRect() const;
    void paint(QPainter *painter);   // had to implement this because I don't know how to get the QStyleOptionGraphicsItem to call the paint below
    void paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
               QWidget *widget) {paint(painter);}   // never called
    void update() {}
    int scale, x, y;
};

// scale is Item property set by caller, x and y also set by caller based on viewport position of item center
QRectF Item::boundingRect() const
{
    return QRectF(x - 30 - scale, y - 30 - scale,
                  30 + 3 * scale, 20 + 3 * scale);
}

void Item::paint(QPainter *painter)
{
    update();
    painter->drawRect(boundingRect());
}

class CollectionView : public QGraphicsView
{
    Q_OBJECT    
public:
    CollectionView(QWidget *parent = 0);    
    QList<Item*> *m_items;
protected:
    virtual void paintEvent(QPaintEvent * event);
    virtual void mousePressEvent(QMouseEvent * event);
    virtual void mouseReleaseEvent(QMouseEvent *event);
};

CollectionView::CollectionView(QWidget *parent)
    : QGraphicsView(parent)
{
    QGraphicsScene *s = new QGraphicsScene(this);
    setScene(s);
    setViewportUpdateMode(BoundingRectViewportUpdate);
    m_items = new QList<Item*>();
}

void CollectionView::paintEvent(QPaintEvent * /* event */)
{
    QPainter painter(this->viewport());

    for(int i = 0; i< m_items->size(); i++)
    {
        Item* item = m_items->at(i);
        //scene()->addItem(item);   // this crashes
        item->paint(&painter);
    }
}

void CollectionView::mousePressEvent(QMouseEvent* event)
{
    // if I add this and comment the rest, items don't move
    //QGraphicsView::mousePressEvent(event);

    foreach (QGraphicsItem *item, this->items(event->pos()))
    { /* never gets inside */ }
    foreach (QGraphicsItem *item, this->items(event->globalPos()))
    { /* never gets inside */ }

    // the following works though:
    for (int i = 0; i < m_items->size(); i++)
    {
        Item* currentItem = m_items->at(i);
        if(!currentItem->boundingRect().contains(event->pos()))
            continue;
        if (event->button() == Qt::LeftButton)
            { /* I can get the item index and its relative position to mouse
                 then pass this info to the mouseReleaseEvent, and it works */ }
        break;
    }
}

最好是我可以使用QGraphicsView / QGraphicsScene / QGraphicsItem方法移动项目或获取上下文菜单......我还没弄清楚如何。

但是如果我必须实现鼠标操作,那么最好能够遍历在鼠标位置找到的项目,而不是我列表中的所有项目(可能更大)。

为什么我的尝试不起作用? (或者,如何使QGraphicsScene / QGraphicsView完成所有工作并移动项目而无需编写任何代码?这就是ItemIsMovable的目的..对吗?)

更新:添加了paintEvent的代码...很遗憾我无法拨打

void paint(QPainter * painter,const QStyleOptionGraphicsItem *选项,                QWidget * widget);

版本的油漆 - 它可能会被scene()->addItem(item);之类的东西使用 - 但是那个特定的调用会导致程序崩溃...上面的paint方法永远不会调用,但我知道它是官方的颜料他的方法QGraphicsItem ......这么简单的代码却又如此混乱。

2 个答案:

答案 0 :(得分:1)

首先,尝试使用简单的Item和基本的GraphicsScene和View。像那样:

    class GraphicsItem : public QGraphicsItem
{
public:
    GraphicsItem(QWidget* parent) {
        setFlags(QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable);
    }
    QRectF boundingRect() const
       {
           qreal penWidth = 1;
           return QRectF(-10 - penWidth / 2, -10 - penWidth / 2,
                         20 + penWidth, 20 + penWidth);
       }

       void paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
                  QWidget *widget)
       {
           painter->drawRoundedRect(-10, -10, 20, 20, 5, 5);
       }
};

当您使用基本QGraphicsItem和QGraphicsScene时,这是一个基本项目。

    int main(int argc, char *argv[])
    {
        QApplication a(argc, argv);
        QGraphicsScene scene;
        scene.addItem(new GraphicsItem(NULL));
        QGraphicsView view(&scene);
        view.show();

        return a.exec();
   }

如果你的代码中的问题看起来你的项目没有移动它可能是你的MousePressEvent。

答案 1 :(得分:1)

正如我们在注释中建立的那样,问题是boundingRect()函数返回的值。

QGraphicsItem的边界矩形定义了项目的本地坐标。如果项是常规的,匹配矩形,则只需要实现boundingRect()。这用于碰撞检测,除其他外,检测鼠标在项目上。

如果你有一个非常规(矩形)对象并想要更细粒度的碰撞检测,那么除了boundingRect()之外,还要实现shape()函数。两者都在该项目的本地坐标中。