Tagged Questions

For issues relating to undo and/or redo operations.

learn more… | top users | synonyms

29
votes
4answers
14k views

NSInvocation for Dummies?

How exactly does NSInvocation work? Is there a good introduction? I’m specifically having issues understanding how the following code (from Cocoa Programming for Mac OS X, 3rd Edition) works, but ...
18
votes
5answers
3k views

data structure used to implement UNDO and REDO option

I want to implement UNDO and REDO option(as we see in MS word etc). Can you suggest me a data structure for it, and how can i implement it.?
15
votes
6answers
2k views

How can you add a UIGestureRecognizer to a UIBarButtonItem as in the common undo/redo UIPopoverController scheme on iPad apps?

Problem In my iPad app, I cannot attach a popover to a button bar item only after press-and-hold events. But this seems to be standard for undo/redo. How do other apps do this? Background I have ...
12
votes
2answers
931 views

Implementing the command pattern

I am in the design process of an application, and I would like to use the command pattern for undo/redo purposes. I did some research into the command pattern but the only thing I don't get is: Should ...
8
votes
3answers
342 views

How to implement an “undo” feature using Python/Django

I have a Django application where I allow a user to import a CSV file with contact data (membership #, first name, last name, etc). When they import the file, the application checks the database for ...
8
votes
8answers
1k views

How to design undo & redo in text editor?

Part of my project is write text editor that used for type some rule and my application compile and run it. Writing compiler was end and release beta version. In final version we must add undo and ...
8
votes
9answers
2k views

How to implement 'undo' operation in .net windows application?

Assume that, a win form has certain input fields and user enters/re-enters some data. How to retain data previously entered by 'undo' operation? Just I want to know the best way to accomplish it.
6
votes
5answers
699 views

how to implement undo/redo operation without major changes in program

Hi I'm about to add new functionality to application which I'm currently writting. I need to write a undo/redo fnctionality. However 90% of our application is ready and I don't know what is the best ...
6
votes
3answers
9k views

C#: How to implement good and efficient undo/redo functionality for a TextBox

I have a TextBox which I would like to implement undo/redo functionality for. I have read that it might have some slight undo functionality already, but that it is buggy? Anyways, I would like to ...
5
votes
2answers
953 views

How to implement undo/redo in a MVVM application?

I'm working on a Silverlight LoB app which the designers want to have a tabbed-interface, similar to the interface of Visual Studio (we'll probably use the Telerik Rad controls for docking tabs). ...
5
votes
2answers
2k views

How does undo/redo basically work on iPhone OS?

My app doesn't use Core Data yet. Is it true that I must use Core Data for undo/redo? And: How does the user do the undo/redo? I've never seen it in action, and never ever used it. Don't know how I ...
5
votes
3answers
5k views

How to add undo / redo buttons to toolbar in Eclipse?

I feel a bit embarrassed asking this questions, but how the heck can I get regular undo/redo buttons into the toolbar of eclipse? I've often to switch between German and English keyboard layout. Y ...
4
votes
3answers
172 views

Why is there no undo/redo in Git?

As far as I know, when you want to undo something in Git you have to explicitly find the command to undo whatever it is you've done and issue it. For instance, one way among many to undo a commit and ...
4
votes
3answers
187 views

“Undoing deletes” in webapplication?

I have seen more and more of the websites that offers a undo option after pressing a delete button. How is the logic done behind the button? Is the item deleted by javascript and "dissapears" from ...
4
votes
1answer
278 views

How to combine Eclipse Databinding and UndoableOperations?

in my RCP - Project i'm using eclipse databinding to connect the ui with the backend. I want every change in an open editor to be undoable. My Domainmodell and UI are seperated in two different ...
3
votes
1answer
115 views

Disabling undo/redo in an HTML input field

I am using asp.net input fields and they automatically provide undo/redo functionality. I am using JavaScript to format the value of the input field, however this ruins the undo/redo history. Is ...
3
votes
1answer
545 views

Using vim's persistent undo?

