Home > Articles > Open Source > Python

Like this article? We recommend

Using the Undo/Redo Framework

One way of providing undo/redo would be to record all the relevant states whenever an action is invoked, and keep a stack of states. Doing this manually would involve a lot of work and a lot of code duplication, since you’d have to do it for each dialog box and main window for which you wanted to provide undo/redo facilities. Fortunately, PyQt has a ready-made solution: the Undo/Redo framework. This section briefly reviews the framework and sketches out what it does. Then we’ll examine "before and after" code snippets to see where the methods called by actions must change to accommodate the undo/redo capability.

The framework follows the Command design pattern. Each action leads to a command object (a QUndoCommand) being created. These objects have two interesting methods: redo() and undo(). Once a QUndoCommand has been created, you can call its redo() method to apply the action. At any later point, the command’s undo() method can be called to undo the action. On its own, this is sufficient for only one level of undo/redo, but using it in conjunction with the QUndoStack class enables you to have unlimited undo/redo levels—or up to as many as you specify by using QUndoStack.setUndoLimit(). If every time you create a command you add it to an undo stack, you can leave all the undo/redo handling to the undo stack, greatly simplifying your code.

Let’s look at the code, starting with the changes that must be made to the dialog box’s __init__() method:

    self.undoStack = QUndoStack(self)

Add this line to create an undo stack. Although it’s an instance variable, you still must give it a parent (the dialog box), so that PyQt is able to clean it up at the right time when the dialog box is destroyed. In addition, you must create two buttons, Undo and Redo, and connect their clicked() signals to the appropriate undo stack methods, self.undoStack.undo() and self.undoStack.redo().

The remaining changes that must be made are of two kinds:

  • Create QUndoCommand subclasses, one for each action you want the user to be able to do (and undo).
  • Modify the methods invoked as a result of user interaction, so that the methods use the undo/redo framework rather than perform the actions directly themselves.

Let’s start by looking at probably the easiest method, add(), which is invoked when the user clicks the Add button. Here’s the original code (no undo/redo):

  
    def add(self):
        row = self.listWidget.currentRow()
        title = "Add %s" % self.name
        string, ok = QInputDialog.getText(self, title, "&Add:")
        if ok and not string.isEmpty():
            self.listWidget.insertItem(row, string)

The strings are held in a QListWidget, with self.listWidget being the instance used in the program. The self.name variable holds the list’s name (Movies in this example). If the user enters a string in the input dialog and clicks OK, the program inserts the new string directly into the list widget. Here’s a version that supports undo/redo:

    def add(self):
        row = self.listWidget.currentRow()
        title = "Add %s" % self.name
        string, ok = QInputDialog.getText(self, title, "&Add:")
        if ok and not string.isEmpty():
            command = CommandAdd(self.listWidget, row, string,
                                 "Add (%s)" % string)
            self.undoStack.push(command)

The code is almost identical to the earlier version. The difference is that instead of performing the action directly, I create an instance of a custom QUndoCommand subclass (a CommandAdd instance in this case), and pass to it all the relevant details. As soon as the command is created, I add it to the undo stack—but notice that I don’t need to call the command’s redo() method to perform the action. That’s because whenever a command is pushed onto the undo stack, the undo stack automatically calls the command’s redo() method.

Notice also that I’ve provided a textual description of the action. This is a courtesy to users and might appear in a tool tip for a Redo menu option or toolbar button.

Here’s the CommandAdd class:

class CommandAdd(QUndoCommand):

    def __init__(self, listWidget, row, string, description):
        super(CommandAdd, self).__init__(description)
        self.listWidget = listWidget
        self.row = row
        self.string = string

    def redo(self):
        self.listWidget.insertItem(self.row, self.string)
        self.listWidget.setCurrentRow(self.row)

    def undo(self):
        item = self.listWidget.takeItem(self.row)
        del item

In the __init__() method, I pass on the description to the base class and record the information needed to perform the action. The action is performed in the redo() method. In this example, it inserts the given string at the given row. As an improvement on previous functionality, it also makes the newly inserted item’s row current. The action is undone in the undo() method. In this example, it removes the string (actually, the QListWidgetItem that contains the string) from the list widget and deletes it.

What happens if many actions take place and the row has changed between the initial redo action and a subsequent undo? If you’re using an undo stack, you don’t have to worry. Suppose a string is added and then lots of other actions occur. To undo adding that particular string, the user has to undo all those subsequent actions; so, at the point of undoing the new string, the row will be correct.

Let’s see how strings are deleted (and undeleted), starting again with the original code:

  
    def delete(self):
        row = self.listWidget.currentRow()
        item = self.listWidget.item(row)
        if item is None:
            return
        reply = QMessageBox.question(self, "Remove %s" % self.name,
                        "Remove %s ´%s’?" % (
                        self.name, unicode(item.text())),
                        QMessageBox.Yes|QMessageBox.No)
        if reply == QMessageBox.Yes:
            item = self.listWidget.takeItem(row)
            del item

The deletion takes place in the last two lines, so only those two lines must be changed. Here are the replacement lines:

            command = CommandDelete(self.listWidget, item, row,
                                    "Delete (%s)" % item.text())
            self.undoStack.push(command)

