Skip to content

Commit 85163b5

Browse files
authoredApr 5, 2021
Make edit boxes respond to string input (IME) (#11156)
Make edit boxes respond to string input events (introduced in minetest/irrlicht#23) that are usually triggered by entering text with an IME.
1 parent 2332527 commit 85163b5

File tree

4 files changed

+52
-28
lines changed

4 files changed

+52
-28
lines changed
 

‎src/gui/guiChatConsole.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
1717
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
1818
*/
1919

20+
#include "IrrCompileConfig.h"
2021
#include "guiChatConsole.h"
2122
#include "chat.h"
2223
#include "client/client.h"
@@ -618,6 +619,13 @@ bool GUIChatConsole::OnEvent(const SEvent& event)
618619
m_chat_backend->scroll(rows);
619620
}
620621
}
622+
#if (IRRLICHT_VERSION_MT_REVISION >= 2)
623+
else if(event.EventType == EET_STRING_INPUT_EVENT)
624+
{
625+
prompt.input(std::wstring(event.StringInput.Str->c_str()));
626+
return true;
627+
}
628+
#endif
621629

622630
return Parent ? Parent->OnEvent(event) : false;
623631
}

‎src/gui/guiChatConsole.h

+2
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ class GUIChatConsole : public gui::IGUIElement
7272

7373
virtual void setVisible(bool visible);
7474

75+
virtual bool acceptsIME() { return true; }
76+
7577
private:
7678
void reformatConsole();
7779
void recalculateConsolePosition();

‎src/gui/guiEditBox.cpp

+39-28
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
1919

2020
#include "guiEditBox.h"
2121

22+
#include "IrrCompileConfig.h"
2223
#include "IGUISkin.h"
2324
#include "IGUIEnvironment.h"
2425
#include "IGUIFont.h"
@@ -216,6 +217,11 @@ bool GUIEditBox::OnEvent(const SEvent &event)
216217
if (processMouse(event))
217218
return true;
218219
break;
220+
#if (IRRLICHT_VERSION_MT_REVISION >= 2)
221+
case EET_STRING_INPUT_EVENT:
222+
inputString(*event.StringInput.Str);
223+
return true;
224+
#endif
219225
default:
220226
break;
221227
}
@@ -670,39 +676,44 @@ bool GUIEditBox::onKeyDelete(const SEvent &event, s32 &mark_begin, s32 &mark_end
670676

671677
void GUIEditBox::inputChar(wchar_t c)
672678
{
673-
if (!isEnabled() || !m_writable)
679+
if (c == 0)
674680
return;
681+
core::stringw s(&c, 1);
682+
inputString(s);
683+
}
675684

676-
if (c != 0) {
677-
if (Text.size() < m_max || m_max == 0) {
678-
core::stringw s;
679-
680-
if (m_mark_begin != m_mark_end) {
681-
// clang-format off
682-
// replace marked text
683-
s32 real_begin = m_mark_begin < m_mark_end ? m_mark_begin : m_mark_end;
684-
s32 real_end = m_mark_begin < m_mark_end ? m_mark_end : m_mark_begin;
685-
686-
s = Text.subString(0, real_begin);
687-
s.append(c);
688-
s.append(Text.subString(real_end, Text.size() - real_end));
689-
Text = s;
690-
m_cursor_pos = real_begin + 1;
691-
// clang-format on
692-
} else {
693-
// add new character
694-
s = Text.subString(0, m_cursor_pos);
695-
s.append(c);
696-
s.append(Text.subString(m_cursor_pos,
697-
Text.size() - m_cursor_pos));
698-
Text = s;
699-
++m_cursor_pos;
700-
}
685+
void GUIEditBox::inputString(const core::stringw &str)
686+
{
687+
if (!isEnabled() || !m_writable)
688+
return;
701689

702-
m_blink_start_time = porting::getTimeMs();
703-
setTextMarkers(0, 0);
690+
u32 len = str.size();
691+
if (Text.size()+len <= m_max || m_max == 0) {
692+
core::stringw s;
693+
if (m_mark_begin != m_mark_end) {
694+
// replace marked text
695+
s32 real_begin = m_mark_begin < m_mark_end ? m_mark_begin : m_mark_end;
696+
s32 real_end = m_mark_begin < m_mark_end ? m_mark_end : m_mark_begin;
697+
698+
s = Text.subString(0, real_begin);
699+
s.append(str);
700+
s.append(Text.subString(real_end, Text.size() - real_end));
701+
Text = s;
702+
m_cursor_pos = real_begin + len;
703+
} else {
704+
// append string
705+
s = Text.subString(0, m_cursor_pos);
706+
s.append(str);
707+
s.append(Text.subString(m_cursor_pos,
708+
Text.size() - m_cursor_pos));
709+
Text = s;
710+
m_cursor_pos += len;
704711
}
712+
713+
m_blink_start_time = porting::getTimeMs();
714+
setTextMarkers(0, 0);
705715
}
716+
706717
breakText();
707718
sendGuiEvent(EGET_EDITBOX_CHANGED);
708719
calculateScrollPos();

‎src/gui/guiEditBox.h

+3
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,8 @@ class GUIEditBox : public IGUIEditBox
138138
virtual void deserializeAttributes(
139139
io::IAttributes *in, io::SAttributeReadWriteOptions *options);
140140

141+
virtual bool acceptsIME() { return isEnabled() && m_writable; };
142+
141143
protected:
142144
virtual void breakText() = 0;
143145

@@ -156,6 +158,7 @@ class GUIEditBox : public IGUIEditBox
156158
virtual s32 getCursorPos(s32 x, s32 y) = 0;
157159

158160
bool processKey(const SEvent &event);
161+
virtual void inputString(const core::stringw &str);
159162
virtual void inputChar(wchar_t c);
160163

161164
//! returns the line number that the cursor is on

0 commit comments

Comments
 (0)
Please sign in to comment.