One of vim 7.3's new features is 'persistent undo', which allows for the undotree to be saved to a file when exiting a buffer. Unfortunately, I haven't quite been able to get it properly enabled, or ...
3
votes
1answer
355 views

Core Data deleteObject: sets attributes to nil

I am implementing an undo/redo mechanism in my app. This works fine for lots of cases. However, I can't undo past deleteObject:. the object is correctly saved in the undo queue, and I get it back ...
3
votes
3answers
639 views

best practice for Undo Redo implementation

I need to implement Undo/Redo frame work for my window application(editor like powerpoint), what should be the best practice to follow, how would be handle all property changes of my objects and it ...
3
votes
2answers
851 views

Memento in Javascript

I'm looking for a JavaScript implementation of the memento pattern (GoF) to be used in CRUD forms. In its basic level it will be enough to undo changes on inputs, but it would be great to use it with ...
2
votes
2answers
108 views

Core Data Undo/Redo - Action depends on what was undone

I have a somewhat complex data model in my iPad application (an OpenGL drawing app), and I'm working on implementing undo/redo functionality. I like the fact that Core Data will undo data model ...
2
votes
1answer
456 views

Core Data: How to merge inserts/updates/deletes between two NSManagedObjectContext's while maintaining the merge as an undoable step?

I have a document-based Core Data application (running on Mac OS X 10.5 and above) where I'm trying to use two NSManagedObjectContext's on the main thread. I'd like to merge the changes made in the ...
2
votes
4answers
140 views

Implementing undo in Java for state changes

I am starting to implementing the command pattern in the hope to get a useful solution to my problem of providing an undo operation. Now I am facing a certain issue: Implementing undo when operations ...
2
votes
1answer
283 views

Visual Studio Style Undo/Redo Button in WPF

I want to make a Ribbon Undo/Redo Button that looks and functions like Visual Studio's Undo/Redo Buttons. I've been trying to use RibbonSplitButton to mimic the behavior, but it turns out it only ...
2
votes
3answers
283 views

Clearing NSUndoManager's Redo stack

In my application, there are some actions I want to undo programmatically, without giving the user the option of clicking "Redo". Is there any way to clear the Redo stack of NSUndoManager? If not, and ...
2
votes
3answers
246 views

How to design a SQL db with undo-redo?

I'm trying to figure out how to design my DB tables to allow Undo-Redo. Pretend you have a tasks table with the following structure: id <int> title <varchar> memo <string> ...
2
votes
4answers
666 views

Undo Redo in WPF/C# in an already functional application

