File size: 4,149 Bytes
a5ffdcd | 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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | /****************************************************************************
**
** This file is part of the LibreCAD project, a 2D CAD program
**
** Copyright (C) 2011 Rallaz (rallazz@gmail.com)
** Copyright (C) 2010 R. van Twisk (librecad@rvt.dds.nl)
**
**
** This file is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**
** This copyright notice MUST APPEAR in all copies of the script!
**
**********************************************************************/
#include "qc_actiongetpoint.h"
#include <QMouseEvent>
#include "rs_coordinateevent.h"
#include "rs_debug.h"
#include "rs_line.h"
#include "rs_modification.h"
#include "rs_preview.h"
struct QC_ActionGetPoint::ActionData {
RS_MoveData data;
RS_Vector referencePoint;
RS_Vector targetPoint;
QString message;
};
// fixme - sand actiontype is not set???
QC_ActionGetPoint::QC_ActionGetPoint(LC_ActionContext *actionContext)
:RS_PreviewActionInterface("Get Point",actionContext)
, m_canceled(false)
, m_completed{false}
, m_setTargetPoint{false}
, m_actionData(std::make_unique<ActionData>()){
m_actionData->targetPoint = RS_Vector(0,0);
}
QC_ActionGetPoint::~QC_ActionGetPoint() = default;
void QC_ActionGetPoint::trigger() {
RS_DEBUG->print("QC_ActionGetPoint::trigger()");
m_completed = true;
updateMouseButtonHints();
}
void QC_ActionGetPoint::mouseMoveEvent(QMouseEvent* e) {
deletePreview();
RS_DEBUG->print("QC_ActionGetPoint::mouseMoveEvent begin");
RS_Vector mouse = snapPoint(e);
if(m_setTargetPoint){
if (m_actionData->referencePoint.valid) {
m_actionData->targetPoint = mouse;
RS_Line *line =new RS_Line{m_preview.get(),
m_actionData->referencePoint, mouse};
line->setPen(RS_Pen(RS_Color(0,0,0), RS2::Width00, RS2::DotLine ));
m_preview->addEntity(line);
RS_DEBUG->print("QC_ActionGetPoint::mouseMoveEvent: draw preview");
m_preview->addSelectionFrom(*m_container,m_viewport);
}
} else {
m_actionData->targetPoint = mouse;
}
RS_DEBUG->print("QC_ActionGetPoint::mouseMoveEvent end");
drawPreview();
}
void QC_ActionGetPoint::mouseReleaseEvent(QMouseEvent* e) {
if (e->button()==Qt::LeftButton) {
RS_CoordinateEvent ce(snapPoint(e));
coordinateEvent(&ce);
} else if (e->button()==Qt::RightButton) {
m_canceled = true;
m_completed = true;
finish();
}
}
void QC_ActionGetPoint::onCoordinateEvent( [[maybe_unused]]int status, [[maybe_unused]]bool isZero, const RS_Vector &pos) {
m_actionData->targetPoint = pos;
moveRelativeZero(m_actionData->targetPoint);
trigger();
}
void QC_ActionGetPoint::updateMouseButtonHints() {
if (!m_completed)
updateMouseWidget(m_actionData->message, tr("Cancel"));
else
updateMouseWidget();
}
RS2::CursorType QC_ActionGetPoint::doGetMouseCursor([[maybe_unused]] int status){
return RS2::CadCursor;
}
void QC_ActionGetPoint::setBasepoint(QPointF* basepoint){
m_actionData->referencePoint.x = basepoint->x();
m_actionData->referencePoint.y = basepoint->y();
m_setTargetPoint = true;
}
void QC_ActionGetPoint::setMessage(QString msg){
m_actionData->message = msg;
}
void QC_ActionGetPoint::getPoint(QPointF *point){
if (m_actionData) {
point->setX(m_actionData->targetPoint.x);
point->setY(m_actionData->targetPoint.y);
}
}
|