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
110
111
112
113
114
115
116
117
118
119
120
121
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files.git)
// DO NOT EDIT

use glib::translate::*;
use std::fmt;

glib::wrapper! {
    /// A [`ContentDeserializer`][crate::ContentDeserializer] is used to deserialize content received via
    /// inter-application data transfers.
    ///
    /// The [`ContentDeserializer`][crate::ContentDeserializer] transforms serialized content that is
    /// identified by a mime type into an object identified by a GType.
    ///
    /// GTK provides serializers and deserializers for common data types
    /// such as text, colors, images or file lists. To register your own
    /// deserialization functions, use [``content_register_deserializer()``][`crate::content_register_deserializer()`].
    ///
    /// Also see [`ContentSerializer`][crate::ContentSerializer].
    #[doc(alias = "GdkContentDeserializer")]
    pub struct ContentDeserializer(Object<ffi::GdkContentDeserializer>);

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

impl ContentDeserializer {
    /// Gets the cancellable for the current operation.
    ///
    /// This is the `GCancellable` that was passed to [``content_deserialize_async()``][`crate::content_deserialize_async()`].
    ///
    /// # Returns
    ///
    /// the cancellable for the current operation
    #[doc(alias = "gdk_content_deserializer_get_cancellable")]
    #[doc(alias = "get_cancellable")]
    pub fn cancellable(&self) -> Option<gio::Cancellable> {
        unsafe {
            from_glib_none(ffi::gdk_content_deserializer_get_cancellable(
                self.to_glib_none().0,
            ))
        }
    }

    /// Gets the `GType` to create an instance of.
    ///
    /// # Returns
    ///
    /// the `GType` for the current operation
    #[doc(alias = "gdk_content_deserializer_get_gtype")]
    #[doc(alias = "get_gtype")]
    pub fn type_(&self) -> glib::types::Type {
        unsafe {
            from_glib(ffi::gdk_content_deserializer_get_gtype(
                self.to_glib_none().0,
            ))
        }
    }

    /// Gets the input stream for the current operation.
    ///
    /// This is the stream that was passed to [``content_deserialize_async()``][`crate::content_deserialize_async()`].
    ///
    /// # Returns
    ///
    /// the input stream for the current operation
    #[doc(alias = "gdk_content_deserializer_get_input_stream")]
    #[doc(alias = "get_input_stream")]
    pub fn input_stream(&self) -> gio::InputStream {
        unsafe {
            from_glib_none(ffi::gdk_content_deserializer_get_input_stream(
                self.to_glib_none().0,
            ))
        }
    }

    /// Gets the mime type to deserialize from.
    ///
    /// # Returns
    ///
    /// the mime type for the current operation
    #[doc(alias = "gdk_content_deserializer_get_mime_type")]
    #[doc(alias = "get_mime_type")]
    pub fn mime_type(&self) -> glib::GString {
        unsafe {
            from_glib_none(ffi::gdk_content_deserializer_get_mime_type(
                self.to_glib_none().0,
            ))
        }
    }

    /// Gets the `GValue` to store the deserialized object in.
    ///
    /// # Returns
    ///
    /// the `GValue` for the current operation
    #[doc(alias = "gdk_content_deserializer_get_value")]
    #[doc(alias = "get_value")]
    pub fn value(&self) -> glib::Value {
        unsafe {
            from_glib_none(ffi::gdk_content_deserializer_get_value(
                self.to_glib_none().0,
            ))
        }
    }

    /// Indicate that the deserialization has been successfully completed.
    #[doc(alias = "gdk_content_deserializer_return_success")]
    pub fn return_success(&self) {
        unsafe {
            ffi::gdk_content_deserializer_return_success(self.to_glib_none().0);
        }
    }
}

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