#include <mw/eikccpu.h>
| class MEikCcpuEditor |
| Public Member Functions | |
|---|---|
| pure virtual TBool | CcpuCanCopy() |
| pure virtual TBool | CcpuCanCut() |
| pure virtual TBool | CcpuCanPaste() |
| pure virtual TBool | CcpuCanUndo() |
| pure virtual void | CcpuCopyL() |
| pure virtual void | CcpuCutL() |
| pure virtual TBool | CcpuIsFocused() |
| pure virtual void | CcpuPasteL() |
| pure virtual void | CcpuUndoL() |
Interface for cut, copy, paste and undo functionality.
| TBool | CcpuCanCopy | ( | ) | const [pure virtual] |
Derived classes must provide the implementation for following:
Tests whether the selected text can be copied.
Returns: ETrue if it is possible to copy the selected text.
| TBool | CcpuCanCut | ( | ) | const [pure virtual] |
Derived classes must provide the implementation for following:
Tests whether the selected text can be cut.
Returns: ETrue if it is possible to cut the selected text.
| TBool | CcpuCanPaste | ( | ) | const [pure virtual] |
Derived classes must provide the implementation for following:
Tests whether text can be pasted from the clipboard.
Returns: ETrue if it is possible to paste the clipboard text.
| TBool | CcpuCanUndo | ( | ) | const [pure virtual] |
Derived classes must provide the implementation for following:
Tests is it possible to undo previous operation.
Returns: ETrue if it is possible to undo previous operation.
| void | CcpuCopyL | ( | ) | [pure virtual] |
Derived classes must provide the implementation for following:
Copies selected text.
| void | CcpuCutL | ( | ) | [pure virtual] |
Derived classes must provide the implementation for following:
Cuts selected text.
| TBool | CcpuIsFocused | ( | ) | const [pure virtual] |
Derived classes must provide the implementation for following:
Tests whether the editor is focused.
Returns: If editor is focused, ETrue is returned.