Lines Matching refs:action
49 …undo action records the information how to undo a single change. Undo actions are maintained in a …
57 …<p>For collecting multiple changes in a single undo action, so-called Undo contexts are provided. …
59 …a sub action of the Undo context. Once the Undo context is left, a single undo action is pushed on…
65 …any method retrieving information about the stack will behave as if the undo action does not exist…
73 …ckable::unlock</member> methods. When it is locked, then every attempt to add an undo action, or to
91 …<p>A new undo action will be added to the undo stack, with the title given as <code>i_title</code>…
92 …as the context is not left, every undo action added to the stack will be treated as sub action. Th…
108 /** enters a new undo context, creating a hidden undo action.
110 … <p>A hidden undo action does not, in any visible way, contribute to the undo stack. This means
112 …<ul><li>Calling <member>undo</member> when the top-element is a hidden undo action will transparen…
113 undo this action, and also undo the new top element of the stack.</li>
114 … <li>Calling <member>redo</member> when the top-element is a hidden action will transparently
115 redo this action, and also redo the new top element of the stack.</li>
117 action will not be listed.</p>
120 …<p>A new undo action will be added to the undo stack. As long as the context is not left, every un…
121 …added to the stack will be treated as sub action. This means it will not be directly accessible at…
131 …the undo stack is currently empty, in which case it is impossible to push a hidden undo action onto
143 …<p>If no undo action has been added since the context has been opened, the context is not only lef…
160 /** adds the given undo action to the undo stack.
162 <p>The redo stack is cleared when a new action is pushed onto the undo stack.</p>
165 …action is finally removed from the Undo manager's control (e.g. by calling <member>clear</member> …
169 …cking">locked</a> at the moment the method is called, the call will be ignored, and the undo action
173 if the given undo action is <NULL/>.
180 /** reverts the most recent action on the document.
183 … <ul><li>invoke <member>XUndoAction::undo</member> on the top-most action of the undo stack</li>
184 <li>move this undo action from the undo stack to the redo stack</li>
205 /** replays the action on the document which has most recently been undone
208 … <ul><li>invoke <member>XUndoAction::redo</member> on the top-most action of the redo stack</li>
209 <li>move this action from the redo stack to the undo stack</li>
245 /** returns the title of the top-most action on the undo stack
255 /** returns the title of the top-most action on the Redo stack