]> Shamusworld >> Repos - architektonas/blob - src/actions/rs_actionmodifyentity.cpp
74912ab9f6ff0738b2788f76f44f6fab1ac12495
[architektonas] / src / actions / rs_actionmodifyentity.cpp
1 /****************************************************************************
2 ** $Id: rs_actionmodifyentity.cpp 1149 2004-09-19 11:06:35Z andrew $
3 **
4 ** Copyright (C) 2001-2003 RibbonSoft. All rights reserved.
5 **
6 ** This file is part of the qcadlib Library project.
7 **
8 ** This file may be distributed and/or modified under the terms of the
9 ** GNU General Public License version 2 as published by the Free Software
10 ** Foundation and appearing in the file LICENSE.GPL included in the
11 ** packaging of this file.
12 **
13 ** Licensees holding valid qcadlib Professional Edition licenses may use
14 ** this file in accordance with the qcadlib Commercial License
15 ** Agreement provided with the Software.
16 **
17 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
18 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
19 **
20 ** See http://www.ribbonsoft.com for further details.
21 **
22 ** Contact info@ribbonsoft.com if any conditions of this licensing are
23 ** not clear to you.
24 **
25 **********************************************************************/
26
27 #include "rs_actionmodifyentity.h"
28
29 #include "rs_snapper.h"
30
31
32
33 RS_ActionModifyEntity::RS_ActionModifyEntity(RS_EntityContainer& container,
34         RS_GraphicView& graphicView)
35         :RS_ActionInterface("Modify Entity", container, graphicView) {
36
37     en = NULL;
38 }
39
40
41 QAction* RS_ActionModifyEntity::createGUIAction(RS2::ActionType /*type*/, QObject* /*parent*/)
42 {
43         QAction * action = new QAction(tr("&Properties"), 0);
44 //      QAction* action = new QAction(tr("Properties"), tr("&Properties"),
45 //                                                                      QKeySequence(), NULL);
46         action->setStatusTip(tr("Modify Entity Properties"));
47         return action;
48 }
49
50 void RS_ActionModifyEntity::trigger()
51 {
52     if (en!=NULL) {
53         RS_Entity* clone = en->clone();
54         if (RS_DIALOGFACTORY->requestModifyEntityDialog(clone)) {
55             container->addEntity(clone);
56
57             graphicView->deleteEntity(en);
58                         en->setSelected(false);
59
60                         clone->setSelected(false);
61             graphicView->drawEntity(clone);
62
63             if (document!=NULL) {
64                 document->startUndoCycle();
65
66                 document->addUndoable(clone);
67                 en->setUndoState(true);
68                 document->addUndoable(en);
69
70                 document->endUndoCycle();
71             }
72             RS_DIALOGFACTORY->updateSelectionWidget(container->countSelected());
73         } else {
74             delete clone;
75         }
76
77     } else {
78         RS_DEBUG->print("RS_ActionModifyEntity::trigger: Entity is NULL\n");
79     }
80 }
81
82
83
84 void RS_ActionModifyEntity::mouseReleaseEvent(QMouseEvent* e) {
85     if (RS2::qtToRsButtonState(e->button())==RS2::RightButton) {
86         init(getStatus()-1);
87     } else {
88         en = catchEntity(e);
89         trigger();
90     }
91 }
92
93
94
95 void RS_ActionModifyEntity::updateMouseCursor() {
96     graphicView->setMouseCursor(RS2::SelectCursor);
97 }
98
99 // EOF