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)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT

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

glib::wrapper! {
    pub struct ValueObject(Object<ffi::HdyValueObject, ffi::HdyValueObjectClass>);

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

impl ValueObject {
    /// Create a new `ValueObject`.
    /// ## `value`
    /// the `gobject::Value` to store
    ///
    /// # Returns
    ///
    /// a new `ValueObject`
    #[doc(alias = "hdy_value_object_new")]
    pub fn new(value: &glib::Value) -> ValueObject {
        assert_initialized_main_thread!();
        unsafe { from_glib_full(ffi::hdy_value_object_new(value.to_glib_none().0)) }
    }

    //#[doc(alias = "hdy_value_object_new_collect")]
    //pub fn new_collect(type_: glib::types::Type, : /*Unknown conversion*//*Unimplemented*/Fundamental: VarArgs) -> ValueObject {
    //    unsafe { TODO: call ffi:hdy_value_object_new_collect() }
    //}

    /// Creates a new `ValueObject`. This is a convenience method to create a
    /// `ValueObject` that stores a string.
    /// ## `string`
    /// the string to store
    ///
    /// # Returns
    ///
    /// a new `ValueObject`
    #[doc(alias = "hdy_value_object_new_string")]
    pub fn new_string(string: &str) -> ValueObject {
        assert_initialized_main_thread!();
        unsafe { from_glib_full(ffi::hdy_value_object_new_string(string.to_glib_none().0)) }
    }

    /// Creates a new `ValueObject`. This is a convenience method to create a
    /// `ValueObject` that stores a string taking ownership of it.
    /// ## `string`
    /// the string to store
    ///
    /// # Returns
    ///
    /// a new `ValueObject`
    #[doc(alias = "hdy_value_object_new_take_string")]
    pub fn new_take_string(string: &str) -> ValueObject {
        assert_initialized_main_thread!();
        unsafe { from_glib_full(ffi::hdy_value_object_new_take_string(string.to_glib_full())) }
    }

    /// Copy data from the contained `gobject::Value` into `dest`.
    /// ## `dest`
    /// `gobject::Value` with correct type to copy into
    #[doc(alias = "hdy_value_object_copy_value")]
    pub fn copy_value(&self, dest: &mut glib::Value) {
        unsafe {
            ffi::hdy_value_object_copy_value(self.to_glib_none().0, dest.to_glib_none_mut().0);
        }
    }

    /// Returns a copy of the contained string if the value is of type
    /// `G_TYPE_STRING`.
    ///
    /// # Returns
    ///
    /// a copy of the contained string
    #[doc(alias = "hdy_value_object_dup_string")]
    pub fn dup_string(&self) -> Option<glib::GString> {
        unsafe { from_glib_full(ffi::hdy_value_object_dup_string(self.to_glib_none().0)) }
    }

    /// Returns the contained string if the value is of type `G_TYPE_STRING`.
    ///
    /// # Returns
    ///
    /// the contained string
    #[doc(alias = "hdy_value_object_get_string")]
    pub fn get_string(&self) -> Option<glib::GString> {
        unsafe { from_glib_none(ffi::hdy_value_object_get_string(self.to_glib_none().0)) }
    }

    /// Return the contained value.
    ///
    /// # Returns
    ///
    /// the contained `gobject::Value`
    #[doc(alias = "hdy_value_object_get_value")]
    pub fn get_value(&self) -> Option<glib::Value> {
        unsafe { from_glib_none(ffi::hdy_value_object_get_value(self.to_glib_none().0)) }
    }
}

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