@@ -19,6 +19,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
19
19
20
20
#include " guiEditBox.h"
21
21
22
+ #include " IrrCompileConfig.h"
22
23
#include " IGUISkin.h"
23
24
#include " IGUIEnvironment.h"
24
25
#include " IGUIFont.h"
@@ -216,6 +217,11 @@ bool GUIEditBox::OnEvent(const SEvent &event)
216
217
if (processMouse (event))
217
218
return true ;
218
219
break ;
220
+ #if (IRRLICHT_VERSION_MT_REVISION >= 2)
221
+ case EET_STRING_INPUT_EVENT:
222
+ inputString (*event.StringInput .Str );
223
+ return true ;
224
+ #endif
219
225
default :
220
226
break ;
221
227
}
@@ -670,39 +676,44 @@ bool GUIEditBox::onKeyDelete(const SEvent &event, s32 &mark_begin, s32 &mark_end
670
676
671
677
void GUIEditBox::inputChar (wchar_t c)
672
678
{
673
- if (! isEnabled () || !m_writable )
679
+ if (c == 0 )
674
680
return ;
681
+ core::stringw s (&c, 1 );
682
+ inputString (s);
683
+ }
675
684
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 ;
701
689
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;
704
711
}
712
+
713
+ m_blink_start_time = porting::getTimeMs ();
714
+ setTextMarkers (0 , 0 );
705
715
}
716
+
706
717
breakText ();
707
718
sendGuiEvent (EGET_EDITBOX_CHANGED);
708
719
calculateScrollPos ();
0 commit comments