File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -252,6 +252,12 @@ pub enum CursorIcon {
252
252
/// Indicates that something can be zoomed in. Often rendered as a
253
253
/// magnifying glass with a "-" in the center of the glass.
254
254
ZoomOut ,
255
+
256
+ /// Indicates that the user will select the action that will be carried out.
257
+ DndAsk ,
258
+
259
+ /// Indicates that something can be moved or resized in any direction.
260
+ AllResize ,
255
261
}
256
262
257
263
impl CursorIcon {
@@ -319,6 +325,8 @@ impl CursorIcon {
319
325
CursorIcon :: AllScroll => "all-scroll" ,
320
326
CursorIcon :: ZoomIn => "zoom-in" ,
321
327
CursorIcon :: ZoomOut => "zoom-out" ,
328
+ CursorIcon :: DndAsk => "dnd-ask" ,
329
+ CursorIcon :: AllResize => "all-resize" ,
322
330
}
323
331
}
324
332
@@ -363,6 +371,8 @@ impl CursorIcon {
363
371
CursorIcon :: AllScroll => & [ "size_all" ] ,
364
372
CursorIcon :: ZoomIn => & [ ] ,
365
373
CursorIcon :: ZoomOut => & [ ] ,
374
+ CursorIcon :: DndAsk => & [ "copy" ] ,
375
+ CursorIcon :: AllResize => & [ "move" ] ,
366
376
}
367
377
}
368
378
}
You can’t perform that action at this time.
0 commit comments