| 152 | void EnsureScreenKeyboardShown() override; |
| 153 | const char *GetComposition() const override { return m_CompositionString.c_str(); } |
| 154 | bool HasComposition() const override { return !m_CompositionString.empty(); } |
| 155 | int GetCompositionCursor() const override { return m_CompositionCursor; } |
| 156 | int GetCompositionLength() const override { return m_CompositionString.length(); } |
| 157 | const char *GetCandidate(int Index) const override { return m_vCandidates[Index].c_str(); } |
no outgoing calls
no test coverage detected