use AppInfo;
#[cfg(any(feature = "v2_38", feature = "dox"))]
use AppLaunchContext;
use ffi;
use glib;
use glib::object::Downcast;
use glib::object::IsA;
use glib::signal::SignalHandlerId;
use glib::signal::connect;
use glib::translate::*;
use glib_ffi;
use gobject_ffi;
use std;
use std::boxed::Box as Box_;
use std::mem;
use std::mem::transmute;
use std::ptr;
glib_wrapper! {
pub struct DesktopAppInfo(Object<ffi::GDesktopAppInfo, ffi::GDesktopAppInfoClass>): AppInfo;
match fn {
get_type => || ffi::g_desktop_app_info_get_type(),
}
}
impl DesktopAppInfo {
pub fn new(desktop_id: &str) -> DesktopAppInfo {
unsafe {
from_glib_full(ffi::g_desktop_app_info_new(desktop_id.to_glib_none().0))
}
}
pub fn new_from_filename<P: AsRef<std::path::Path>>(filename: P) -> DesktopAppInfo {
unsafe {
from_glib_full(ffi::g_desktop_app_info_new_from_filename(filename.as_ref().to_glib_none().0))
}
}
pub fn new_from_keyfile(key_file: &glib::KeyFile) -> DesktopAppInfo {
unsafe {
from_glib_full(ffi::g_desktop_app_info_new_from_keyfile(key_file.to_glib_none().0))
}
}
#[cfg(any(feature = "v2_42", feature = "dox"))]
pub fn get_implementations(interface: &str) -> Vec<DesktopAppInfo> {
unsafe {
FromGlibPtrContainer::from_glib_full(ffi::g_desktop_app_info_get_implementations(interface.to_glib_none().0))
}
}
#[cfg_attr(feature = "v2_42", deprecated)]
pub fn set_desktop_env(desktop_env: &str) {
unsafe {
ffi::g_desktop_app_info_set_desktop_env(desktop_env.to_glib_none().0);
}
}
}
pub trait DesktopAppInfoExt {
#[cfg(any(feature = "v2_38", feature = "dox"))]
fn get_action_name(&self, action_name: &str) -> Option<String>;
#[cfg(any(feature = "v2_36", feature = "dox"))]
fn get_boolean(&self, key: &str) -> bool;
fn get_categories(&self) -> Option<String>;
fn get_filename(&self) -> Option<std::path::PathBuf>;
fn get_generic_name(&self) -> Option<String>;
fn get_is_hidden(&self) -> bool;
fn get_keywords(&self) -> Vec<String>;
#[cfg(any(feature = "v2_56", feature = "dox"))]
fn get_locale_string(&self, key: &str) -> Option<String>;
fn get_nodisplay(&self) -> bool;
fn get_show_in<'a, P: Into<Option<&'a str>>>(&self, desktop_env: P) -> bool;
#[cfg(any(feature = "v2_34", feature = "dox"))]
fn get_startup_wm_class(&self) -> Option<String>;
#[cfg(any(feature = "v2_36", feature = "dox"))]
fn get_string(&self, key: &str) -> Option<String>;
#[cfg(any(feature = "v2_36", feature = "dox"))]
fn has_key(&self, key: &str) -> bool;
#[cfg(any(feature = "v2_38", feature = "dox"))]
fn launch_action<'a, P: Into<Option<&'a AppLaunchContext>>>(&self, action_name: &str, launch_context: P);
#[cfg(any(feature = "v2_38", feature = "dox"))]
fn list_actions(&self) -> Vec<String>;
fn connect_property_filename_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
}
impl<O: IsA<DesktopAppInfo> + IsA<glib::object::Object>> DesktopAppInfoExt for O {
#[cfg(any(feature = "v2_38", feature = "dox"))]
fn get_action_name(&self, action_name: &str) -> Option<String> {
unsafe {
from_glib_full(ffi::g_desktop_app_info_get_action_name(self.to_glib_none().0, action_name.to_glib_none().0))
}
}
#[cfg(any(feature = "v2_36", feature = "dox"))]
fn get_boolean(&self, key: &str) -> bool {
unsafe {
from_glib(ffi::g_desktop_app_info_get_boolean(self.to_glib_none().0, key.to_glib_none().0))
}
}
fn get_categories(&self) -> Option<String> {
unsafe {
from_glib_none(ffi::g_desktop_app_info_get_categories(self.to_glib_none().0))
}
}
fn get_filename(&self) -> Option<std::path::PathBuf> {
unsafe {
from_glib_none(ffi::g_desktop_app_info_get_filename(self.to_glib_none().0))
}
}
fn get_generic_name(&self) -> Option<String> {
unsafe {
from_glib_none(ffi::g_desktop_app_info_get_generic_name(self.to_glib_none().0))
}
}
fn get_is_hidden(&self) -> bool {
unsafe {
from_glib(ffi::g_desktop_app_info_get_is_hidden(self.to_glib_none().0))
}
}
fn get_keywords(&self) -> Vec<String> {
unsafe {
FromGlibPtrContainer::from_glib_none(ffi::g_desktop_app_info_get_keywords(self.to_glib_none().0))
}
}
#[cfg(any(feature = "v2_56", feature = "dox"))]
fn get_locale_string(&self, key: &str) -> Option<String> {
unsafe {
from_glib_full(ffi::g_desktop_app_info_get_locale_string(self.to_glib_none().0, key.to_glib_none().0))
}
}
fn get_nodisplay(&self) -> bool {
unsafe {
from_glib(ffi::g_desktop_app_info_get_nodisplay(self.to_glib_none().0))
}
}
fn get_show_in<'a, P: Into<Option<&'a str>>>(&self, desktop_env: P) -> bool {
let desktop_env = desktop_env.into();
let desktop_env = desktop_env.to_glib_none();
unsafe {
from_glib(ffi::g_desktop_app_info_get_show_in(self.to_glib_none().0, desktop_env.0))
}
}
#[cfg(any(feature = "v2_34", feature = "dox"))]
fn get_startup_wm_class(&self) -> Option<String> {
unsafe {
from_glib_none(ffi::g_desktop_app_info_get_startup_wm_class(self.to_glib_none().0))
}
}
#[cfg(any(feature = "v2_36", feature = "dox"))]
fn get_string(&self, key: &str) -> Option<String> {
unsafe {
from_glib_full(ffi::g_desktop_app_info_get_string(self.to_glib_none().0, key.to_glib_none().0))
}
}
#[cfg(any(feature = "v2_36", feature = "dox"))]
fn has_key(&self, key: &str) -> bool {
unsafe {
from_glib(ffi::g_desktop_app_info_has_key(self.to_glib_none().0, key.to_glib_none().0))
}
}
#[cfg(any(feature = "v2_38", feature = "dox"))]
fn launch_action<'a, P: Into<Option<&'a AppLaunchContext>>>(&self, action_name: &str, launch_context: P) {
let launch_context = launch_context.into();
let launch_context = launch_context.to_glib_none();
unsafe {
ffi::g_desktop_app_info_launch_action(self.to_glib_none().0, action_name.to_glib_none().0, launch_context.0);
}
}
#[cfg(any(feature = "v2_38", feature = "dox"))]
fn list_actions(&self) -> Vec<String> {
unsafe {
FromGlibPtrContainer::from_glib_none(ffi::g_desktop_app_info_list_actions(self.to_glib_none().0))
}
}
fn connect_property_filename_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<Box_<Fn(&Self) + 'static>> = Box_::new(Box_::new(f));
connect(self.to_glib_none().0, "notify::filename",
transmute(notify_filename_trampoline::<Self> as usize), Box_::into_raw(f) as *mut _)
}
}
}
unsafe extern "C" fn notify_filename_trampoline<P>(this: *mut ffi::GDesktopAppInfo, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<DesktopAppInfo> {
let f: &&(Fn(&P) + 'static) = transmute(f);
f(&DesktopAppInfo::from_glib_borrow(this).downcast_unchecked())
}