/**************************************************************************** ** ** 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_actioneditpaste.h" #include #include "rs_dialogfactory.h" #include "rs_graphicview.h" #include "rs_clipboard.h" #include "rs_modification.h" /** * Constructor. * * @param undo true for undo and false for redo. */ RS_ActionEditPaste::RS_ActionEditPaste( RS_EntityContainer& container, RS_GraphicView& graphicView) :RS_PreviewActionInterface("Edit Paste", container, graphicView) {} RS_ActionEditPaste::~RS_ActionEditPaste() {} QAction* RS_ActionEditPaste::createGUIAction(RS2::ActionType /*type*/, QObject* parent) { // tr("Paste") QAction* action = new QAction(tr("&Paste"), parent); #if QT_VERSION >= 0x040600 action->setIcon(QIcon::fromTheme("edit-paste", QIcon(":/actions/editpaste2.png"))); #else action->setIcon(QIcon(":/actions/editpaste2.png")); #endif action->setShortcut(QKeySequence::Paste); //action->zetStatusTip(tr("Pastes the clipboard contents")); return action; } void RS_ActionEditPaste::init(int status) { RS_PreviewActionInterface::init(status); //trigger(); } void RS_ActionEditPaste::trigger() { deletePreview(); RS_Modification m(*container, graphicView); m.paste(RS_PasteData(targetPoint, 1.0, 0.0, false, "")); //std::cout << *RS_Clipboard::instance(); graphicView->redraw(RS2::RedrawDrawing); finish(false); } void RS_ActionEditPaste::mouseMoveEvent(QMouseEvent* e) { switch (getStatus()) { case SetTargetPoint: targetPoint = snapPoint(e); deletePreview(); preview->addAllFrom(*RS_CLIPBOARD->getGraphic()); preview->move(targetPoint); if (graphic!=NULL) { RS2::Unit sourceUnit = RS_CLIPBOARD->getGraphic()->getUnit(); RS2::Unit targetUnit = graphic->getUnit(); double f = RS_Units::convert(1.0, sourceUnit, targetUnit); preview->scale(targetPoint, RS_Vector(f,f)); } drawPreview(); break; default: break; } } void RS_ActionEditPaste::mouseReleaseEvent(QMouseEvent* e) { if (e->button()==Qt::LeftButton) { RS_CoordinateEvent ce(snapPoint(e)); coordinateEvent(&ce); } else if (e->button()==Qt::RightButton) { init(getStatus()-1); } } void RS_ActionEditPaste::coordinateEvent(RS_CoordinateEvent* e) { if (e==NULL) { return; } targetPoint = e->getCoordinate(); trigger(); } void RS_ActionEditPaste::updateMouseButtonHints() { switch (getStatus()) { case SetTargetPoint: RS_DIALOGFACTORY->updateMouseWidget(tr("Set reference point"), tr("Cancel")); break; default: RS_DIALOGFACTORY->updateMouseWidget("", ""); break; } } void RS_ActionEditPaste::updateMouseCursor() { graphicView->setMouseCursor(RS2::CadCursor); } void RS_ActionEditPaste::updateToolBar() { //not needed any more with new snap return; if (!isFinished()) { RS_DIALOGFACTORY->requestToolBar(RS2::ToolBarSnap); } else { RS_DIALOGFACTORY->requestToolBar(RS2::ToolBarMain); } } // EOF