I have done some research already as to how I can achieve the title of this question. The app I am working on has been under development for a couple of years or so (slow progress though, you all ...
2
votes
3answers
273 views

is it good idea to store bitmaps as temp files to implement undo and redo feature?

In my project i am making big changes on pixels of a bitmap and i want to add undo redo feature to this project.Sincesaving several bitmaps on VM's memory is not a good idea i thought my only choice ...
2
votes
2answers
251 views

Data Entry screen updates Model objects in realtime, provides undo and redo, live updates to a model object using command pattern

The well known Command pattern is used often when you want to implement a model with Undo/Redo capabilities. I am looking for a reference implementation (example) of a simple Delphi form that ...
2
votes
2answers
203 views

How can I access the QUndoStack of a QTextDocument?

How can I access the QUndoStack of a QTextDocument? (For example, I want to be able to add custom QUndoCommand objects to the document's undo stack)
2
votes
1answer
2k views

WPF RichTextBox TextChanged event - how to find deleted or inserted text?

While creating a customized editor with RichTextBox, I've face the problem of finding deleted/inserted text with the provided information with TextChanged event. The instance of TextChangedEventArgs ...
2
votes
3answers
593 views

Abstract classes issue in C++ undo/redo implementation

I have defined an "Action" pure abstract class like this: class Action { public: virtual void execute () = 0; virtual void revert () = 0; virtual ~Action () = 0; }; And represented ...
2
votes
1answer
305 views

Undo/Redo with immutable objects

I read the following in an article Immutable objects are particularly handy for implementing certain common idioms such as undo/redo and abortable transactions. Take undo for example. A ...
2
votes
2answers
368 views

How would you implement Undo in a raster drawing program?

You're making a drawing program like Paint. You want to be able to undo/redo brush strokes. How would you implement this? Optimize for speed and memory.
2
votes
3answers
1k views

How to utilize sqlite for undo/redo features?

I'm writing a desktop application to do vector drawing in C++, and considering using sqlite to back my undo/redo feature. Has anybody used sqlite for undo/redo features? How does it work out for ...
1
vote
1answer
48 views

How to implement undo/redo with programatic change of the textValue of a NSTextView?

I created a simple demo app with a NSTextView and a button, the provided a NSTextViewDelegate to the textView and added an action: - (IBAction)actionButtonClicked:(id)sender { NSString *oldText = ...
1
vote
4answers
121 views

DataGrid and MVVM with Undo/Redo

I'm playing with quite simple interface with buttons and shortcuts for adding, inserting and removing rows of datagrid (underlying bound collection). There's also a need to implement undo stack. ...
1
vote
1answer
220 views

“Undo” history button clear after run macro excel

Y have a macro it fires on the "Worksheet_SelectionChange" event. The macro validate data of one column, it changes the background color of the cell if its wrong. The problem is after run the macro, ...
1
vote
1answer
67 views

Open 'undo-tree-visualize side by side to the buffer, and not “vertically”

Is there any way I can make undo-tree-mode display the visualization in a "horizontal" buffer (ie. C-x 3 vs. C-x 2)?
1
vote
1answer
431 views

Undo drawing in Paint Application - OpenGL by storing Image in buffer

I am making a paint application using OpenGl framework and I'm stuck at UNDO/REDO option.. The code I implemented is like this: -(void)undo_called { artbrushAppDelegate *app=(artbrushAppDelegate ...
1
vote
4answers
358 views

Good collection for implementing Undo/Redo?

I was reading around for undo/redo techniques, I understand how should it be implemented (I found it intuitive). However I'm thinking about the collection that should be used as history, A lot of ...
1
vote
2answers
104 views

VIM:: Undo changes on or around the specified text

In VIM is it possible to undo changes on or around a specific block of text? Lets say I make change A right above "if yes", then do changes B, C, D and E in other places on the file. Is it possible to ...
1
vote
1answer
193 views

MVP Supervising Controller, Data Bindings and Undo/Redo

My application is a MDI Winform application. I encounter some problems connected with MVP pattern and Data Bindings. All my forms are modeless. When I modify a field, or change the selected item in ...
1
vote
1answer
389 views

ActionScript - General Undo / Redo API?

i've been unsuccessfully attempting to create my own undo/redo classes that work well with any type of possible undo and redo commands. for example, my simple class works perfectly with ...
1
vote
1answer
448 views

Adding undo redo feature to the FingerPaint application ( one of the google's sample application )

I want to modify FingerPaint application and add undo and redo features to it. It basically draws Path's to the canvas at onDraw method and draws same paths to a bitmap too. Anyway my first thought ...
1
vote
2answers
117 views

php/ajax user actions undo manager

does exist a library that gives you undo/redo capability with history for a web app? An idea would be a php/javascript/ajax system in which you can register for every user action an opposite action ...
1
vote
1answer
54 views

Are QUndoCommands supposed to be tied to a view or a model?

In Qt's undo framework, you can have a stack of QUndoCommand instances. Each of these describes an action in the user interface. In our application, we have a set of views working on a set of ...
1
vote
2answers
82 views

Implementing version-control functionality

Are there any recommended approaches for implementing version control functionality accessible to end users of a business application? The goal is to create a robust version control system for an ...
1
vote
2answers
891 views

Undo/Redo using NSUndoManager in iPhone SDK

I have been trying to design the Undo/Redo functionality in one of my app using NSUndoManager class and seeing some design difficulties. In my app, I just have one method -(IBAction) ...
1
vote
1answer
124 views

How do I undo/redo something in a Tkinter text widget?

I need to make both a Control-Z and Shift-Control-Z function in Python. Anyone have any Idea? Also I need to select the contents of an entire text widget, anyone know how to go about that?

1 2