HomeSort by relevance Sort by last modified time
    Searched refs:undoStack (Results 1 - 9 of 9) sorted by null

  /external/webkit/Source/WebKit/wx/
WebViewPrivate.h 52 WTF::Vector<EditCommandWx> undoStack;
  /external/webkit/Source/WebKit/wx/WebKitSupport/
EditorClientWx.cpp 286 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/
EditorClientQt.cpp 247 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/
EditorClientGtk.cpp 486 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());
    [all...]
EditorClientGtk.h 61 WTF::Deque<WTF::RefPtr<WebCore::EditCommand> > undoStack;
  /external/webkit/Source/WebKit/qt/Api/
qwebpage_p.h 170 QUndoStack *undoStack;
qwebpage.h 262 QUndoStack *undoStack() const;
qwebpage.cpp 291 , undoStack(0)
367 delete undoStack;
    [all...]
  /external/webkit/Tools/DumpRenderTree/qt/
DumpRenderTreeQt.cpp 558 m_page->undoStack()->clear();
    [all...]

Completed in 316 milliseconds