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
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT

use crate::Swipeable;
use glib::object::Cast;
use glib::object::IsA;
use glib::object::ObjectType as ObjectType_;
use glib::signal::connect_raw;
use glib::signal::SignalHandlerId;
use glib::translate::*;
use glib::StaticType;
use glib::ToValue;
use std::boxed::Box as Box_;
use std::fmt;
use std::mem::transmute;

glib::wrapper! {
    pub struct SwipeTracker(Object<ffi::HdySwipeTracker, ffi::HdySwipeTrackerClass>) @implements gtk::Orientable;

    match fn {
        get_type => || ffi::hdy_swipe_tracker_get_type(),
    }
}

impl SwipeTracker {
    /// Create a new `SwipeTracker` object on `widget`.
    /// ## `swipeable`
    /// a `gtk::Widget` to add the tracker on
    ///
    /// # Returns
    ///
    /// the newly created `SwipeTracker` object
    #[doc(alias = "hdy_swipe_tracker_new")]
    pub fn new<P: IsA<Swipeable>>(swipeable: &P) -> SwipeTracker {
        skip_assert_initialized!();
        unsafe {
            from_glib_full(ffi::hdy_swipe_tracker_new(
                swipeable.as_ref().to_glib_none().0,
            ))
        }
    }

    /// Get whether `self` can be dragged with mouse pointer.
    ///
    /// # Returns
    ///
    /// `true` is mouse dragging is allowed
    #[doc(alias = "hdy_swipe_tracker_get_allow_mouse_drag")]
    pub fn get_allow_mouse_drag(&self) -> bool {
        unsafe {
            from_glib(ffi::hdy_swipe_tracker_get_allow_mouse_drag(
                self.to_glib_none().0,
            ))
        }
    }

    /// Get whether `self` is enabled. When it's not enabled, no events will be
    /// processed. Generally widgets will want to expose this via a property.
    ///
    /// # Returns
    ///
    /// `true` if `self` is enabled
    #[doc(alias = "hdy_swipe_tracker_get_enabled")]
    pub fn get_enabled(&self) -> bool {
        unsafe { from_glib(ffi::hdy_swipe_tracker_get_enabled(self.to_glib_none().0)) }
    }

    /// Get whether `self` is reversing the swipe direction.
    ///
    /// # Returns
    ///
    /// `true` is the direction is reversed
    #[doc(alias = "hdy_swipe_tracker_get_reversed")]
    pub fn get_reversed(&self) -> bool {
        unsafe { from_glib(ffi::hdy_swipe_tracker_get_reversed(self.to_glib_none().0)) }
    }

    /// Get `self`'s swipeable widget.
    ///
    /// # Returns
    ///
    /// the swipeable widget
    #[doc(alias = "hdy_swipe_tracker_get_swipeable")]
    pub fn get_swipeable(&self) -> Option<Swipeable> {
        unsafe { from_glib_none(ffi::hdy_swipe_tracker_get_swipeable(self.to_glib_none().0)) }
    }

    /// Set whether `self` can be dragged with mouse pointer. This should usually be
    /// `false`.
    /// ## `allow_mouse_drag`
    /// whether to allow mouse dragging
    #[doc(alias = "hdy_swipe_tracker_set_allow_mouse_drag")]
    pub fn set_allow_mouse_drag(&self, allow_mouse_drag: bool) {
        unsafe {
            ffi::hdy_swipe_tracker_set_allow_mouse_drag(
                self.to_glib_none().0,
                allow_mouse_drag.to_glib(),
            );
        }
    }

    /// Set whether `self` is enabled. When it's not enabled, no events will be
    /// processed. Usually widgets will want to expose this via a property.
    /// ## `enabled`
    /// whether to enable to swipe tracker
    #[doc(alias = "hdy_swipe_tracker_set_enabled")]
    pub fn set_enabled(&self, enabled: bool) {
        unsafe {
            ffi::hdy_swipe_tracker_set_enabled(self.to_glib_none().0, enabled.to_glib());
        }
    }

    /// Set whether to reverse the swipe direction. If `self` is horizontal,
    /// can be used for supporting RTL text direction.
    /// ## `reversed`
    /// whether to reverse the swipe direction
    #[doc(alias = "hdy_swipe_tracker_set_reversed")]
    pub fn set_reversed(&self, reversed: bool) {
        unsafe {
            ffi::hdy_swipe_tracker_set_reversed(self.to_glib_none().0, reversed.to_glib());
        }
    }

