Searched refs:undoStack (Results 1 - 9 of 9) sorted by relevance

/external/webkit/Source/WebKit/wx/
H A DWebViewPrivate.h52 WTF::Vector<EditCommandWx> undoStack; member in class:WebViewPrivate
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DEditorClientWx.cpp286 webKitWin->m_impl->undoStack.append(EditCommandWx(command));
311 webKitWin->m_impl->undoStack.clear();
333 return webKitWin->m_impl->undoStack.size() != 0;
359 webKitWin->m_impl->undoStack.last().editCommand()->unapply();
360 webKitWin->m_impl->undoStack.removeLast();
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DEditorClientQt.cpp247 m_page->undoStack()->push(new EditCommandQt(cmd));
258 return m_page->undoStack()->clear();
277 return m_page->undoStack()->canUndo();
286 return m_page->undoStack()->canRedo();
294 m_page->undoStack()->undo();
303 m_page->undoStack()->redo();
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DEditorClientGtk.cpp486 if (undoStack.size() == maximumUndoStackDepth)
487 undoStack.removeFirst();
490 undoStack.append(command);
500 undoStack.clear();
516 return !undoStack.isEmpty();
527 RefPtr<WebCore::EditCommand> command(*(--undoStack.end()));
528 undoStack.remove(--undoStack.end());
H A DEditorClientGtk.h61 WTF::Deque<WTF::RefPtr<WebCore::EditCommand> > undoStack; member in class:WebKit::EditorClient
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebpage_p.h170 QUndoStack *undoStack; member in class:QWebPagePrivate
H A Dqwebpage.cpp291 , undoStack(0)
367 delete undoStack;
2792 QAction *a = undoStack()->createUndoAction(d->q);
2797 QAction *a = undoStack()->createRedoAction(d->q);
2991 \sa contentsChanged(), contentEditable, undoStack()
2998 if (!d->undoStack)
3000 return d->undoStack->canUndo();
3010 QUndoStack *QWebPage::undoStack() const function in class:QWebPage
3012 if (!d->undoStack)
3013 d->undoStack
[all...]
H A Dqwebpage.h262 QUndoStack *undoStack() const;
/external/webkit/Tools/DumpRenderTree/qt/
H A DDumpRenderTreeQt.cpp558 m_page->undoStack()->clear();

Completed in 157 milliseconds