gio 0.22.2

Rust bindings for the Gio library
Documentation
// 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 crate::{ProxyResolver, ffi};
use glib::{
    prelude::*,
    signal::{SignalHandlerId, connect_raw},
    translate::*,
};
use std::boxed::Box as Box_;

glib::wrapper! {
    #[doc(alias = "GSimpleProxyResolver")]
    pub struct SimpleProxyResolver(Object<ffi::GSimpleProxyResolver, ffi::GSimpleProxyResolverClass>) @implements ProxyResolver;

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

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

pub trait SimpleProxyResolverExt: IsA<SimpleProxyResolver> + 'static {
    #[doc(alias = "g_simple_proxy_resolver_set_default_proxy")]
    #[doc(alias = "default-proxy")]
    fn set_default_proxy(&self, default_proxy: Option<&str>) {
        unsafe {
            ffi::g_simple_proxy_resolver_set_default_proxy(
                self.as_ref().to_glib_none().0,
                default_proxy.to_glib_none().0,
            );
        }
    }

    #[doc(alias = "g_simple_proxy_resolver_set_uri_proxy")]
    fn set_uri_proxy(&self, uri_scheme: &str, proxy: &str) {
        unsafe {
            ffi::g_simple_proxy_resolver_set_uri_proxy(
                self.as_ref().to_glib_none().0,
                uri_scheme.to_glib_none().0,
                proxy.to_glib_none().0,
            );
        }
    }

    #[doc(alias = "default-proxy")]
    fn default_proxy(&self) -> Option<glib::GString> {
        ObjectExt::property(self.as_ref(), "default-proxy")
    }

    #[doc(alias = "ignore-hosts")]
    fn ignore_hosts(&self) -> Vec<glib::GString> {
        ObjectExt::property(self.as_ref(), "ignore-hosts")
    }

    #[doc(alias = "default-proxy")]
    fn connect_default_proxy_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn notify_default_proxy_trampoline<
            P: IsA<SimpleProxyResolver>,
            F: Fn(&P) + 'static,
        >(
            this: *mut ffi::GSimpleProxyResolver,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            unsafe {
                let f: &F = &*(f as *const F);
                f(SimpleProxyResolver::from_glib_borrow(this).unsafe_cast_ref())
            }
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                c"notify::default-proxy".as_ptr(),
                Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
                    notify_default_proxy_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    #[doc(alias = "ignore-hosts")]
    fn connect_ignore_hosts_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn notify_ignore_hosts_trampoline<
            P: IsA<SimpleProxyResolver>,
            F: Fn(&P) + 'static,
        >(
            this: *mut ffi::GSimpleProxyResolver,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            unsafe {
                let f: &F = &*(f as *const F);
                f(SimpleProxyResolver::from_glib_borrow(this).unsafe_cast_ref())
            }
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                c"notify::ignore-hosts".as_ptr(),
                Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
                    notify_ignore_hosts_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }
}

impl<O: IsA<SimpleProxyResolver>> SimpleProxyResolverExt for O {}