1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Take a look at the license at the top of the repository in the LICENSE file.

use std::fmt;

use crate::{EventType, TouchpadEvent};

define_event! {
    TouchpadEvent,
    ffi::GdkTouchpadEvent,
    &[
        EventType::TouchpadSwipe,
        EventType::TouchpadPinch,
        #[cfg(feature = "v4_8")]
        {
            EventType::TouchpadHold
        },
    ]
}

impl fmt::Debug for TouchpadEvent {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.debug_struct("TouchpadEvent")
            .field("deltas", &self.deltas())
            .field("gesture_phase", &self.gesture_phase())
            .field("n_fingers", &self.n_fingers())
            .field("pinch_angle_delta", &self.pinch_angle_delta())
            .field("pinch_scale", &self.pinch_scale())
            .finish()
    }
}