Files
newspark110/actions/lc_actiondrawlinepolygon3.cpp
Chenwenxuan edac2715f0 init
2024-03-06 14:54:30 +08:00

235 lines
6.1 KiB
C++

/****************************************************************************
**
** This file is part of the LibreCAD project, a 2D CAD program
**
** Copyright (C) 2017 A. Stebich (librecad@mail.lordofbikes.de)
** Copyright (C) 2017 taoxumuye (tfy.hi@163.com)
** 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 "lc_actiondrawlinepolygon3.h"
#include <QAction>
#include <QMouseEvent>
#include "rs_dialogfactory.h"
#include "rs_graphicview.h"
#include "rs_commandevent.h"
#include "rs_creation.h"
#include "rs_coordinateevent.h"
#include "rs_preview.h"
#include "rs_debug.h"
struct LC_ActionDrawLinePolygonCenTan::Points {
/** Center of polygon */
RS_Vector center;
/** Edge */
RS_Vector corner;
};
LC_ActionDrawLinePolygonCenTan::LC_ActionDrawLinePolygonCenTan(
RS_EntityContainer& container,
RS_GraphicView& graphicView)
:RS_PreviewActionInterface("Draw Polygons (Center,Corner)", container, graphicView)
, pPoints(new Points{})
,number(3)
,lastStatus(SetCenter)
{
actionType=RS2::ActionDrawLinePolygonCenCor;
}
LC_ActionDrawLinePolygonCenTan::~LC_ActionDrawLinePolygonCenTan() = default;
void LC_ActionDrawLinePolygonCenTan::trigger() {
RS_PreviewActionInterface::trigger();
deletePreview();
RS_Creation creation(container, graphicView);
bool ok = creation.createPolygon3(pPoints->center, pPoints->corner, number);
if (!ok) {
RS_DEBUG->print("RS_ActionDrawLinePolygon::trigger:"
" No polygon added\n");
}
}
void LC_ActionDrawLinePolygonCenTan::mouseMoveEvent(QMouseEvent* e) {
RS_DEBUG->print("RS_ActionDrawLinePolygon::mouseMoveEvent begin");
RS_Vector mouse = snapPoint(e);
switch (getStatus()) {
case SetCenter:
break;
case SetTangent:
if (pPoints->center.valid) {
pPoints->corner = mouse;
deletePreview();
RS_Creation creation(preview.get(), nullptr, false);
creation.createPolygon3(pPoints->center, pPoints->corner, number);
drawPreview();
}
break;
default:
break;
}
}
void LC_ActionDrawLinePolygonCenTan::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 LC_ActionDrawLinePolygonCenTan::coordinateEvent(RS_CoordinateEvent* e) {
if (!e) return;
RS_Vector mouse = e->getCoordinate();
switch (getStatus()) {
case SetCenter:
pPoints->center = mouse;
setStatus(SetTangent);
graphicView->moveRelativeZero(mouse);
break;
case SetTangent:
pPoints->corner = mouse;
trigger();
break;
default:
break;
}
}
void LC_ActionDrawLinePolygonCenTan::updateMouseButtonHints() {
switch (getStatus()) {
case SetCenter:
RS_DIALOGFACTORY->updateMouseWidget(tr("Specify center"),
"");
break;
case SetTangent:
RS_DIALOGFACTORY->updateMouseWidget(tr("Specify a tangent"), "");
break;
case SetNumber:
RS_DIALOGFACTORY->updateMouseWidget(tr("Enter number:"), "");
break;
default:
RS_DIALOGFACTORY->updateMouseWidget();
break;
}
}
void LC_ActionDrawLinePolygonCenTan::showOptions() {
RS_ActionInterface::showOptions();
RS_DIALOGFACTORY->requestOptions(this, true);
}
void LC_ActionDrawLinePolygonCenTan::hideOptions() {
RS_ActionInterface::hideOptions();
RS_DIALOGFACTORY->requestOptions(this, false);
}
void LC_ActionDrawLinePolygonCenTan::commandEvent(RS_CommandEvent* e) {
QString c = e->getCommand().toLower();
if (checkCommand("help", c)) {
RS_DIALOGFACTORY->commandMessage(msgAvailableCommands()
+ getAvailableCommands().join(", "));
return;
}
switch (getStatus()) {
case SetCenter:
case SetTangent:
if (checkCommand("number", c)) {
deletePreview();
lastStatus = (Status)getStatus();
setStatus(SetNumber);
}
break;
case SetNumber: {
bool ok;
int n = c.toInt(&ok);
if (ok) {
e->accept();
if (n>0 && n<10000) {
number = n;
} else
RS_DIALOGFACTORY->commandMessage(tr("Not a valid number. "
"Try 1..9999"));
} else
RS_DIALOGFACTORY->commandMessage(tr("Not a valid expression"));
RS_DIALOGFACTORY->requestOptions(this, true, true);
setStatus(lastStatus);
}
break;
default:
break;
}
}
QStringList LC_ActionDrawLinePolygonCenTan::getAvailableCommands() {
QStringList cmd;
switch (getStatus()) {
case SetCenter:
case SetTangent:
cmd += command("number");
break;
default:
break;
}
return cmd;
}
void LC_ActionDrawLinePolygonCenTan::updateMouseCursor() {
graphicView->setMouseCursor(RS2::CadCursor);
}