Рисуем линию QGraphicsItem за мышью
Здравствуйте. Два дня пытался сделать отрисовку линии объявленной как QGraphicsItem в сцене. Хочу чтобы при зажатой кнопке прямая линия отрисовывалась за мышью. Но что-то не выходит. Прочитал данный топик https://evileg.com/forum/topic/218/ , но он как раз про простой способ рисования, когда методы мыши реализованы в сцене(это получилось). Но когда я хочу чтобы сам Item отвечал за отрисовку, выходит нечто странное. Вообщем зашел в тупик и не знаю что делать. Вот мой исходный код:
mainwindow.h
#ifndef MAINWINDOW_H #define MAINWINDOW_H #include <QMainWindow> #include "myscene.h" namespace Ui { class MainWindow; } class MainWindow : public QMainWindow { Q_OBJECT public: explicit MainWindow(QWidget *parent = 0); ~MainWindow(); private: Ui::MainWindow *ui; }; #endif // MAINWINDOW_H
mainwindow.cpp
#include "mainwindow.h" #include "ui_mainwindow.h" MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow) { ui->setupUi(this); MyScene *pScene = new MyScene(this); ui->centralWidget->setScene(pScene); connect(ui->actionRect, SIGNAL(triggered(bool)), ui->centralWidget->scene(), SLOT(mySlotLine())); } MainWindow::~MainWindow() { delete ui; }myscene.h
#ifndef MYSCENE_H #define MYSCENE_H #include<QObject> #include<QGraphicsScene> #include <QGraphicsSceneMouseEvent> #include<QColor> #include<QString> #include"myline.h" class MyScene : public QGraphicsScene { Q_OBJECT public: MyScene(QObject *parent =0); protected: virtual void mousePressEvent(QGraphicsSceneMouseEvent * mouseEvent); virtual void mouseMoveEvent(QGraphicsSceneMouseEvent * mouseEvent); private: MyLine *line; bool isDrawLine = false; void addMyLine(QPointF p); public slots: void mySlotLine(); }; #endif // MYSCENE_Hmyscene.cpp
#include "myscene.h" MyScene::MyScene(QObject *parent) : QGraphicsScene(parent) { setSceneRect(0,0,500,500); setFocus(); } void MyScene::mousePressEvent(QGraphicsSceneMouseEvent *mouseEvent) { if ((mouseEvent->button() == Qt::LeftButton)&&(isDrawLine)) { isDrawLine = false; addMyLine(mouseEvent->scenePos()); } line->mousePressEvent(mouseEvent); } void MyScene::mouseMoveEvent(QGraphicsSceneMouseEvent *mouseEvent) { line->mouseMoveEvent(mouseEvent); } void MyScene::mySlotLine() { line = new MyLine(this); isDrawLine = true; } void MyScene::addMyLine(QPointF p) { line->setPoint(p, p); line->setFlags(QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable); addItem(line); }myline.h
#ifndef MYLINE_H #define MYLINE_H #include <QObject> #include <QGraphicsItem> #include <QRectF> #include <QGraphicsSceneMouseEvent> #include <QPen> #include <QPainter> class MyLine : public QObject , public QGraphicsItem { Q_OBJECT public: MyLine(QObject *parent = 0); ~MyLine(); void setPoint(QPointF beginP, QPointF endP); virtual void mousePressEvent(QGraphicsSceneMouseEvent *event); virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *event); virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event); protected: virtual QRectF boundingRect() const; virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget); private: QPointF p1; QPointF p2; }; #endif // MYLINE_Hmyline.cpp
#include "myline.h" MyLine::MyLine(QObject *parent): QObject(parent), QGraphicsItem() { } MyLine::~MyLine() { } void MyLine::setPoint(QPointF beginP, QPointF endP) { p1 = beginP; p2 = endP; } void MyLine::mousePressEvent(QGraphicsSceneMouseEvent *event) { QGraphicsItem::mousePressEvent(event); } void MyLine::mouseMoveEvent(QGraphicsSceneMouseEvent *event) { p2 = event->scenePos(); this->setPoint(p1, p2); QGraphicsItem::mouseMoveEvent(event); } void MyLine::mouseReleaseEvent(QGraphicsSceneMouseEvent *event) { QGraphicsItem::mouseReleaseEvent(event); } QRectF MyLine::boundingRect() const { return QRectF(p1,p2).normalized(); } void MyLine::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) { QPen pen; pen.setWidth(5); pen.setBrush(Qt::black); painter->setPen(pen); if (p1 == p2) { painter->drawPoint(p1); } else { painter->drawLine(p1,p2); } }
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.Do you like it? Share on social networks!
AD
- Akiv Doros
- Nov. 11, 2024, 2:58 p.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:50points,
- Rating points-4
m
- molni99
- Oct. 26, 2024, 1:37 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:80points,
- Rating points4
m
- molni99
- Oct. 26, 2024, 1:29 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:20points,
- Rating points-10
Last comments
Circuit switching and packet data transmission networks Angioedema 1 priligy dapoxetine
How to Copy Files in Linux If only females relatives with DZ offspring were considered these percentages were 23 order priligy online uk
Qt/C++ - Tutorial 068. Hello World using the CMAKE build system in CLion ditropan pristiq dosing With the Yankees leading, 4 3, Rivera jogged in from the bullpen to a standing ovation as he prepared for his final appearance in Chicago buy priligy pakistan
EVILEG-CORE. Using Google reCAPTCHA 2001; 98 29 34 priligy buy
PyQt5 - Lesson 007. Works with QML QtQuick (Signals and slots) priligy 30mg Am J Obstet Gynecol 171 1488 505
Now discuss on the forum
добавить qlineseries в функции priligy amazon canada 93 GREB1 protein GREB1 AB011147 6
Всё ещё разбираюсь с кешем. priligy walgreens levitra dulcolax carbs The third ring was found to be made up of ultra relativistic electrons, which are also present in both the outer and inner rings
IscanderCheOct. 31, 2024, 3:43 p.m.
Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…
ИМ
Реализация навигации по разделам Спасибо Евгений!
Игорь МаксимовOct. 3, 2024, 4:05 a.m.
Добрый день!
Файлы проекта
Я поправил немного Ваш код.
Большое спасибо!