File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -488,6 +488,9 @@ status = "generate"
488
488
name = " touchpad_hold"
489
489
version = " 4.8"
490
490
[[object .member ]]
491
+ name = " pad_dial"
492
+ version = " 4.20"
493
+ [[object .member ]]
491
494
name = " event_last"
492
495
ignore = true # not useful
493
496
Original file line number Diff line number Diff line change @@ -906,6 +906,8 @@ pub enum EventType {
906
906
#[ cfg_attr( docsrs, doc( cfg( feature = "v4_8" ) ) ) ]
907
907
#[ doc( alias = "GDK_TOUCHPAD_HOLD" ) ]
908
908
TouchpadHold ,
909
+ #[ cfg( feature = "v4_20" ) ]
910
+ #[ cfg_attr( docsrs, doc( cfg( feature = "v4_20" ) ) ) ]
909
911
#[ doc( alias = "GDK_PAD_DIAL" ) ]
910
912
PadDial ,
911
913
#[ doc( hidden) ]
@@ -948,6 +950,7 @@ impl IntoGlib for EventType {
948
950
Self :: PadGroupMode => ffi:: GDK_PAD_GROUP_MODE ,
949
951
#[ cfg( feature = "v4_8" ) ]
950
952
Self :: TouchpadHold => ffi:: GDK_TOUCHPAD_HOLD ,
953
+ #[ cfg( feature = "v4_20" ) ]
951
954
Self :: PadDial => ffi:: GDK_PAD_DIAL ,
952
955
Self :: __Unknown( value) => value,
953
956
}
@@ -990,6 +993,7 @@ impl FromGlib<ffi::GdkEventType> for EventType {
990
993
ffi:: GDK_PAD_GROUP_MODE => Self :: PadGroupMode ,
991
994
#[ cfg( feature = "v4_8" ) ]
992
995
ffi:: GDK_TOUCHPAD_HOLD => Self :: TouchpadHold ,
996
+ #[ cfg( feature = "v4_20" ) ]
993
997
ffi:: GDK_PAD_DIAL => Self :: PadDial ,
994
998
value => Self :: __Unknown ( value) ,
995
999
}
You can’t perform that action at this time.
0 commit comments