dust3d/thirdparty/cgal/CGAL-5.1/include/CGAL/Qt/GraphicsViewCircleInput.h

208 lines
5.0 KiB
C
Raw Normal View History

// Copyright (c) 2008 GeometryFactory Sarl (France).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org).
//
2020-10-13 12:44:25 +00:00
// $URL: https://github.com/CGAL/cgal/blob/v5.1/GraphicsView/include/CGAL/Qt/GraphicsViewCircleInput.h $
// $Id: GraphicsViewCircleInput.h 0779373 2020-03-26T13:31:46+01:00 Sébastien Loriot
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
//
//
// Author(s) : Andreas Fabri <Andreas.Fabri@geometryfactory.com>
// Laurent Rineau <Laurent.Rineau@geometryfactory.com>
#ifndef CGAL_QT_GRAPHICS_VIEW_CIRCLE_INPUT_H
#define CGAL_QT_GRAPHICS_VIEW_CIRCLE_INPUT_H
#include <CGAL/license/GraphicsView.h>
#include <QGraphicsView>
#include <QRectF>
#include <QPointF>
#include <QGraphicsItem>
2020-10-13 12:44:25 +00:00
#include <QGraphicsEllipseItem>
#include <QGraphicsScene>
#include <QGraphicsSceneMouseEvent>
#include <QPainter>
#include <QStyleOption>
#include <QKeyEvent>
#include <CGAL/Qt/Converter.h>
#include <CGAL/Qt/GraphicsViewInput.h>
#include <CGAL/array.h>
namespace CGAL {
namespace Qt {
template <typename K>
class GraphicsViewCircleInput : public GraphicsViewInput
{
public:
2020-10-13 12:44:25 +00:00
GraphicsViewCircleInput(QObject *parent, QGraphicsScene* s, int pointsOnCircle=1);
protected:
2020-10-13 12:44:25 +00:00
virtual void mousePressEvent(QGraphicsSceneMouseEvent *event);
virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
virtual void keyPressEvent(QKeyEvent *event);
2020-10-13 12:44:25 +00:00
bool eventFilter(QObject *obj, QEvent *event);
2020-10-13 12:44:25 +00:00
private:
typedef typename K::Point_2 Point_2;
int m_pointsOnCircle; // 1, 2 or 3
int count;
QGraphicsEllipseItem *qcircle;
QPointF qp, qq, qr;
Point_2 p, q, r;
2020-10-13 12:44:25 +00:00
QGraphicsScene *scene_;
Converter<K> convert;
};
template <typename K>
GraphicsViewCircleInput<K>::GraphicsViewCircleInput(QObject *parent, QGraphicsScene* s, int pointsOnCircle)
2020-10-13 12:44:25 +00:00
: GraphicsViewInput(parent), m_pointsOnCircle(pointsOnCircle),
count(0), qcircle(new QGraphicsEllipseItem()), scene_(s)
{
qcircle->hide();
s->addItem(qcircle);
}
template <typename K>
2020-10-13 12:44:25 +00:00
void
GraphicsViewCircleInput<K>::mousePressEvent(QGraphicsSceneMouseEvent *event)
2020-10-13 12:44:25 +00:00
{
if(event->modifiers() & ::Qt::ShiftModifier){
return;
}
if(m_pointsOnCircle < 3){
if(count == 0){
qp = event->scenePos();
p = convert(qp);
count = 1;
} else {
qq = event->scenePos();
if(qp != qq){
2020-10-13 12:44:25 +00:00
qcircle->hide();
q = convert(qq);
if(m_pointsOnCircle == 1){
typename K::FT sd = squared_distance(p,q);
Q_EMIT generate(CGAL::make_object(std::make_pair(p, sd)));
} else {
Q_EMIT generate(CGAL::make_object(std::make_pair(p, q)));
}
count = 0;
}
}
} else {
if(count == 0){
qp = event->scenePos();
p = convert(qp);
count = 1;
} else if(count == 1){
qq = event->scenePos();
if(qp != qq){
2020-10-13 12:44:25 +00:00
q = convert(qq);
count = 2;
}
} else { // count == 2
qr = event->scenePos();
r = convert(qr);
typename K::Collinear_2 collinear;
if(! collinear(p,q,r)){
2020-10-13 12:44:25 +00:00
Q_EMIT generate(CGAL::make_object(CGAL::make_array(p,q,r)));
count = 0;
}
}
}
}
template <typename K>
2020-10-13 12:44:25 +00:00
void
GraphicsViewCircleInput<K>::mouseMoveEvent(QGraphicsSceneMouseEvent *event)
{
CGAL::Bbox_2 bb;
typename K::Construct_circle_2 construct_circle;
if(count == 0){
qcircle->hide();
return;
} else if(count == 1) {
qq = event->scenePos();
q = convert(qq);
if(qp == qq){
qcircle->hide();
return;
} else {
if(m_pointsOnCircle == 1){
2020-10-13 12:44:25 +00:00
typename K::FT sd = squared_distance(p,q);
bb = construct_circle(p, sd).bbox();
} else {
2020-10-13 12:44:25 +00:00
bb = construct_circle(p, q).bbox();
}
}
} else { // count == 2
qr = event->scenePos();
r = convert(qr);
typename K::Collinear_2 collinear;
if(collinear(p,q,r)){
qcircle->hide();
return;
} else {
bb = construct_circle(p, q, r).bbox();
}
}
qcircle->setRect(bb.xmin(), bb.ymin(), bb.xmax()-bb.xmin(), bb.ymax()-bb.ymin());
qcircle->show();
}
template <typename K>
2020-10-13 12:44:25 +00:00
void
GraphicsViewCircleInput<K>::keyPressEvent ( QKeyEvent * event )
{
if(event->key() == ::Qt::Key_Delete){
if(count>0){
--count;
}
}
}
template <typename K>
2020-10-13 12:44:25 +00:00
bool
GraphicsViewCircleInput<K>::eventFilter(QObject *obj, QEvent *event)
{
if (event->type() == QEvent::GraphicsSceneMousePress) {
QGraphicsSceneMouseEvent *mouseEvent = static_cast<QGraphicsSceneMouseEvent *>(event);
mousePressEvent(mouseEvent);
return true;
} else if (event->type() == QEvent::GraphicsSceneMouseMove) {
QGraphicsSceneMouseEvent *mouseEvent = static_cast<QGraphicsSceneMouseEvent *>(event);
mouseMoveEvent(mouseEvent);
return true;
} else if (event->type() == QEvent::KeyPress) {
QKeyEvent *keyEvent = static_cast<QKeyEvent *>(event);
keyPressEvent(keyEvent);
return true;
} else{
// standard event processing
return QObject::eventFilter(obj, event);
}
2020-10-13 12:44:25 +00:00
}
} // namespace Qt
} // namespace CGAL
#endif // CGAL_QT_GRAPHICS_VIEW_CIRCLE_INPUT_H