1 | /**************************************************************************** |
2 | ** |
3 | ** Copyright (C) 2016 The Qt Company Ltd. |
4 | ** Contact: https://www.qt.io/licensing/ |
5 | ** |
6 | ** This file is part of the examples of the Qt Toolkit. |
7 | ** |
8 | ** $QT_BEGIN_LICENSE:BSD$ |
9 | ** Commercial License Usage |
10 | ** Licensees holding valid commercial Qt licenses may use this file in |
11 | ** accordance with the commercial license agreement provided with the |
12 | ** Software or, alternatively, in accordance with the terms contained in |
13 | ** a written agreement between you and The Qt Company. For licensing terms |
14 | ** and conditions see https://www.qt.io/terms-conditions. For further |
15 | ** information use the contact form at https://www.qt.io/contact-us. |
16 | ** |
17 | ** BSD License Usage |
18 | ** Alternatively, you may use this file under the terms of the BSD license |
19 | ** as follows: |
20 | ** |
21 | ** "Redistribution and use in source and binary forms, with or without |
22 | ** modification, are permitted provided that the following conditions are |
23 | ** met: |
24 | ** * Redistributions of source code must retain the above copyright |
25 | ** notice, this list of conditions and the following disclaimer. |
26 | ** * Redistributions in binary form must reproduce the above copyright |
27 | ** notice, this list of conditions and the following disclaimer in |
28 | ** the documentation and/or other materials provided with the |
29 | ** distribution. |
30 | ** * Neither the name of The Qt Company Ltd nor the names of its |
31 | ** contributors may be used to endorse or promote products derived |
32 | ** from this software without specific prior written permission. |
33 | ** |
34 | ** |
35 | ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
36 | ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
37 | ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
38 | ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
39 | ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
40 | ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
41 | ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
42 | ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
43 | ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
44 | ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
45 | ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." |
46 | ** |
47 | ** $QT_END_LICENSE$ |
48 | ** |
49 | ****************************************************************************/ |
50 | |
51 | #include "mainwindow.h" |
52 | #include "diagramscene.h" |
53 | #include "diagramitem.h" |
54 | #include "commands.h" |
55 | |
56 | #include <QAction> |
57 | #include <QGraphicsView> |
58 | #include <QMenu> |
59 | #include <QMenuBar> |
60 | #include <QMessageBox> |
61 | #include <QUndoView> |
62 | |
63 | //! [0] |
64 | MainWindow::MainWindow() |
65 | { |
66 | undoStack = new QUndoStack(this); |
67 | |
68 | createActions(); |
69 | createMenus(); |
70 | |
71 | createUndoView(); |
72 | |
73 | diagramScene = new DiagramScene(); |
74 | QBrush pixmapBrush(QPixmap(":/images/cross.png" ).scaled(30, 30)); |
75 | diagramScene->setBackgroundBrush(pixmapBrush); |
76 | diagramScene->setSceneRect(QRect(0, 0, 500, 500)); |
77 | |
78 | connect(diagramScene, &DiagramScene::itemMoved, |
79 | this, &MainWindow::itemMoved); |
80 | |
81 | setWindowTitle("Undo Framework" ); |
82 | QGraphicsView *view = new QGraphicsView(diagramScene); |
83 | setCentralWidget(view); |
84 | resize(700, 500); |
85 | } |
86 | //! [0] |
87 | |
88 | //! [1] |
89 | void MainWindow::createUndoView() |
90 | { |
91 | undoView = new QUndoView(undoStack); |
92 | undoView->setWindowTitle(tr("Command List" )); |
93 | undoView->show(); |
94 | undoView->setAttribute(Qt::WA_QuitOnClose, false); |
95 | } |
96 | //! [1] |
97 | |
98 | //! [2] |
99 | void MainWindow::createActions() |
100 | { |
101 | deleteAction = new QAction(tr("&Delete Item" ), this); |
102 | deleteAction->setShortcut(tr("Del" )); |
103 | connect(deleteAction, &QAction::triggered, this, &MainWindow::deleteItem); |
104 | //! [2] //! [3] |
105 | |
106 | //! [3] //! [4] |
107 | addBoxAction = new QAction(tr("Add &Box" ), this); |
108 | //! [4] |
109 | addBoxAction->setShortcut(tr("Ctrl+O" )); |
110 | connect(addBoxAction, &QAction::triggered, this, &MainWindow::addBox); |
111 | |
112 | addTriangleAction = new QAction(tr("Add &Triangle" ), this); |
113 | addTriangleAction->setShortcut(tr("Ctrl+T" )); |
114 | connect(addTriangleAction, &QAction::triggered, this, &MainWindow::addTriangle); |
115 | |
116 | //! [5] |
117 | undoAction = undoStack->createUndoAction(this, tr("&Undo" )); |
118 | undoAction->setShortcuts(QKeySequence::Undo); |
119 | |
120 | redoAction = undoStack->createRedoAction(this, tr("&Redo" )); |
121 | redoAction->setShortcuts(QKeySequence::Redo); |
122 | //! [5] |
123 | |
124 | exitAction = new QAction(tr("E&xit" ), this); |
125 | exitAction->setShortcuts(QKeySequence::Quit); |
126 | connect(exitAction, &QAction::triggered, this, &QWidget::close); |
127 | |
128 | aboutAction = new QAction(tr("&About" ), this); |
129 | QList<QKeySequence> aboutShortcuts; |
130 | aboutShortcuts << tr("Ctrl+A" ) << tr("Ctrl+B" ); |
131 | aboutAction->setShortcuts(aboutShortcuts); |
132 | connect(aboutAction, &QAction::triggered, this, &MainWindow::about); |
133 | } |
134 | |
135 | //! [6] |
136 | void MainWindow::createMenus() |
137 | { |
138 | //! [6] |
139 | fileMenu = menuBar()->addMenu(tr("&File" )); |
140 | fileMenu->addAction(exitAction); |
141 | |
142 | //! [7] |
143 | editMenu = menuBar()->addMenu(tr("&Edit" )); |
144 | editMenu->addAction(undoAction); |
145 | editMenu->addAction(redoAction); |
146 | editMenu->addSeparator(); |
147 | editMenu->addAction(deleteAction); |
148 | connect(editMenu, &QMenu::aboutToShow, |
149 | this, &MainWindow::itemMenuAboutToShow); |
150 | connect(editMenu, &QMenu::aboutToHide, |
151 | this, &MainWindow::itemMenuAboutToHide); |
152 | |
153 | //! [7] |
154 | itemMenu = menuBar()->addMenu(tr("&Item" )); |
155 | itemMenu->addAction(addBoxAction); |
156 | itemMenu->addAction(addTriangleAction); |
157 | |
158 | helpMenu = menuBar()->addMenu(tr("&About" )); |
159 | helpMenu->addAction(aboutAction); |
160 | //! [8] |
161 | } |
162 | //! [8] |
163 | |
164 | //! [9] |
165 | void MainWindow::itemMoved(DiagramItem *movedItem, |
166 | const QPointF &oldPosition) |
167 | { |
168 | undoStack->push(new MoveCommand(movedItem, oldPosition)); |
169 | } |
170 | //! [9] |
171 | |
172 | //! [10] |
173 | void MainWindow::deleteItem() |
174 | { |
175 | if (diagramScene->selectedItems().isEmpty()) |
176 | return; |
177 | |
178 | QUndoCommand *deleteCommand = new DeleteCommand(diagramScene); |
179 | undoStack->push(deleteCommand); |
180 | } |
181 | //! [10] |
182 | |
183 | //! [11] |
184 | void MainWindow::itemMenuAboutToHide() |
185 | { |
186 | deleteAction->setEnabled(true); |
187 | } |
188 | //! [11] |
189 | |
190 | //! [12] |
191 | void MainWindow::itemMenuAboutToShow() |
192 | { |
193 | deleteAction->setEnabled(!diagramScene->selectedItems().isEmpty()); |
194 | } |
195 | //! [12] |
196 | |
197 | //! [13] |
198 | void MainWindow::addBox() |
199 | { |
200 | QUndoCommand *addCommand = new AddCommand(DiagramItem::Box, diagramScene); |
201 | undoStack->push(addCommand); |
202 | } |
203 | //! [13] |
204 | |
205 | //! [14] |
206 | void MainWindow::addTriangle() |
207 | { |
208 | QUndoCommand *addCommand = new AddCommand(DiagramItem::Triangle, |
209 | diagramScene); |
210 | undoStack->push(addCommand); |
211 | } |
212 | //! [14] |
213 | |
214 | //! [15] |
215 | void MainWindow::about() |
216 | { |
217 | QMessageBox::about(this, tr("About Undo" ), |
218 | tr("The <b>Undo</b> example demonstrates how to " |
219 | "use Qt's undo framework." )); |
220 | } |
221 | //! [15] |
222 | |