    /// Move the current progress value by `delta`. This can be used to adjust the
    /// current position if snap points move during the gesture.
    /// ## `delta`
    /// the position delta
    #[doc(alias = "hdy_swipe_tracker_shift_position")]
    pub fn shift_position(&self, delta: f64) {
        unsafe {
            ffi::hdy_swipe_tracker_shift_position(self.to_glib_none().0, delta);
        }
    }

    /// This signal is emitted as soon as the gesture has stopped.
    /// ## `duration`
    /// Snap-back animation duration in milliseconds
    /// ## `to`
    /// The progress value to animate to
    pub fn connect_end_swipe<F: Fn(&SwipeTracker, i64, f64) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn end_swipe_trampoline<F: Fn(&SwipeTracker, i64, f64) + 'static>(
            this: *mut ffi::HdySwipeTracker,
            duration: i64,
            to: libc::c_double,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(&from_glib_borrow(this), duration, to)
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"end-swipe\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    end_swipe_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    /// This signal is emitted every time the progress value changes.
    /// ## `progress`
    /// The current animation progress value
    pub fn connect_update_swipe<F: Fn(&SwipeTracker, f64) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn update_swipe_trampoline<F: Fn(&SwipeTracker, f64) + 'static>(
            this: *mut ffi::HdySwipeTracker,
            progress: libc::c_double,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(&from_glib_borrow(this), progress)
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"update-swipe\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    update_swipe_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    pub fn connect_property_allow_mouse_drag_notify<F: Fn(&SwipeTracker) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_allow_mouse_drag_trampoline<F: Fn(&SwipeTracker) + 'static>(
            this: *mut ffi::HdySwipeTracker,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(&from_glib_borrow(this))
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::allow-mouse-drag\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_allow_mouse_drag_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    pub fn connect_property_enabled_notify<F: Fn(&SwipeTracker) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_enabled_trampoline<F: Fn(&SwipeTracker) + 'static>(
            this: *mut ffi::HdySwipeTracker,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(&from_glib_borrow(this))
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::enabled\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_enabled_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    pub fn connect_property_reversed_notify<F: Fn(&SwipeTracker) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_reversed_trampoline<F: Fn(&SwipeTracker) + 'static>(
            this: *mut ffi::HdySwipeTracker,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(&from_glib_borrow(this))
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::reversed\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_reversed_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }
}

#[derive(Clone, Default)]
pub struct SwipeTrackerBuilder {
    allow_mouse_drag: Option<bool>,
    enabled: Option<bool>,
    reversed: Option<bool>,
    swipeable: Option<Swipeable>,
    orientation: Option<gtk::Orientation>,
}

impl SwipeTrackerBuilder {
    pub fn new() -> Self {
        Self::default()
    }

    pub fn build(self) -> SwipeTracker {
        let mut properties: Vec<(&str, &dyn ToValue)> = vec![];
        if let Some(ref allow_mouse_drag) = self.allow_mouse_drag {
            properties.push(("allow-mouse-drag", allow_mouse_drag));
        }
        if let Some(ref enabled) = self.enabled {
            properties.push(("enabled", enabled));
        }
        if let Some(ref reversed) = self.reversed {
            properties.push(("reversed", reversed));
        }
        if let Some(ref swipeable) = self.swipeable {
            properties.push(("swipeable", swipeable));
        }
        if let Some(ref orientation) = self.orientation {
            properties.push(("orientation", orientation));
        }
        let ret = glib::Object::new::<SwipeTracker>(&properties).expect("object new");
        ret
    }

    pub fn allow_mouse_drag(mut self, allow_mouse_drag: bool) -> Self {
        self.allow_mouse_drag = Some(allow_mouse_drag);
        self
    }

    pub fn enabled(mut self, enabled: bool) -> Self {
        self.enabled = Some(enabled);
        self
    }

    pub fn reversed(mut self, reversed: bool) -> Self {
        self.reversed = Some(reversed);
        self
    }

    pub fn swipeable<P: IsA<Swipeable>>(mut self, swipeable: &P) -> Self {
        self.swipeable = Some(swipeable.clone().upcast());
        self
    }

    pub fn orientation(mut self, orientation: gtk::Orientation) -> Self {
        self.orientation = Some(orientation);
        self
    }
}

impl fmt::Display for SwipeTracker {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.write_str("SwipeTracker")
    }
}