#include <TextConvertInterface.h>

Public Member Functions | |
| virtual void | clear (void)=0 |
| 変換バッファのクリア | |
| virtual void | setConvertBuffer (const std::vector< Uint16 > &text)=0 |
| 変換バッファへの登録 | |
| virtual void | getConvertBuffer (std::vector< Uint16 > &buffer)=0 |
| 変換バッファの取得 | |
| virtual bool | addChar (char ch)=0 |
| 文字の追加 | |
| virtual bool | moveLeft (void)=0 |
| カーソル左 | |
| virtual bool | moveRight (void)=0 |
| カーソル右 | |
| virtual bool | moveUp (void)=0 |
| カーソル上 | |
| virtual bool | moveDown (void)=0 |
| カーソル下 | |
| virtual bool | escapePressed (void)=0 |
| エスケープ | |
| virtual bool | deleteBack (void)=0 |
| BackSpace キー. | |
| virtual bool | deleteCurrent (void)=0 |
| Delete キー. | |
| virtual bool | convertInput (void)=0 |
| 変換キー | |
Definition at line 20 of file TextConvertInterface.h.
| virtual void TextConvertInterface::setConvertBuffer | ( | const std::vector< Uint16 > & | text | ) | [pure virtual] |
変換バッファへの登録
| text | [i] 変換する文字列 |
| virtual void TextConvertInterface::getConvertBuffer | ( | std::vector< Uint16 > & | buffer | ) | [pure virtual] |
変換バッファの取得
| buffer | [o] バッファ内のデータ |
| virtual bool TextConvertInterface::addChar | ( | char | ch | ) | [pure virtual] |
文字の追加
| ch | [i] 入力文字 |
1.5.7.1