| 71 | } |
| 72 | |
| 73 | static int GetImeCaretPos(QInputMethodEvent *event) |
| 74 | { |
| 75 | foreach (QInputMethodEvent::Attribute attr, event->attributes()) { |
| 76 | if (attr.type == QInputMethodEvent::Cursor) |
| 77 | return attr.start; |
| 78 | } |
| 79 | return 0; |
| 80 | } |
| 81 | |
| 82 | static std::vector<int> MapImeIndicators(QInputMethodEvent *event) |
| 83 | { |