31 lines
822 B
C++
31 lines
822 B
C++
#include "vmaingraphicsscene.h"
|
|
#include <QDebug>
|
|
#include <QApplication>
|
|
#include <QScrollBar>
|
|
#include <QGraphicsItem>
|
|
|
|
VMainGraphicsScene::VMainGraphicsScene():QGraphicsScene(){
|
|
}
|
|
|
|
|
|
VMainGraphicsScene::VMainGraphicsScene(const QRectF & sceneRect, QObject * parent):QGraphicsScene ( sceneRect, parent ){
|
|
}
|
|
|
|
void VMainGraphicsScene::mouseMoveEvent(QGraphicsSceneMouseEvent* event){
|
|
emit mouseMove(event->scenePos());
|
|
QGraphicsScene::mouseMoveEvent(event);
|
|
}
|
|
|
|
void VMainGraphicsScene::mousePressEvent(QGraphicsSceneMouseEvent *event){
|
|
emit mousePress(event->scenePos());
|
|
QGraphicsScene::mousePressEvent(event);
|
|
}
|
|
|
|
void VMainGraphicsScene::ChoosedItem(qint64 id, Scene::Type type){
|
|
emit ChoosedObject(id, type);
|
|
}
|
|
|
|
void VMainGraphicsScene::RemoveTool(QGraphicsItem *tool){
|
|
this->removeItem(tool);
|
|
}
|