Searched defs:undo (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/java/android/content/
H A DUndoOperation.java34 * @param owner Who owns the data being modified by this undo state; must be
62 * Return true if this undo operation is a member of the given owner.
74 * operation will be dropped when the final undo state is being built.
89 * Called when this undo state is being committed to the undo stack.
91 * may be needed to undo them.
96 * Called when this undo state is being popped off the undo stack (in to
100 public abstract void undo(); method in class:UndoOperation
103 * Called when this undo stat
[all...]
H A DUndoManager.java28 * Top-level class for managing and interacting with the global undo state for
29 * a document or application. This class supports both undo and redo and has
33 * apps implement to define their undo/redo behavior. The UndoManager keeps
34 * a stack of undo states; each state can have one or more undo operations
48 * can provide undo semantics appropriate to the user's context: while within
50 * undo/redo them without needing to impact edits in other objects; while
52 * undo/redo them as a single stream.</p>
57 // The common case is a single undo owner (e.g. for a TextView), so default to that capacity.
74 * Never merge with the last undo stat
233 public int undo(UndoOwner[] owners, int count) { method in class:UndoManager
910 void undo() { method in class:UndoManager.UndoState
[all...]
/frameworks/rs/tests/java_api/HealingBrush/src/rs/example/android/com/healingbrush/
H A DDrawView.java124 public void undo() { method in class:DrawView
H A DMainActivity.java136 mDrawView.undo();
292 public void undo(View v) { method in class:MainActivity
294 mLastRegion.undo(mImage2);
H A DRegion.java178 public void undo(Bitmap output) { method in class:Region
/frameworks/rs/tests/java_api/SSHealingBrush/src/rs/example/android/com/healingbrush/
H A DDrawView.java113 public void undo() { method in class:DrawView
H A DMainActivity.java136 mDrawView.undo();
290 public void undo(View v) { method in class:MainActivity
292 mLastRegion.undo(mImage2);
H A DRegion.java169 public void undo(Bitmap output) { method in class:Region
/frameworks/base/core/java/android/widget/
H A DEditor.java191 // Each Editor manages its own undo stack.
375 // Synchronize the filter list, which places the undo input filter at the end.
398 // Re-associate this object as the owner of undo state.
403 * Forgets all undo and redo operations for this Editor.
421 void undo() { method in class:Editor
426 mUndoManager.undo(owners, 1); // Undo 1 action.
2767 com.android.internal.R.string.undo)
6333 * An InputFilter that monitors text input to maintain undo history. It does not modify the
6394 // Check to see if this edit should be tracked for undo.
6441 // a single operation. Always undo th
6633 public void undo() { method in class:Editor.EditOperation
[all...]

Completed in 157 milliseconds