-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmovingrect.h
47 lines (28 loc) · 1.43 KB
/
movingrect.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#ifndef MOVINGRECT_H
#define MOVINGRECT_H
#include "mygraphicsitem.h"
class MovingRect: public MovingFigure
{
Q_OBJECT
private:
public:
MovingRect(qreal, qreal,qreal, qreal);
public:
virtual QRectF boundingRect() const override{
return QRect(this->getX(),this->getY(),this->getWidth(),this->getHeight()/*m_x,m_y, m_width, m_height*/);
}
virtual QPainterPath shape()const override{ //переопределяю для точного определяения границ (для проверки на столкновения).
// используется в collidesWithItem() при углубленной проверки (авт-ки)
QPainterPath path;
path.addRect(this->boundingRect()); //если фигура будет элиипсом, то изменить !!!
return path;
}
virtual void paint (QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) override {
painter->setRenderHint(QPainter::Antialiasing,true); //сглаживание
painter->setBrush(Qt::red);
painter->drawRect(this->getX(),this->getY(),this->getWidth(),this->getHeight()/*m_x,m_y,m_width,m_height*/);
painter->setBrush(Qt::yellow);
painter->drawRect(this->getX()+this->getWidth()/5,this->getY()+this->getHeight()/5,this->getWidth()/3,this->getHeight()/3);
}
};
#endif // MOVINGRECT_H