mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-25 04:05:53 +01:00
18 lines
372 B
C++
18 lines
372 B
C++
#include "textitem.h"
|
|
|
|
bool TextItem::collides(const QList<TextItem*> &list) const
|
|
{
|
|
QRectF r1(boundingRect());
|
|
|
|
for (int i = 0; i < list.size(); i++) {
|
|
const TextItem* other = list.at(i);
|
|
QRectF r2(other->boundingRect());
|
|
|
|
if (!(r1.isEmpty() || r2.isEmpty() || !r1.intersects(r2)))
|
|
if (other->shape().intersects(shape()))
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|