1
1
use epaint:: { text:: cursor:: * , Galley } ;
2
2
3
- use crate :: { Event , Id , Key , Modifiers } ;
3
+ use crate :: { os :: OperatingSystem , Event , Id , Key , Modifiers } ;
4
4
5
5
use super :: cursor_interaction:: { ccursor_next_word, ccursor_previous_word, slice_char_range} ;
6
6
@@ -115,7 +115,13 @@ impl CursorRange {
115
115
/// Check for key presses that are moving the cursor.
116
116
///
117
117
/// Returns `true` if we did mutate `self`.
118
- pub fn on_key_press ( & mut self , galley : & Galley , modifiers : & Modifiers , key : Key ) -> bool {
118
+ pub fn on_key_press (
119
+ & mut self ,
120
+ os : OperatingSystem ,
121
+ galley : & Galley ,
122
+ modifiers : & Modifiers ,
123
+ key : Key ,
124
+ ) -> bool {
119
125
match key {
120
126
Key :: A if modifiers. command => {
121
127
* self = Self :: select_all ( galley) ;
@@ -137,17 +143,17 @@ impl CursorRange {
137
143
| Key :: ArrowDown
138
144
| Key :: Home
139
145
| Key :: End => {
140
- move_single_cursor ( & mut self . primary , galley, key, modifiers) ;
146
+ move_single_cursor ( os , & mut self . primary , galley, key, modifiers) ;
141
147
if !modifiers. shift {
142
148
self . secondary = self . primary ;
143
149
}
144
150
true
145
151
}
146
152
147
153
Key :: P | Key :: N | Key :: B | Key :: F | Key :: A | Key :: E
148
- if cfg ! ( target_os = "macos" ) && modifiers. ctrl && !modifiers. shift =>
154
+ if os == OperatingSystem :: Mac && modifiers. ctrl && !modifiers. shift =>
149
155
{
150
- move_single_cursor ( & mut self . primary , galley, key, modifiers) ;
156
+ move_single_cursor ( os , & mut self . primary , galley, key, modifiers) ;
151
157
self . secondary = self . primary ;
152
158
true
153
159
}
@@ -159,14 +165,20 @@ impl CursorRange {
159
165
/// Check for events that modify the cursor range.
160
166
///
161
167
/// Returns `true` if such an event was found and handled.
162
- pub fn on_event ( & mut self , event : & Event , galley : & Galley , _widget_id : Id ) -> bool {
168
+ pub fn on_event (
169
+ & mut self ,
170
+ os : OperatingSystem ,
171
+ event : & Event ,
172
+ galley : & Galley ,
173
+ _widget_id : Id ,
174
+ ) -> bool {
163
175
match event {
164
176
Event :: Key {
165
177
modifiers,
166
178
key,
167
179
pressed : true ,
168
180
..
169
- } => self . on_key_press ( galley, modifiers, * key) ,
181
+ } => self . on_key_press ( os , galley, modifiers, * key) ,
170
182
171
183
#[ cfg( feature = "accesskit" ) ]
172
184
Event :: AccessKitActionRequest ( accesskit:: ActionRequest {
@@ -287,8 +299,14 @@ fn ccursor_from_accesskit_text_position(
287
299
// ----------------------------------------------------------------------------
288
300
289
301
/// Move a text cursor based on keyboard
290
- fn move_single_cursor ( cursor : & mut Cursor , galley : & Galley , key : Key , modifiers : & Modifiers ) {
291
- if cfg ! ( target_os = "macos" ) && modifiers. ctrl && !modifiers. shift {
302
+ fn move_single_cursor (
303
+ os : OperatingSystem ,
304
+ cursor : & mut Cursor ,
305
+ galley : & Galley ,
306
+ key : Key ,
307
+ modifiers : & Modifiers ,
308
+ ) {
309
+ if os == OperatingSystem :: Mac && modifiers. ctrl && !modifiers. shift {
292
310
match key {
293
311
Key :: A => * cursor = galley. cursor_begin_of_row ( cursor) ,
294
312
Key :: E => * cursor = galley. cursor_end_of_row ( cursor) ,
0 commit comments