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
use glib::translate::*;
glib::wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct GeolocationPosition(Boxed<ffi::WebKitGeolocationPosition>);
match fn {
copy => |ptr| ffi::webkit_geolocation_position_copy(mut_override(ptr)),
free => |ptr| ffi::webkit_geolocation_position_free(ptr),
type_ => || ffi::webkit_geolocation_position_get_type(),
}
}
impl GeolocationPosition {
#[doc(alias = "webkit_geolocation_position_new")]
pub fn new(latitude: f64, longitude: f64, accuracy: f64) -> GeolocationPosition {
assert_initialized_main_thread!();
unsafe {
from_glib_full(ffi::webkit_geolocation_position_new(
latitude, longitude, accuracy,
))
}
}
#[doc(alias = "webkit_geolocation_position_set_altitude")]
pub fn set_altitude(&mut self, altitude: f64) {
unsafe {
ffi::webkit_geolocation_position_set_altitude(self.to_glib_none_mut().0, altitude);
}
}
#[doc(alias = "webkit_geolocation_position_set_altitude_accuracy")]
pub fn set_altitude_accuracy(&mut self, altitude_accuracy: f64) {
unsafe {
ffi::webkit_geolocation_position_set_altitude_accuracy(
self.to_glib_none_mut().0,
altitude_accuracy,
);
}
}
#[doc(alias = "webkit_geolocation_position_set_heading")]
pub fn set_heading(&mut self, heading: f64) {
unsafe {
ffi::webkit_geolocation_position_set_heading(self.to_glib_none_mut().0, heading);
}
}
#[doc(alias = "webkit_geolocation_position_set_speed")]
pub fn set_speed(&mut self, speed: f64) {
unsafe {
ffi::webkit_geolocation_position_set_speed(self.to_glib_none_mut().0, speed);
}
}
#[doc(alias = "webkit_geolocation_position_set_timestamp")]
pub fn set_timestamp(&mut self, timestamp: u64) {
unsafe {
ffi::webkit_geolocation_position_set_timestamp(self.to_glib_none_mut().0, timestamp);
}
}
}