Home | History | Annotate | Download | only in wx

Lines Matching refs:editor

29 #include "Editor.h"
245 return m_impl->frame->editor()->command(command).execute(parameter);
251 WebCore::TriState state = m_impl->frame->editor()->command(command).state();
266 return m_impl->frame->editor()->command(command).value();
275 return m_impl->frame->editor()->findString(string, forward, caseSensitive, wrapSelection, startInSelection);
336 if (m_impl->frame && m_impl->frame->editor() && CanUndo())
337 return m_impl->frame->editor()->undo();
342 if (m_impl->frame && m_impl->frame->editor() && CanRedo())
343 return m_impl->frame->editor()->redo();
348 if (m_impl->frame && m_impl->frame->editor())
349 return m_impl->frame->editor()->canUndo();
356 if (m_impl->frame && m_impl->frame->editor())
357 return m_impl->frame->editor()->canRedo();
419 return (m_impl->frame->editor()->canCopy() || m_impl->frame->editor()->canDHTMLCopy());
427 m_impl->frame->editor()->copy();
433 return (m_impl->frame->editor()->canCut() || m_impl->frame->editor()->canDHTMLCut());
441 m_impl->frame->editor()->cut();
447 return (m_impl->frame->editor()->canPaste() || m_impl->frame->editor()->canDHTMLPaste());
455 m_impl->frame->editor()->paste();