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
// 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 ActionGroup;
use ffi;
use glib;
use glib::object::IsA;
use glib::translate::*;
use std::fmt;

glib_wrapper! {
    pub struct RemoteActionGroup(Interface<ffi::GRemoteActionGroup>) @requires ActionGroup;

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

pub const NONE_REMOTE_ACTION_GROUP: Option<&RemoteActionGroup> = None;

pub trait RemoteActionGroupExt: 'static {
    fn activate_action_full<'a, P: Into<Option<&'a glib::Variant>>>(&self, action_name: &str, parameter: P, platform_data: &glib::Variant);

    fn change_action_state_full(&self, action_name: &str, value: &glib::Variant, platform_data: &glib::Variant);
}

impl<O: IsA<RemoteActionGroup>> RemoteActionGroupExt for O {
    fn activate_action_full<'a, P: Into<Option<&'a glib::Variant>>>(&self, action_name: &str, parameter: P, platform_data: &glib::Variant) {
        let parameter = parameter.into();
        unsafe {
            ffi::g_remote_action_group_activate_action_full(self.as_ref().to_glib_none().0, action_name.to_glib_none().0, parameter.to_glib_none().0, platform_data.to_glib_none().0);
        }
    }

    fn change_action_state_full(&self, action_name: &str, value: &glib::Variant, platform_data: &glib::Variant) {
        unsafe {
            ffi::g_remote_action_group_change_action_state_full(self.as_ref().to_glib_none().0, action_name.to_glib_none().0, value.to_glib_none().0, platform_data.to_glib_none().0);
        }
    }
}

impl fmt::Display for RemoteActionGroup {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "RemoteActionGroup")
    }
}