QUndoStack 类是堆栈为 QUndoCommand 对象。 更多...
继承 QObject .
QUndoStack 类是堆栈为 QUndoCommand 对象。
有关 Qt 撤消框架的概述,见 概述文档 .
An undo stack maintains a stack of commands that have been applied to a document.
New commands are pushed on the stack using push (). Commands can be undone and redone using undo () 和 redo (), or by triggering the actions returned by createUndoAction () 和 createRedoAction ().
QUndoStack keeps track of the current command. This is the command which will be executed by the next call to redo (). The index of this command is returned by index (). The state of the edited object can be rolled forward or back using setIndex (). If the top-most command on the stack has already been redone, index () is equal to count ().
QUndoStack provides support for undo and redo actions, command compression, command macros, and supports the concept of a clean state .
QUndoStack provides convenient undo and redo QAction objects, which can be inserted into a menu or a toolbar. When commands are undone or redone, QUndoStack updates the text properties of these actions to reflect what change they will trigger. The actions are also disabled when no command is available for undo or redo. These actions are returned by QUndoStack.createUndoAction () and QUndoStack.createRedoAction ().
Command compression is useful when several commands can be compressed into a single command that can be undone and redone in a single operation. For example, when a user types a character in a text editor, a new command is created. This command inserts the character into the document at the cursor position. However, it is more convenient for the user to be able to undo or redo typing of whole words, sentences, or paragraphs. Command compression allows these single-character commands to be merged into a single command which inserts or deletes sections of text. For more information, see QUndoCommand.mergeWith () 和 push ().
A command macro is a sequence of commands, all of which are undone and redone in one go. Command macros are created by giving a command a list of child commands. Undoing or redoing the parent command will cause the child commands to be undone or redone. Command macros may be created explicitly by specifying a parent in the QUndoCommand constructor, or by using the convenience functions beginMacro () 和 endMacro ().
Although command compression and macros appear to have the same effect to the user, they often have different uses in an application. Commands that perform small changes to a document may be usefully compressed if there is no need to individually record them, and if only larger changes are relevant to the user. However, for commands that need to be recorded individually, or those that cannot be compressed, it is useful to use macros to provide a more convenient user experience while maintaining a record of each 命令。
QUndoStack supports the concept of a clean state. When the document is saved to disk, the stack can be marked as clean using setClean (). Whenever the stack returns to this state through undoing and redoing commands, it emits the signal cleanChanged (). This signal is also emitted when the stack leaves the clean state. This signal is usually used to enable and disable the save actions in the application, and to update the document's title to reflect that it contains unsaved changes.
parent argument, if not None, causes self to be owned by Qt instead of PyQt.
Constructs an empty undo stack with the parent parent . The stack will initially be in the clean state. If parent is a QUndoGroup object, the stack is automatically added to the group.
另请参阅 push ().
Begins composition of a macro command with the given text description.
An empty command described by the specified text is pushed on the stack. Any subsequent commands pushed on the stack will be appended to the empty command's children until endMacro () 被调用。
Calls to beginMacro() and endMacro () may be nested, but every call to beginMacro() must have a matching call to endMacro ().
While a macro is composed, the stack is disabled. This means that:
The stack becomes enabled and appropriate signals are emitted when endMacro () is called for the outermost macro.
stack.beginMacro("insert red text"); stack.push(new InsertText(document, idx, text)); stack.push(new SetColor(document, idx, text.length(), Qt.red)); stack.endMacro(); // indexChanged() is emitted
This code is equivalent to:
QUndoCommand *insertRed = new QUndoCommand(); // an empty command insertRed->setText("insert red text"); new InsertText(document, idx, text, insertRed); // becomes child of insertRed new SetColor(document, idx, text.length(), Qt.red, insertRed); stack.push(insertRed);
另请参阅 endMacro ().
Returns true if there is a command available for redo; otherwise returns false.
This function returns false if the stack is empty or if the top command on the stack has already been redone.
Synonymous with index () == count ().
Returns true if there is a command available for undo; otherwise returns false.
This function returns false if the stack is empty, or if the bottom command on the stack has already been undone.
Synonymous with index () == 0.
Returns the clean index. This is the index at which setClean () 被调用。
A stack may not have a clean index. This happens if a document is saved, some commands are undone, then a new command is pushed. Since push () deletes all the undone commands before pushing the new command, the stack can't return to the clean state again. In this case, this function returns -1.
另请参阅 isClean () and setClean ().
Clears the command stack by deleting all commands on it, and returns the stack to the clean state.
Commands are not undone or redone; the state of the edited object remains unchanged.
This function is usually used when the contents of the document are abandoned.
另请参阅 QUndoStack ().
Returns a const pointer to the command at index .
This function returns a const pointer, because modifying a command, once it has been pushed onto the stack and executed, almost always causes corruption of the state of the document, if the command is later undone or redone.
该函数在 Qt 4.4 引入。
另请参阅 QUndoCommand.child ().
Returns the number of commands on the stack. Macro commands are counted as one command.
另请参阅 index (), setIndex (),和 command ().
parent argument, if not None, causes self to be owned by Qt instead of PyQt.
Creates an redo QAction object with the given parent .
Triggering this action will cause a call to redo (). The text of this action is the text of the command which will be redone in the next call to redo (), prefixed by the specified prefix . If there is no command available for redo, this action will be disabled.
若 prefix is empty, the default template "Redo %1" is used instead of prefix. Before Qt 4.8, the prefix "Redo" was used 在默认情况下。
另请参阅 createUndoAction (), canRedo (),和 QUndoCommand.text ().
parent argument, if not None, causes self to be owned by Qt instead of PyQt.
Creates an undo QAction object with the given parent .
Triggering this action will cause a call to undo (). The text of this action is the text of the command which will be undone in the next call to undo (), prefixed by the specified prefix . If there is no command available for undo, this action will be disabled.
若 prefix is empty, the default template "Undo %1" is used instead of prefix. Before Qt 4.8, the prefix "Undo" was used 在默认情况下。
另请参阅 createRedoAction (), canUndo (),和 QUndoCommand.text ().
Ends composition of a macro command.
If this is the outermost macro in a set nested macros, this function emits indexChanged () once for the entire macro command.
另请参阅 beginMacro ().
Returns the index of the current command. This is the command that will be executed on the next call to redo (). It is not always the top-most command on the stack, since a number of commands may have been undone.
另请参阅 setIndex (), undo (), redo (),和 count ().
If the stack is in the clean state, returns true; otherwise returns false.
另请参阅 setClean () 和 cleanIndex ().
cmd argument has it's ownership transferred to Qt.
Pushes cmd on the stack or merges it with the most recently executed command. In either case, executes cmd by calling its redo () 函数。
若 cmd 's id is not -1, and if the id is the same as that of the most recently executed command, QUndoStack will attempt to merge the two commands by calling QUndoCommand.mergeWith () on the most recently executed command. If QUndoCommand.mergeWith () 返回 true, cmd 被删除。
In all other cases cmd is simply pushed on the stack.
If commands were undone before cmd was pushed, the current command and all commands above it are deleted. Hence cmd always ends up being the top-most on the stack.
Once a command is pushed, the stack takes ownership of it. There are no getters to return the command, since modifying it after it has been executed will almost always lead to corruption of the document's state.
另请参阅 QUndoCommand.id () 和 QUndoCommand.mergeWith ().
This method is also a Qt slot with the C++ signature void redo() .
Redoes the current command by calling QUndoCommand.redo (). Increments the current command index.
If the stack is empty, or if the top command on the stack has already been redone, this function does nothing.
Returns the text of the command which will be redone in the next call to redo ().
另请参阅 QUndoCommand.actionText () 和 undoText ().
This method is also a Qt slot with the C++ signature void setActive(bool = 1) .
This method is also a Qt slot with the C++ signature void setClean() .
Marks the stack as clean and emits cleanChanged () if the stack was not already clean.
Whenever the stack returns to this state through the use of undo/redo commands, it emits the signal cleanChanged (). This signal is also emitted when the stack leaves the clean state.
另请参阅 isClean () and cleanIndex ().
This method is also a Qt slot with the C++ signature void setIndex(int) .
Repeatedly calls undo () 或 redo () until the current command index reaches idx . This function can be used to roll the state of the document forwards of backwards. indexChanged () is emitted only once.
另请参阅 index (), count (), undo (),和 redo ().
Returns the text of the command at index idx .
另请参阅 beginMacro ().
This method is also a Qt slot with the C++ signature void undo() .
Undoes the command below the current command by calling QUndoCommand.undo (). Decrements the current command index.
If the stack is empty, or if the bottom command on the stack has already been undone, this function does nothing.
Returns the text of the command which will be undone in the next call to undo ().
另请参阅 QUndoCommand.actionText () 和 redoText ().
This is the default overload of this signal.
This signal is emitted whenever the value of canRedo () changes. It is used to enable or disable the redo action returned by createRedoAction (). canRedo specifies the new value.
This is the default overload of this signal.
This signal is emitted whenever the value of canUndo () changes. It is used to enable or disable the undo action returned by createUndoAction (). canUndo specifies the new value.
This is the default overload of this signal.
This signal is emitted whenever the stack enters or leaves the clean state. If clean is true, the stack is in a clean state; otherwise this signal indicates that it has left the clean 状态。
另请参阅 isClean () and setClean ().
This is the default overload of this signal.
This signal is emitted whenever a command modifies the state of the document. This happens when a command is undone or redone. When a macro command is undone or redone, or setIndex () is called, this signal is emitted only once.
idx specifies the index of the current command, ie. the command which will be executed on the next call to redo ().
This is the default overload of this signal.
This signal is emitted whenever the value of redoText () changes. It is used to update the text property of the redo action returned by createRedoAction (). redoText specifies the new text.
This is the default overload of this signal.
This signal is emitted whenever the value of undoText () changes. It is used to update the text property of the undo action returned by createUndoAction (). undoText specifies the new text.