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
103
104
105
106
107
108
109
// This file was generated by gir (https://github.com/gtk-rs/gir @ fe7a6ff+)
// from gir-files (https://github.com/gtk-rs/gir-files @ b215ee8)
// DO NOT EDIT

use FormatOptions;
use ffi;
use glib::object::IsA;
use glib::translate::*;
use glib_ffi;
use gobject_ffi;
use std::mem;
use std::ptr;

glib_wrapper! {
    /// An RFC 2822 Address object.
    ///
    /// # Implements
    ///
    /// [`InternetAddressExt`](trait.InternetAddressExt.html)
    pub struct InternetAddress(Object<ffi::InternetAddress, ffi::InternetAddressClass>);

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

/// Trait containing all `InternetAddress` methods.
///
/// # Implementors
///
/// [`InternetAddressMailbox`](struct.InternetAddressMailbox.html), [`InternetAddress`](struct.InternetAddress.html)
pub trait InternetAddressExt {
    /// Gets the charset to be used when encoding the name of the mailbox or group.
    ///
    /// # Returns
    ///
    /// the charset to be used when encoding the name of the
    /// mailbox or group if available or `None` otherwise.
    fn get_charset(&self) -> Option<String>;

    /// Gets the display name of the `InternetAddress`.
    ///
    /// # Returns
    ///
    /// the name of the mailbox or group in a form suitable
    /// for display if available or `None` otherwise. If the name is available,
    /// the returned string will be in UTF-8.
    fn get_name(&self) -> Option<String>;

    /// Set the charset to use for encoding the name of the mailbox or group.
    /// ## `charset`
    /// the charset to use when encoding the name or `None` to use the defaults
    fn set_charset<'a, P: Into<Option<&'a str>>>(&self, charset: P);

    /// Set the display name of the `InternetAddress`.
    ///
    /// Note: The `name` string should be in UTF-8.
    /// ## `name`
    /// the display name for the address group or mailbox
    fn set_name(&self, name: &str);

    /// Allocates a string containing the contents of the `InternetAddress`
    /// object.
    /// ## `options`
    /// a `FormatOptions` or `None`
    /// ## `encode`
    /// `true` if the address should be rfc2047 encoded
    ///
    /// # Returns
    ///
    /// the `InternetAddress` object as an allocated string in
    /// rfc822 format.
    fn to_string<'a, P: Into<Option<&'a FormatOptions>>>(&self, options: P, encode: bool) -> String;
}

impl<O: IsA<InternetAddress>> InternetAddressExt for O {
    fn get_charset(&self) -> Option<String> {
        unsafe {
            from_glib_none(ffi::internet_address_get_charset(self.to_glib_none().0))
        }
    }

    fn get_name(&self) -> Option<String> {
        unsafe {
            from_glib_none(ffi::internet_address_get_name(self.to_glib_none().0))
        }
    }

    fn set_charset<'a, P: Into<Option<&'a str>>>(&self, charset: P) {
        let charset = charset.into();
        let charset = charset.to_glib_none();
        unsafe {
            ffi::internet_address_set_charset(self.to_glib_none().0, charset.0);
        }
    }

    fn set_name(&self, name: &str) {
        unsafe {
            ffi::internet_address_set_name(self.to_glib_none().0, name.to_glib_none().0);
        }
    }

    fn to_string<'a, P: Into<Option<&'a FormatOptions>>>(&self, options: P, encode: bool) -> String {
        let options = options.into();
        unsafe {
            from_glib_full(ffi::internet_address_to_string(self.to_glib_none().0, mut_override(options.to_glib_none().0), encode.to_glib()))
        }
    }
}