struct Core::Portable::IKeyboardInputReceiver

#include <corekeyboard.h>

struct IKeyboardInputReceiver
{
    // typedefs

    typedef CString256 Text;

    // methods

    virtual Text& getText() = 0;
    virtual void textChanged() = 0;
    virtual void textInputDone(bool canceled) = 0;
    virtual int getCursorIndex() const = 0;
    virtual void setCursorIndex(int index) = 0;
};

// direct descendants

class TextEditView;