Just as when adding, I create an instance of a custom QUndoCommand and push it onto the undo stack. As always, the undo stack calls the command’s redo() command to perform the action in the first place.

Here’s the custom CommandDelete class:

class CommandDelete(QUndoCommand):

    def __init__(self, listWidget, item, row, description):
        super(CommandDelete, self).__init__(description)
        self.listWidget = listWidget
        self.string = item.text()
        self.row = row

    def redo(self):
        item = self.listWidget.takeItem(self.row)
        del item

    def undo(self):
        self.listWidget.insertItem(self.row, self.string)

Here, the redo command takes the string out of the list widget, and the undo command puts it back in.

The other commands, Edit, Up, and Down, follow the same pattern, so I won’t reproduce them here. But the Sort command is different. If you provide undo/redo for sorting and the list contains hundreds or thousands of strings, you might end up consuming a lot of memory. Nonetheless, it’s perfectly possible to do it: Just create a CommandSort class and store the original list in it, following the same pattern as you used for the Add and Delete actions. For this dialog box, I won’t offer undo/redo if the user chooses to sort; therefore, I must warn the user so that he can back out. Here’s the code for the dialog box’s sort() method:

    def sort(self):
        message = ("Sorting will clear the undo/redo stack.\n"
                              "Sort anyway?")
        if (not self.undoStack.count() or
            QMessageBox.question(self, "Sort", message,
                    QMessageBox.Yes|QMessageBox.No) == QMessageBox.Yes):
            self.undoStack.clear()
            self.listWidget.sortItems()

This method performs the sort if the undo stack is empty or if the user wants to sort even after being told that undo/redo will not be available afterward. Clearly, I could use the same approach with any other non-undoable actions.

To this point, we’ve focused on converting a dialog box that doesn’t provide undo/redo into one that does. This change has required more code (for example, creating the QUndoCommand subclasses and the undo code), but has paid back in terms of improved usability. Having undo/redo in place provides an additional benefit: Because all actions are executed indirectly by calling a QUndoCommand’s redo() method, I could chain two or more actions together simply by keeping track of them. Therefore, I can provide a macro facility. In fact, this functionality is built into the QUndoStack class, so I can just use it.

For actions that simply redo or undo, no changes are necessary to use the macro facility; for actions that clear the undo stack, however, I must make some minor modifications. Figure 4 shows a string list editor that has undo/redo, macro recording (the Record button’s text changes to Stop when recording), and the undo stack.

Figure 4

Figure 4 String list editor dialog box with undo/redo and macros.

To get a visible undo stack, I just need to create and lay out an undo view with the undo stack as its parent in the dialog box’s __init__() method:

        self.undoView = QUndoView(self.undoStack)

I’ve omitted the layout code since that’s standard; in this case, I used a splitter. It’s unusual to provide a visible undo stack, particularly in a dialog box like this, but it’s useful for testing when starting to use the undo/redo framework for the first time. (A more realistic use case would be to put the undo view into a dock window in a main window.)

To accommodate macros, I’ve added two new instance variables, again created in the __init__() method:

        self.macroNum = 1
        self.recording = False

In addition, I’ve connected the Record button to the following method:

    def startOrStopMacro(self):
        if not self.recording:
            for button in self.undoRedoButtons:
                button.setEnabled(False)
            self.recordButton.setText("St&op")
            self.recordButton.setIcon(QIcon("stop.png"))
            self.undoStack.beginMacro("Macro #%d" % self.macroNum)
            self.macroNum += 1
        else:
            for button in self.undoRedoButtons:
                button.setEnabled(True)
            self.recordButton.setText("Rec&ord")
            self.recordButton.setIcon(QIcon("record.png"))
            self.undoStack.endMacro()
        self.recording = not self.recording

When a macro is being recorded, the user interacts with the dialog box as usual. Instead of each individual command being pushed onto the undo stack, however, a macro containing all the commands is pushed on when macro recording stops. During recording, the user cannot undo or redo, so I disable/enable the Undo and Redo buttons. If the user makes a mistake, he can simply click Stop to stop recording and Undo to undo the recorded actions. None of the methods that does straightforward undo/redo handling needs to be changed to accommodate macros, but those methods that clear the undo stack must be modified. In this example, I must change the sort() method slightly:

    def sort(self):
        message = "Sorting will clear the undo/redo stack"
        if self.recording:
            message += "\nand will clear the macro being recorded"
        message += ".\nSort anyway?"
        if (not self.undoStack.count() or
            QMessageBox.question(self, "Sort", message,
                     QMessageBox.Yes|QMessageBox.No) == QMessageBox.Yes):
            if self.recording:
                self.startOrStopMacro()
            self.undoStack.clear()
            self.listWidget.sortItems()

There are just two differences from the earlier version:

  • I notify the user that sorting not only will clear the undo/redo stack, but also clear the macro being recorded (if the user is recording one).
  • If the user sorts while a macro is being recorded, I must call self.startOrStopMacro() to stop the recording. This sets the Record button’s text back to Record, clears the undo stack, and performs the sort.

In dialog boxes, only one undo stack is likely to be needed, but in main window applications two or more might be required. These can be accommodated easily by using a QUndoGroup, to which any number of QUndoStacks can be added.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020