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
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files.git)
// from webkit2gtk-gir-files
// DO NOT EDIT

use crate::PermissionRequest;
use std::fmt;

glib::wrapper! {
    /// A permission request for sharing the user's location.
    ///
    /// WebKitGeolocationPermissionRequest represents a request for
    /// permission to decide whether WebKit should provide the user's
    /// location to a website when requested through the Geolocation API.
    ///
    /// When a WebKitGeolocationPermissionRequest is not handled by the user,
    /// it is denied by default.
    ///
    /// When embedding web views in your application, you *must* configure an
    /// application identifier to allow web content to use geolocation services.
    /// The identifier *must* match the name of the `.desktop` file which describes
    /// the application, sans the suffix.
    ///
    /// If your application uses `GApplication` (or any subclass like
    /// `GtkApplication`), WebKit will automatically use the identifier returned by
    /// `g_application_get_application_id()`. This is the recommended approach for
    /// enabling geolocation in applications.
    ///
    /// If an identifier cannot be obtained through `GApplication`, the value
    /// returned by `g_get_prgname()` will be used instead as a fallback. For
    /// programs which cannot use `GApplication`, calling `g_set_prgname()` early
    /// during initialization is needed when the name of the executable on disk
    /// does not match the name of a valid `.desktop` file.
    ///
    /// # Implements
    ///
    /// [`trait@glib::ObjectExt`], [`PermissionRequestExt`][trait@crate::prelude::PermissionRequestExt]
    #[doc(alias = "WebKitGeolocationPermissionRequest")]
    pub struct GeolocationPermissionRequest(Object<ffi::WebKitGeolocationPermissionRequest, ffi::WebKitGeolocationPermissionRequestClass>) @implements PermissionRequest;

    match fn {
        type_ => || ffi::webkit_geolocation_permission_request_get_type(),
    }
}

impl GeolocationPermissionRequest {
    pub const NONE: Option<&'static GeolocationPermissionRequest> = None;
}

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