This commit is contained in:
Chenwenxuan
2024-03-06 14:54:30 +08:00
commit edac2715f0
1525 changed files with 809982 additions and 0 deletions

View File

@@ -0,0 +1,258 @@
/****************************************************************************
**
** This file is part of the LibreCAD project, a 2D CAD program
**
** Copyright (C) 2010 R. van Twisk (librecad@rvt.dds.nl)
** Copyright (C) 2001-2003 RibbonSoft. All rights reserved.
**
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file gpl-2.0.txt included in the
** packaging of this file.
**
** 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 "rs_actionmodifymoverotate.h"
#include <QAction>
#include <QMouseEvent>
#include "rs_dialogfactory.h"
#include "rs_graphicview.h"
#include "rs_commandevent.h"
#include "rs_coordinateevent.h"
#include "rs_math.h"
#include "rs_modification.h"
#include "rs_preview.h"
#include "rs_debug.h"
struct RS_ActionModifyMoveRotate::Points {
RS_MoveRotateData data;
RS_Vector targetPoint;
};
RS_ActionModifyMoveRotate::RS_ActionModifyMoveRotate(
RS_EntityContainer& container,
RS_GraphicView& graphicView)
:RS_PreviewActionInterface("Move and Rotate Entities",
container, graphicView)
, pPoints(new Points())
{
actionType=RS2::ActionModifyMoveRotate;
}
RS_ActionModifyMoveRotate::~RS_ActionModifyMoveRotate() = default;
void RS_ActionModifyMoveRotate::init(int status) {
RS_ActionInterface::init(status);
}
void RS_ActionModifyMoveRotate::trigger() {
RS_DEBUG->print("RS_ActionModifyMoveRotate::trigger()");
RS_Modification m(*container, graphicView);
m.moveRotate(pPoints->data);
finish(false);
RS_DIALOGFACTORY->updateSelectionWidget(container->countSelected(),container->totalSelectedLength());
}
void RS_ActionModifyMoveRotate::mouseMoveEvent(QMouseEvent* e) {
RS_DEBUG->print("RS_ActionModifyMoveRotate::mouseMoveEvent begin");
if (getStatus()==SetReferencePoint ||
getStatus()==SetTargetPoint) {
RS_Vector mouse = snapPoint(e);
switch (getStatus()) {
case SetReferencePoint:
pPoints->data.referencePoint = mouse;
break;
case SetTargetPoint:
if (pPoints->data.referencePoint.valid) {
pPoints->targetPoint = mouse;
pPoints->data.offset = pPoints->targetPoint-pPoints->data.referencePoint;
deletePreview();
preview->addSelectionFrom(*container);
preview->rotate(pPoints->data.referencePoint, pPoints->data.angle);
preview->move(pPoints->data.offset);
drawPreview();
}
break;
default:
break;
}
}
RS_DEBUG->print("RS_ActionModifyMoveRotate::mouseMoveEvent end");
}
void RS_ActionModifyMoveRotate::mouseReleaseEvent(QMouseEvent* e) {
if (e->button()==Qt::LeftButton) {
RS_CoordinateEvent ce(snapPoint(e));
coordinateEvent(&ce);
} else if (e->button()==Qt::RightButton) {
deletePreview();
init(getStatus()-1);
}
}
void RS_ActionModifyMoveRotate::coordinateEvent(RS_CoordinateEvent* e) {
if (e==nullptr) return;
RS_Vector pos = e->getCoordinate();
switch (getStatus()) {
case SetReferencePoint:
pPoints->data.referencePoint = pos;
setStatus(SetTargetPoint);
break;
case SetTargetPoint:
pPoints->targetPoint = pos;
setStatus(ShowDialog);
pPoints->data.offset = pPoints->targetPoint - pPoints->data.referencePoint;
if (RS_DIALOGFACTORY->requestMoveRotateDialog(pPoints->data)) {
trigger();
//finish();
}
break;
default:
break;
}
}
void RS_ActionModifyMoveRotate::commandEvent(RS_CommandEvent* e) {
QString c = e->getCommand().toLower();
if (checkCommand("help", c)) {
RS_DIALOGFACTORY->commandMessage(msgAvailableCommands()
+ getAvailableCommands().join(", "));
return;
}
switch (getStatus()) {
case SetReferencePoint:
case SetTargetPoint:
// RVT_PORT changed from if (c==checkCommand("angle", c)) {
if (checkCommand("angle", c)) {
deletePreview();
lastStatus = (Status)getStatus();
setStatus(SetAngle);
}
break;
case SetAngle: {
bool ok;
double a = RS_Math::eval(c, &ok);
if (ok) {
e->accept();
pPoints->data.angle = RS_Math::deg2rad(a);
} else {
RS_DIALOGFACTORY->commandMessage(tr("Not a valid expression"));
}
RS_DIALOGFACTORY->requestOptions(this, true, true);
setStatus(lastStatus);
}
break;
}
}
QStringList RS_ActionModifyMoveRotate::getAvailableCommands() {
QStringList cmd;
switch (getStatus()) {
case SetReferencePoint:
case SetTargetPoint:
cmd += command("angle");
break;
default:
break;
}
return cmd;
}
void RS_ActionModifyMoveRotate::showOptions() {
//std::cout << "RS_ActionModifyMoveRotate::showOptions()\n";
RS_ActionInterface::showOptions();
RS_DIALOGFACTORY->requestOptions(this, true);
}
void RS_ActionModifyMoveRotate::hideOptions() {
//std::cout << "RS_ActionModifyMoveRotate::hideOptions()\n";
RS_ActionInterface::hideOptions();
RS_DIALOGFACTORY->requestOptions(this, false);
}
void RS_ActionModifyMoveRotate::setAngle(double a) {
pPoints->data.angle = a;
}
double RS_ActionModifyMoveRotate::getAngle() const{
return pPoints->data.angle;
}
void RS_ActionModifyMoveRotate::updateMouseButtonHints() {
switch (getStatus()) {
case SetReferencePoint:
RS_DIALOGFACTORY->updateMouseWidget(tr("Specify reference point"),
tr("Cancel"));
break;
case SetTargetPoint:
RS_DIALOGFACTORY->updateMouseWidget(tr("Specify target point"),
tr("Back"));
break;
case SetAngle:
RS_DIALOGFACTORY->updateMouseWidget(tr("Enter rotation angle:"),
tr("Back"));
break;
default:
RS_DIALOGFACTORY->updateMouseWidget();
break;
}
}
void RS_ActionModifyMoveRotate::updateMouseCursor() {
graphicView->setMouseCursor(RS2::CadCursor);
}
// EOF