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

160 lines
5.4 KiB
C++

/****************************************************************************
**
** 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 <QMouseEvent>
#include "rs_actionselect.h"
#include "rs_dialogfactory.h"
#include "rs_graphicview.h"
#include "rs_actionselectsingle.h"
RS_ActionSelect::RS_ActionSelect(QG_ActionHandler* a_handler,
RS_EntityContainer& container,
RS_GraphicView& graphicView,
RS2::ActionType nextAction,
std::initializer_list<RS2::EntityType> const& entityTypeList)
:RS_ActionInterface("Select Entities", container, graphicView)
,entityTypeList(entityTypeList)
,nextAction(nextAction)
,action_handler(a_handler)
{
actionType=RS2::ActionSelect;
}
void RS_ActionSelect::init(int status) {
RS_ActionInterface::init(status);
if(status >= 0 ) {
graphicView->setCurrentAction(
new RS_ActionSelectSingle(*container, *graphicView, this, entityTypeList));
}
deleteSnapper();
}
void RS_ActionSelect::resume(){
RS_ActionInterface::resume();
deleteSnapper();
}
void RS_ActionSelect::mouseReleaseEvent(QMouseEvent* e) {
if (e->button()==Qt::RightButton) {
init(getStatus()-1);
}
}
int RS_ActionSelect::countSelected() {
int ret=container->countSelected();
if (ret==0) {
RS_DIALOGFACTORY->commandMessage(tr("No entity selected!"));
}
return ret;
}
void RS_ActionSelect::updateMouseButtonHints() {
switch(nextAction) {
case RS2::ActionModifyAttributesNoSelect:
RS_DIALOGFACTORY->updateMouseWidget(tr("Select to modify attributes"), tr("Cancel"));
break;
case RS2::ActionOrderNoSelect:
RS_DIALOGFACTORY->updateMouseWidget(tr("Select entities to order"), tr("Cancel"));
break;
case RS2::ActionModifyDeleteNoSelect:
RS_DIALOGFACTORY->updateMouseWidget(tr("Select to delete"), tr("Cancel"));
break;
case RS2::ActionModifyDeleteQuick:
RS_DIALOGFACTORY->updateMouseWidget(tr("Select to delete immediately"), tr("Cancel"));
break;
case RS2::ActionModifyMoveNoSelect:
RS_DIALOGFACTORY->updateMouseWidget(tr("Select to move"), tr("Cancel"));
break;
case RS2::ActionEditCopyNoSelect:
RS_DIALOGFACTORY->updateMouseWidget(tr("Select to copy"), tr("Cancel"));
break;
case RS2::ActionEditCutNoSelect:
RS_DIALOGFACTORY->updateMouseWidget(tr("Select to cut"), tr("Cancel"));
break;
case RS2::ActionModifyRevertDirectionNoSelect:
RS_DIALOGFACTORY->updateMouseWidget(tr("Select to revert direction"), tr("Cancel"));
break;
case RS2::ActionModifyRotateNoSelect:
RS_DIALOGFACTORY->updateMouseWidget(tr("Select to rotate"), tr("Cancel"));
break;
case RS2::ActionModifyScaleNoSelect:
RS_DIALOGFACTORY->updateMouseWidget(tr("Select to scale"), tr("Cancel"));
break;
case RS2::ActionModifyMirrorNoSelect:
RS_DIALOGFACTORY->updateMouseWidget(tr("Select to mirror"), tr("Cancel"));
break;
case RS2::ActionModifyMoveRotateNoSelect:
RS_DIALOGFACTORY->updateMouseWidget(tr("Select to move and rotate"), tr("Cancel"));
break;
case RS2::ActionModifyOffsetNoSelect:
RS_DIALOGFACTORY->updateMouseWidget(tr("Select to create offset"), tr("Cancel"));
break;
case RS2::ActionModifyRotate2NoSelect:
RS_DIALOGFACTORY->updateMouseWidget(tr("Select for two axis rotation"), tr("Cancel"));
break;
case RS2::ActionModifyExplodeTextNoSelect:
RS_DIALOGFACTORY->updateMouseWidget(tr("Select to explode text"), tr("Cancel"));
break;
case RS2::ActionBlocksExplodeNoSelect:
RS_DIALOGFACTORY->updateMouseWidget(tr("Select to explode block"), tr("Cancel"));
break;
case RS2::ActionBlocksCreateNoSelect:
RS_DIALOGFACTORY->updateMouseWidget(tr("Select to create block"), tr("Cancel"));
break;
default:
RS_DIALOGFACTORY->updateMouseWidget(tr(""), tr(""));
}
}
void RS_ActionSelect::updateMouseCursor() {
if(graphicView){
if(isFinished()){
graphicView->setMouseCursor(RS2::ArrowCursor);
}else{
graphicView->setMouseCursor(RS2::SelectCursor);
}
}
}
void RS_ActionSelect::keyPressEvent(QKeyEvent* e)
{
if (e->key()==Qt::Key_Enter && countSelected() > 0)
{
finish();
action_handler->setCurrentAction(nextAction);
}
}
// EOF