Home | History | Annotate | Download | only in wx

Lines Matching refs:editor

30 #include "Editor.h"
280 if (m_impl->frame && m_impl->frame->editor() && CanUndo())
281 return m_impl->frame->editor()->undo();
286 if (m_impl->frame && m_impl->frame->editor() && CanRedo())
287 return m_impl->frame->editor()->redo();
292 if (m_impl->frame && m_impl->frame->editor())
293 return m_impl->frame->editor()->canUndo();
300 if (m_impl->frame && m_impl->frame->editor())
301 return m_impl->frame->editor()->canRedo();
357 return (m_impl->frame->editor()->canCopy() || m_impl->frame->editor()->canDHTMLCopy());
365 m_impl->frame->editor()->copy();
371 return (m_impl->frame->editor()->canCut() || m_impl->frame->editor()->canDHTMLCut());
379 m_impl->frame->editor()->cut();
385 return (m_impl->frame->editor()->canPaste() || m_impl->frame->editor()->canDHTMLPaste());
393 m_impl->frame->editor()->paste();