blob: d4b5541e5a338c9dd035e79eea08f66cb55cb230 (
plain)
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
|
/*
* Copyright (C) 2019 Alexander Mikhaylenko <exalm7659@gmail.com>
*
* SPDX-License-Identifier: LGPL-2.1+
*/
#pragma once
#if !defined(_HANDY_INSIDE) && !defined(HANDY_COMPILATION)
#error "Only <handy.h> can be included directly."
#endif
#include "hdy-swipe-tracker.h"
G_BEGIN_DECLS
void hdy_swipe_tracker_emit_begin_swipe (HdySwipeTracker *self,
HdyNavigationDirection direction,
gboolean direct);
void hdy_swipe_tracker_emit_update_swipe (HdySwipeTracker *self,
gdouble progress);
void hdy_swipe_tracker_emit_end_swipe (HdySwipeTracker *self,
gint64 duration,
gdouble to);
G_END_DECLS
|