source: trunk/examples/tools/undoframework/commands.cpp@ 983

Last change on this file since 983 was 846, checked in by Dmitry A. Kuminov, 14 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

File size: 4.8 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4** All rights reserved.
5** Contact: Nokia Corporation ([email protected])
6**
7** This file is part of the examples of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:BSD$
10** You may use this file under the terms of the BSD license as follows:
11**
12** "Redistribution and use in source and binary forms, with or without
13** modification, are permitted provided that the following conditions are
14** met:
15** * Redistributions of source code must retain the above copyright
16** notice, this list of conditions and the following disclaimer.
17** * Redistributions in binary form must reproduce the above copyright
18** notice, this list of conditions and the following disclaimer in
19** the documentation and/or other materials provided with the
20** distribution.
21** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
22** the names of its contributors may be used to endorse or promote
23** products derived from this software without specific prior written
24** permission.
25**
26** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
28** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
29** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
30** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
31** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
32** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
37** $QT_END_LICENSE$
38**
39****************************************************************************/
40
41#include <QtGui>
42
43#include "commands.h"
44#include "diagramitem.h"
45
46//! [0]
47MoveCommand::MoveCommand(DiagramItem *diagramItem, const QPointF &oldPos,
48 QUndoCommand *parent)
49 : QUndoCommand(parent)
50{
51 myDiagramItem = diagramItem;
52 newPos = diagramItem->pos();
53 myOldPos = oldPos;
54}
55//! [0]
56
57//! [1]
58bool MoveCommand::mergeWith(const QUndoCommand *command)
59{
60 const MoveCommand *moveCommand = static_cast<const MoveCommand *>(command);
61 DiagramItem *item = moveCommand->myDiagramItem;
62
63 if (myDiagramItem != item)
64 return false;
65
66 newPos = item->pos();
67 setText(QObject::tr("Move %1")
68 .arg(createCommandString(myDiagramItem, newPos)));
69
70 return true;
71}
72//! [1]
73
74//! [2]
75void MoveCommand::undo()
76{
77 myDiagramItem->setPos(myOldPos);
78 myDiagramItem->scene()->update();
79 setText(QObject::tr("Move %1")
80 .arg(createCommandString(myDiagramItem, newPos)));
81}
82//! [2]
83
84//! [3]
85void MoveCommand::redo()
86{
87 myDiagramItem->setPos(newPos);
88 setText(QObject::tr("Move %1")
89 .arg(createCommandString(myDiagramItem, newPos)));
90}
91//! [3]
92
93//! [4]
94DeleteCommand::DeleteCommand(QGraphicsScene *scene, QUndoCommand *parent)
95 : QUndoCommand(parent)
96{
97 myGraphicsScene = scene;
98 QList<QGraphicsItem *> list = myGraphicsScene->selectedItems();
99 list.first()->setSelected(false);
100 myDiagramItem = static_cast<DiagramItem *>(list.first());
101 setText(QObject::tr("Delete %1")
102 .arg(createCommandString(myDiagramItem, myDiagramItem->pos())));
103}
104//! [4]
105
106//! [5]
107void DeleteCommand::undo()
108{
109 myGraphicsScene->addItem(myDiagramItem);
110 myGraphicsScene->update();
111}
112//! [5]
113
114//! [6]
115void DeleteCommand::redo()
116{
117 myGraphicsScene->removeItem(myDiagramItem);
118}
119//! [6]
120
121//! [7]
122AddCommand::AddCommand(DiagramItem::DiagramType addType,
123 QGraphicsScene *scene, QUndoCommand *parent)
124 : QUndoCommand(parent)
125{
126 static int itemCount = 0;
127
128 myGraphicsScene = scene;
129 myDiagramItem = new DiagramItem(addType);
130 initialPosition = QPointF((itemCount * 15) % int(scene->width()),
131 (itemCount * 15) % int(scene->height()));
132 scene->update();
133 ++itemCount;
134 setText(QObject::tr("Add %1")
135 .arg(createCommandString(myDiagramItem, initialPosition)));
136}
137//! [7]
138
139//! [8]
140void AddCommand::undo()
141{
142 myGraphicsScene->removeItem(myDiagramItem);
143 myGraphicsScene->update();
144}
145//! [8]
146
147//! [9]
148void AddCommand::redo()
149{
150 myGraphicsScene->addItem(myDiagramItem);
151 myDiagramItem->setPos(initialPosition);
152 myGraphicsScene->clearSelection();
153 myGraphicsScene->update();
154}
155//! [9]
156
157QString createCommandString(DiagramItem *item, const QPointF &pos)
158{
159 return QObject::tr("%1 at (%2, %3)")
160 .arg(item->diagramType() == DiagramItem::Box ? "Box" : "Triangle")
161 .arg(pos.x()).arg(pos.y());
162}
Note: See TracBrowser for help on using the repository browser.