@@ -95,7 +95,7 @@ pub struct State {
95
95
pointer_touch_id : Option < u64 > ,
96
96
97
97
/// track ime state
98
- input_method_editor_started : bool ,
98
+ has_sent_ime_enabled : bool ,
99
99
100
100
#[ cfg( feature = "accesskit" ) ]
101
101
accesskit : Option < accesskit_winit:: Adapter > ,
@@ -136,7 +136,7 @@ impl State {
136
136
simulate_touch_screen : false ,
137
137
pointer_touch_id : None ,
138
138
139
- input_method_editor_started : false ,
139
+ has_sent_ime_enabled : false ,
140
140
141
141
#[ cfg( feature = "accesskit" ) ]
142
142
accesskit : None ,
@@ -342,23 +342,39 @@ impl State {
342
342
// We use input_method_editor_started to manually insert CompositionStart
343
343
// between Commits.
344
344
match ime {
345
- winit:: event:: Ime :: Enabled | winit:: event:: Ime :: Disabled => ( ) ,
346
- winit:: event:: Ime :: Commit ( text) => {
347
- self . input_method_editor_started = false ;
345
+ winit:: event:: Ime :: Enabled => {
348
346
self . egui_input
349
347
. events
350
- . push ( egui:: Event :: CompositionEnd ( text. clone ( ) ) ) ;
348
+ . push ( egui:: Event :: Ime ( egui:: ImeEvent :: Enabled ) ) ;
349
+ self . has_sent_ime_enabled = true ;
351
350
}
352
- winit:: event:: Ime :: Preedit ( text, Some ( _) ) => {
353
- if !self . input_method_editor_started {
354
- self . input_method_editor_started = true ;
355
- self . egui_input . events . push ( egui:: Event :: CompositionStart ) ;
351
+ winit:: event:: Ime :: Preedit ( _, None ) => { }
352
+ winit:: event:: Ime :: Preedit ( text, Some ( _cursor) ) => {
353
+ if !self . has_sent_ime_enabled {
354
+ self . egui_input
355
+ . events
356
+ . push ( egui:: Event :: Ime ( egui:: ImeEvent :: Enabled ) ) ;
357
+ self . has_sent_ime_enabled = true ;
356
358
}
357
359
self . egui_input
358
360
. events
359
- . push ( egui:: Event :: CompositionUpdate ( text. clone ( ) ) ) ;
361
+ . push ( egui:: Event :: Ime ( egui:: ImeEvent :: Preedit ( text. clone ( ) ) ) ) ;
362
+ }
363
+ winit:: event:: Ime :: Commit ( text) => {
364
+ self . egui_input
365
+ . events
366
+ . push ( egui:: Event :: Ime ( egui:: ImeEvent :: Commit ( text. clone ( ) ) ) ) ;
367
+ self . egui_input
368
+ . events
369
+ . push ( egui:: Event :: Ime ( egui:: ImeEvent :: Disabled ) ) ;
370
+ self . has_sent_ime_enabled = false ;
371
+ }
372
+ winit:: event:: Ime :: Disabled => {
373
+ self . egui_input
374
+ . events
375
+ . push ( egui:: Event :: Ime ( egui:: ImeEvent :: Disabled ) ) ;
376
+ self . has_sent_ime_enabled = false ;
360
377
}
361
- winit:: event:: Ime :: Preedit ( _, None ) => { }
362
378
} ;
363
379
364
380
EventResponse {
@@ -601,7 +617,8 @@ impl State {
601
617
} ) ;
602
618
// If we're not yet translating a touch or we're translating this very
603
619
// touch …
604
- if self . pointer_touch_id . is_none ( ) || self . pointer_touch_id . unwrap ( ) == touch. id {
620
+ if self . pointer_touch_id . is_none ( ) || self . pointer_touch_id . unwrap_or_default ( ) == touch. id
621
+ {
605
622
// … emit PointerButton resp. PointerMoved events to emulate mouse
606
623
match touch. phase {
607
624
winit:: event:: TouchPhase :: Started => {
@@ -1531,7 +1548,7 @@ pub fn create_winit_window_builder<T>(
1531
1548
// We set sizes and positions in egui:s own ui points, which depends on the egui
1532
1549
// zoom_factor and the native pixels per point, so we need to know that here.
1533
1550
// We don't know what monitor the window will appear on though, but
1534
- // we'll try to fix that after the window is created in the vall to `apply_viewport_builder_to_window`.
1551
+ // we'll try to fix that after the window is created in the call to `apply_viewport_builder_to_window`.
1535
1552
let native_pixels_per_point = event_loop
1536
1553
. primary_monitor ( )
1537
1554
. or_else ( || event_loop. available_monitors ( ) . next ( ) )
0 commit comments