summaryrefslogtreecommitdiffstats
path: root/examples/widgets/doc/src
diff options
context:
space:
mode:
Diffstat (limited to 'examples/widgets/doc/src')
-rw-r--r--examples/widgets/doc/src/undo.qdoc20
-rw-r--r--examples/widgets/doc/src/undoframework.qdoc41
2 files changed, 17 insertions, 44 deletions
diff --git a/examples/widgets/doc/src/undo.qdoc b/examples/widgets/doc/src/undo.qdoc
deleted file mode 100644
index 3ffe10ddf3d..00000000000
--- a/examples/widgets/doc/src/undo.qdoc
+++ /dev/null
@@ -1,20 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only
-
-/*!
- \example tools/undo
- \title Undo Framework
- \ingroup examples-widgets-tools
-
- \brief This example shows Qt's undo framework in action.
-
- \image undodemo.png
-
- Qt's undo framework is an implementation of the Command
- pattern, which provides advanced undo/redo functionality.
-
- To show the abilities of the framework, we have implemented a
- small diagram application in which the diagram items are geometric
- primitives. You can edit the diagram in the following ways: add,
- move, change the color of, and delete the items.
-*/
diff --git a/examples/widgets/doc/src/undoframework.qdoc b/examples/widgets/doc/src/undoframework.qdoc
index 3d275788f60..6ca2b4b138f 100644
--- a/examples/widgets/doc/src/undoframework.qdoc
+++ b/examples/widgets/doc/src/undoframework.qdoc
@@ -69,6 +69,9 @@
\snippet tools/undoframework/mainwindow.cpp 0
In the constructor, we set up the DiagramScene and QGraphicsView.
+ We only want \c deleteAction to be enabled when we have selected an
+ item, so we connect to the \c selectionChanged() signal of the scene
+ to \c updateActions() slot.
Here is the \c createUndoView() function:
@@ -76,13 +79,11 @@
The QUndoView is a widget that display the text, which is set with
the \l{QUndoCommand::}{setText()} function, for each QUndoCommand
- in the undo stack in a list.
+ in the undo stack in a list. We put it into a docking widget.
Here is the \c createActions() function:
\snippet tools/undoframework/mainwindow.cpp 2
- \codeline
- \snippet tools/undoframework/mainwindow.cpp 3
\dots
\snippet tools/undoframework/mainwindow.cpp 5
@@ -95,46 +96,38 @@
\l{QUndoCommand::}{text()} of the undo commands. For the other
actions we have implemented slots in the \c MainWindow class.
- Here is the \c createMenus() function:
-
+ \dots
\snippet tools/undoframework/mainwindow.cpp 6
- \dots
+ Once all actions are created we update their state by calling the
+ same function that is connected to the \c selectionChanged signal of
+ the scene.
+
+ The \c createMenus() and \c createToolBars() functions add the
+ actions to menus and toolbars:
+
\snippet tools/undoframework/mainwindow.cpp 7
\dots
\snippet tools/undoframework/mainwindow.cpp 8
-
- We have to use the QMenu \c aboutToShow() and \c aboutToHide()
- signals since we only want \c deleteAction to be enabled when we
- have selected an item.
+ \dots
+ \snippet tools/undoframework/mainwindow.cpp 9
Here is the \c itemMoved() slot:
- \snippet tools/undoframework/mainwindow.cpp 9
+ \snippet tools/undoframework/mainwindow.cpp 11
We simply push a MoveCommand on the stack, which calls \c redo()
on it.
Here is the \c deleteItem() slot:
- \snippet tools/undoframework/mainwindow.cpp 10
+ \snippet tools/undoframework/mainwindow.cpp 12
- An item must be selected to be deleted. We need to check if it is
+ An item must be selected to be deleted. We need to check if it is
selected as the \c deleteAction may be enabled even if an item is
not selected. This can happen as we do not catch a signal or event
when an item is selected.
- Here is the \c itemMenuAboutToShow() and itemMenuAboutToHide() slots:
-
- \snippet tools/undoframework/mainwindow.cpp 11
- \codeline
- \snippet tools/undoframework/mainwindow.cpp 12
-
- We implement \c itemMenuAboutToShow() and \c itemMenuAboutToHide()
- to get a dynamic item menu. These slots are connected to the
- \l{QMenu::}{aboutToShow()} and \l{QMenu::}{aboutToHide()} signals.
- We need this to disable or enable the \c deleteAction.
-
Here is the \c addBox() slot:
\snippet tools/undoframework/mainwindow.cpp 13