1use crate::{ffi, DeviceTool, Display, InputSource, ModifierType, Seat, Surface};
6use glib::{
7 object::ObjectType as _,
8 prelude::*,
9 signal::{connect_raw, SignalHandlerId},
10 translate::*,
11};
12use std::boxed::Box as Box_;
13
14glib::wrapper! {
15 #[doc(alias = "GdkDevice")]
181 pub struct Device(Object<ffi::GdkDevice>);
182
183 match fn {
184 type_ => || ffi::gdk_device_get_type(),
185 }
186}
187
188impl Device {
189 pub const NONE: Option<&'static Device> = None;
190}
191
192impl std::fmt::Display for Device {
193 #[inline]
194 fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
195 f.write_str(&DeviceExt::name(self))
196 }
197}
198
199pub trait DeviceExt: IsA<Device> + 'static {
205 #[cfg(feature = "v4_18")]
216 #[cfg_attr(docsrs, doc(cfg(feature = "v4_18")))]
217 #[doc(alias = "gdk_device_get_active_layout_index")]
218 #[doc(alias = "get_active_layout_index")]
219 #[doc(alias = "active-layout-index")]
220 fn active_layout_index(&self) -> i32 {
221 unsafe { ffi::gdk_device_get_active_layout_index(self.as_ref().to_glib_none().0) }
222 }
223
224 #[doc(alias = "gdk_device_get_caps_lock_state")]
232 #[doc(alias = "get_caps_lock_state")]
233 #[doc(alias = "caps-lock-state")]
234 fn is_caps_locked(&self) -> bool {
235 unsafe {
236 from_glib(ffi::gdk_device_get_caps_lock_state(
237 self.as_ref().to_glib_none().0,
238 ))
239 }
240 }
241
242 #[doc(alias = "gdk_device_get_device_tool")]
248 #[doc(alias = "get_device_tool")]
249 #[doc(alias = "tool")]
250 fn device_tool(&self) -> Option<DeviceTool> {
251 unsafe {
252 from_glib_none(ffi::gdk_device_get_device_tool(
253 self.as_ref().to_glib_none().0,
254 ))
255 }
256 }
257
258 #[doc(alias = "gdk_device_get_direction")]
271 #[doc(alias = "get_direction")]
272 fn direction(&self) -> pango::Direction {
273 unsafe {
274 from_glib(ffi::gdk_device_get_direction(
275 self.as_ref().to_glib_none().0,
276 ))
277 }
278 }
279
280 #[doc(alias = "gdk_device_get_display")]
286 #[doc(alias = "get_display")]
287 fn display(&self) -> Display {
288 unsafe { from_glib_none(ffi::gdk_device_get_display(self.as_ref().to_glib_none().0)) }
289 }
290
291 #[doc(alias = "gdk_device_get_has_cursor")]
300 #[doc(alias = "get_has_cursor")]
301 #[doc(alias = "has-cursor")]
302 fn has_cursor(&self) -> bool {
303 unsafe {
304 from_glib(ffi::gdk_device_get_has_cursor(
305 self.as_ref().to_glib_none().0,
306 ))
307 }
308 }
309
310 #[cfg(feature = "v4_18")]
319 #[cfg_attr(docsrs, doc(cfg(feature = "v4_18")))]
320 #[doc(alias = "gdk_device_get_layout_names")]
321 #[doc(alias = "get_layout_names")]
322 #[doc(alias = "layout-names")]
323 fn layout_names(&self) -> Vec<glib::GString> {
324 unsafe {
325 FromGlibPtrContainer::from_glib_full(ffi::gdk_device_get_layout_names(
326 self.as_ref().to_glib_none().0,
327 ))
328 }
329 }
330
331 #[doc(alias = "gdk_device_get_modifier_state")]
339 #[doc(alias = "get_modifier_state")]
340 #[doc(alias = "modifier-state")]
341 fn modifier_state(&self) -> ModifierType {
342 unsafe {
343 from_glib(ffi::gdk_device_get_modifier_state(
344 self.as_ref().to_glib_none().0,
345 ))
346 }
347 }
348
349 #[doc(alias = "gdk_device_get_name")]
355 #[doc(alias = "get_name")]
356 fn name(&self) -> glib::GString {
357 unsafe { from_glib_none(ffi::gdk_device_get_name(self.as_ref().to_glib_none().0)) }
358 }
359
360 #[doc(alias = "gdk_device_get_num_lock_state")]
368 #[doc(alias = "get_num_lock_state")]
369 #[doc(alias = "num-lock-state")]
370 fn is_num_locked(&self) -> bool {
371 unsafe {
372 from_glib(ffi::gdk_device_get_num_lock_state(
373 self.as_ref().to_glib_none().0,
374 ))
375 }
376 }
377
378 #[doc(alias = "gdk_device_get_num_touches")]
384 #[doc(alias = "get_num_touches")]
385 #[doc(alias = "num-touches")]
386 fn num_touches(&self) -> u32 {
387 unsafe { ffi::gdk_device_get_num_touches(self.as_ref().to_glib_none().0) }
388 }
389
390 #[doc(alias = "gdk_device_get_product_id")]
399 #[doc(alias = "get_product_id")]
400 #[doc(alias = "product-id")]
401 fn product_id(&self) -> Option<glib::GString> {
402 unsafe {
403 from_glib_none(ffi::gdk_device_get_product_id(
404 self.as_ref().to_glib_none().0,
405 ))
406 }
407 }
408
409 #[doc(alias = "gdk_device_get_scroll_lock_state")]
417 #[doc(alias = "get_scroll_lock_state")]
418 #[doc(alias = "scroll-lock-state")]
419 fn is_scroll_locked(&self) -> bool {
420 unsafe {
421 from_glib(ffi::gdk_device_get_scroll_lock_state(
422 self.as_ref().to_glib_none().0,
423 ))
424 }
425 }
426
427 #[doc(alias = "gdk_device_get_seat")]
433 #[doc(alias = "get_seat")]
434 fn seat(&self) -> Seat {
435 unsafe { from_glib_none(ffi::gdk_device_get_seat(self.as_ref().to_glib_none().0)) }
436 }
437
438 #[doc(alias = "gdk_device_get_source")]
444 #[doc(alias = "get_source")]
445 fn source(&self) -> InputSource {
446 unsafe { from_glib(ffi::gdk_device_get_source(self.as_ref().to_glib_none().0)) }
447 }
448
449 #[doc(alias = "gdk_device_get_surface_at_position")]
468 #[doc(alias = "get_surface_at_position")]
469 fn surface_at_position(&self) -> (Option<Surface>, f64, f64) {
470 unsafe {
471 let mut win_x = std::mem::MaybeUninit::uninit();
472 let mut win_y = std::mem::MaybeUninit::uninit();
473 let ret = from_glib_none(ffi::gdk_device_get_surface_at_position(
474 self.as_ref().to_glib_none().0,
475 win_x.as_mut_ptr(),
476 win_y.as_mut_ptr(),
477 ));
478 (ret, win_x.assume_init(), win_y.assume_init())
479 }
480 }
481
482 #[cfg(feature = "v4_2")]
493 #[cfg_attr(docsrs, doc(cfg(feature = "v4_2")))]
494 #[doc(alias = "gdk_device_get_timestamp")]
495 #[doc(alias = "get_timestamp")]
496 fn timestamp(&self) -> u32 {
497 unsafe { ffi::gdk_device_get_timestamp(self.as_ref().to_glib_none().0) }
498 }
499
500 #[doc(alias = "gdk_device_get_vendor_id")]
534 #[doc(alias = "get_vendor_id")]
535 #[doc(alias = "vendor-id")]
536 fn vendor_id(&self) -> Option<glib::GString> {
537 unsafe {
538 from_glib_none(ffi::gdk_device_get_vendor_id(
539 self.as_ref().to_glib_none().0,
540 ))
541 }
542 }
543
544 #[doc(alias = "gdk_device_has_bidi_layouts")]
553 #[doc(alias = "has-bidi-layouts")]
554 fn has_bidi_layouts(&self) -> bool {
555 unsafe {
556 from_glib(ffi::gdk_device_has_bidi_layouts(
557 self.as_ref().to_glib_none().0,
558 ))
559 }
560 }
561
562 #[doc(alias = "n-axes")]
564 fn n_axes(&self) -> u32 {
565 ObjectExt::property(self.as_ref(), "n-axes")
566 }
567
568 fn set_seat<P: IsA<Seat>>(&self, seat: Option<&P>) {
570 ObjectExt::set_property(self.as_ref(), "seat", seat)
571 }
572
573 #[doc(alias = "changed")]
581 fn connect_changed<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
582 unsafe extern "C" fn changed_trampoline<P: IsA<Device>, F: Fn(&P) + 'static>(
583 this: *mut ffi::GdkDevice,
584 f: glib::ffi::gpointer,
585 ) {
586 let f: &F = &*(f as *const F);
587 f(Device::from_glib_borrow(this).unsafe_cast_ref())
588 }
589 unsafe {
590 let f: Box_<F> = Box_::new(f);
591 connect_raw(
592 self.as_ptr() as *mut _,
593 c"changed".as_ptr() as *const _,
594 Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
595 changed_trampoline::<Self, F> as *const (),
596 )),
597 Box_::into_raw(f),
598 )
599 }
600 }
601
602 #[doc(alias = "tool-changed")]
606 fn connect_tool_changed<F: Fn(&Self, &DeviceTool) + 'static>(&self, f: F) -> SignalHandlerId {
607 unsafe extern "C" fn tool_changed_trampoline<
608 P: IsA<Device>,
609 F: Fn(&P, &DeviceTool) + 'static,
610 >(
611 this: *mut ffi::GdkDevice,
612 tool: *mut ffi::GdkDeviceTool,
613 f: glib::ffi::gpointer,
614 ) {
615 let f: &F = &*(f as *const F);
616 f(
617 Device::from_glib_borrow(this).unsafe_cast_ref(),
618 &from_glib_borrow(tool),
619 )
620 }
621 unsafe {
622 let f: Box_<F> = Box_::new(f);
623 connect_raw(
624 self.as_ptr() as *mut _,
625 c"tool-changed".as_ptr() as *const _,
626 Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
627 tool_changed_trampoline::<Self, F> as *const (),
628 )),
629 Box_::into_raw(f),
630 )
631 }
632 }
633
634 #[cfg(feature = "v4_18")]
635 #[cfg_attr(docsrs, doc(cfg(feature = "v4_18")))]
636 #[doc(alias = "active-layout-index")]
637 fn connect_active_layout_index_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
638 unsafe extern "C" fn notify_active_layout_index_trampoline<
639 P: IsA<Device>,
640 F: Fn(&P) + 'static,
641 >(
642 this: *mut ffi::GdkDevice,
643 _param_spec: glib::ffi::gpointer,
644 f: glib::ffi::gpointer,
645 ) {
646 let f: &F = &*(f as *const F);
647 f(Device::from_glib_borrow(this).unsafe_cast_ref())
648 }
649 unsafe {
650 let f: Box_<F> = Box_::new(f);
651 connect_raw(
652 self.as_ptr() as *mut _,
653 c"notify::active-layout-index".as_ptr() as *const _,
654 Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
655 notify_active_layout_index_trampoline::<Self, F> as *const (),
656 )),
657 Box_::into_raw(f),
658 )
659 }
660 }
661
662 #[doc(alias = "caps-lock-state")]
663 fn connect_caps_lock_state_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
664 unsafe extern "C" fn notify_caps_lock_state_trampoline<
665 P: IsA<Device>,
666 F: Fn(&P) + 'static,
667 >(
668 this: *mut ffi::GdkDevice,
669 _param_spec: glib::ffi::gpointer,
670 f: glib::ffi::gpointer,
671 ) {
672 let f: &F = &*(f as *const F);
673 f(Device::from_glib_borrow(this).unsafe_cast_ref())
674 }
675 unsafe {
676 let f: Box_<F> = Box_::new(f);
677 connect_raw(
678 self.as_ptr() as *mut _,
679 c"notify::caps-lock-state".as_ptr() as *const _,
680 Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
681 notify_caps_lock_state_trampoline::<Self, F> as *const (),
682 )),
683 Box_::into_raw(f),
684 )
685 }
686 }
687
688 #[doc(alias = "direction")]
689 fn connect_direction_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
690 unsafe extern "C" fn notify_direction_trampoline<P: IsA<Device>, F: Fn(&P) + 'static>(
691 this: *mut ffi::GdkDevice,
692 _param_spec: glib::ffi::gpointer,
693 f: glib::ffi::gpointer,
694 ) {
695 let f: &F = &*(f as *const F);
696 f(Device::from_glib_borrow(this).unsafe_cast_ref())
697 }
698 unsafe {
699 let f: Box_<F> = Box_::new(f);
700 connect_raw(
701 self.as_ptr() as *mut _,
702 c"notify::direction".as_ptr() as *const _,
703 Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
704 notify_direction_trampoline::<Self, F> as *const (),
705 )),
706 Box_::into_raw(f),
707 )
708 }
709 }
710
711 #[doc(alias = "has-bidi-layouts")]
712 fn connect_has_bidi_layouts_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
713 unsafe extern "C" fn notify_has_bidi_layouts_trampoline<
714 P: IsA<Device>,
715 F: Fn(&P) + 'static,
716 >(
717 this: *mut ffi::GdkDevice,
718 _param_spec: glib::ffi::gpointer,
719 f: glib::ffi::gpointer,
720 ) {
721 let f: &F = &*(f as *const F);
722 f(Device::from_glib_borrow(this).unsafe_cast_ref())
723 }
724 unsafe {
725 let f: Box_<F> = Box_::new(f);
726 connect_raw(
727 self.as_ptr() as *mut _,
728 c"notify::has-bidi-layouts".as_ptr() as *const _,
729 Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
730 notify_has_bidi_layouts_trampoline::<Self, F> as *const (),
731 )),
732 Box_::into_raw(f),
733 )
734 }
735 }
736
737 #[cfg(feature = "v4_18")]
738 #[cfg_attr(docsrs, doc(cfg(feature = "v4_18")))]
739 #[doc(alias = "layout-names")]
740 fn connect_layout_names_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
741 unsafe extern "C" fn notify_layout_names_trampoline<P: IsA<Device>, F: Fn(&P) + 'static>(
742 this: *mut ffi::GdkDevice,
743 _param_spec: glib::ffi::gpointer,
744 f: glib::ffi::gpointer,
745 ) {
746 let f: &F = &*(f as *const F);
747 f(Device::from_glib_borrow(this).unsafe_cast_ref())
748 }
749 unsafe {
750 let f: Box_<F> = Box_::new(f);
751 connect_raw(
752 self.as_ptr() as *mut _,
753 c"notify::layout-names".as_ptr() as *const _,
754 Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
755 notify_layout_names_trampoline::<Self, F> as *const (),
756 )),
757 Box_::into_raw(f),
758 )
759 }
760 }
761
762 #[doc(alias = "modifier-state")]
763 fn connect_modifier_state_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
764 unsafe extern "C" fn notify_modifier_state_trampoline<
765 P: IsA<Device>,
766 F: Fn(&P) + 'static,
767 >(
768 this: *mut ffi::GdkDevice,
769 _param_spec: glib::ffi::gpointer,
770 f: glib::ffi::gpointer,
771 ) {
772 let f: &F = &*(f as *const F);
773 f(Device::from_glib_borrow(this).unsafe_cast_ref())
774 }
775 unsafe {
776 let f: Box_<F> = Box_::new(f);
777 connect_raw(
778 self.as_ptr() as *mut _,
779 c"notify::modifier-state".as_ptr() as *const _,
780 Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
781 notify_modifier_state_trampoline::<Self, F> as *const (),
782 )),
783 Box_::into_raw(f),
784 )
785 }
786 }
787
788 #[doc(alias = "n-axes")]
789 fn connect_n_axes_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
790 unsafe extern "C" fn notify_n_axes_trampoline<P: IsA<Device>, F: Fn(&P) + 'static>(
791 this: *mut ffi::GdkDevice,
792 _param_spec: glib::ffi::gpointer,
793 f: glib::ffi::gpointer,
794 ) {
795 let f: &F = &*(f as *const F);
796 f(Device::from_glib_borrow(this).unsafe_cast_ref())
797 }
798 unsafe {
799 let f: Box_<F> = Box_::new(f);
800 connect_raw(
801 self.as_ptr() as *mut _,
802 c"notify::n-axes".as_ptr() as *const _,
803 Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
804 notify_n_axes_trampoline::<Self, F> as *const (),
805 )),
806 Box_::into_raw(f),
807 )
808 }
809 }
810
811 #[doc(alias = "num-lock-state")]
812 fn connect_num_lock_state_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
813 unsafe extern "C" fn notify_num_lock_state_trampoline<
814 P: IsA<Device>,
815 F: Fn(&P) + 'static,
816 >(
817 this: *mut ffi::GdkDevice,
818 _param_spec: glib::ffi::gpointer,
819 f: glib::ffi::gpointer,
820 ) {
821 let f: &F = &*(f as *const F);
822 f(Device::from_glib_borrow(this).unsafe_cast_ref())
823 }
824 unsafe {
825 let f: Box_<F> = Box_::new(f);
826 connect_raw(
827 self.as_ptr() as *mut _,
828 c"notify::num-lock-state".as_ptr() as *const _,
829 Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
830 notify_num_lock_state_trampoline::<Self, F> as *const (),
831 )),
832 Box_::into_raw(f),
833 )
834 }
835 }
836
837 #[doc(alias = "scroll-lock-state")]
838 fn connect_scroll_lock_state_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
839 unsafe extern "C" fn notify_scroll_lock_state_trampoline<
840 P: IsA<Device>,
841 F: Fn(&P) + 'static,
842 >(
843 this: *mut ffi::GdkDevice,
844 _param_spec: glib::ffi::gpointer,
845 f: glib::ffi::gpointer,
846 ) {
847 let f: &F = &*(f as *const F);
848 f(Device::from_glib_borrow(this).unsafe_cast_ref())
849 }
850 unsafe {
851 let f: Box_<F> = Box_::new(f);
852 connect_raw(
853 self.as_ptr() as *mut _,
854 c"notify::scroll-lock-state".as_ptr() as *const _,
855 Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
856 notify_scroll_lock_state_trampoline::<Self, F> as *const (),
857 )),
858 Box_::into_raw(f),
859 )
860 }
861 }
862
863 #[doc(alias = "seat")]
864 fn connect_seat_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
865 unsafe extern "C" fn notify_seat_trampoline<P: IsA<Device>, F: Fn(&P) + 'static>(
866 this: *mut ffi::GdkDevice,
867 _param_spec: glib::ffi::gpointer,
868 f: glib::ffi::gpointer,
869 ) {
870 let f: &F = &*(f as *const F);
871 f(Device::from_glib_borrow(this).unsafe_cast_ref())
872 }
873 unsafe {
874 let f: Box_<F> = Box_::new(f);
875 connect_raw(
876 self.as_ptr() as *mut _,
877 c"notify::seat".as_ptr() as *const _,
878 Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
879 notify_seat_trampoline::<Self, F> as *const (),
880 )),
881 Box_::into_raw(f),
882 )
883 }
884 }
885
886 #[doc(alias = "tool")]
887 fn connect_tool_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
888 unsafe extern "C" fn notify_tool_trampoline<P: IsA<Device>, F: Fn(&P) + 'static>(
889 this: *mut ffi::GdkDevice,
890 _param_spec: glib::ffi::gpointer,
891 f: glib::ffi::gpointer,
892 ) {
893 let f: &F = &*(f as *const F);
894 f(Device::from_glib_borrow(this).unsafe_cast_ref())
895 }
896 unsafe {
897 let f: Box_<F> = Box_::new(f);
898 connect_raw(
899 self.as_ptr() as *mut _,
900 c"notify::tool".as_ptr() as *const _,
901 Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
902 notify_tool_trampoline::<Self, F> as *const (),
903 )),
904 Box_::into_raw(f),
905 )
906 }
907 }
908}
909
910impl<O: IsA<Device>> DeviceExt for O {}