gtk 0.19.0

Rust bindings for the GTK+ 3 library
Documentation
// Take a look at the license at the top of the repository in the LICENSE file.

use crate::EntryCompletion;
use crate::Widget;
use crate::{Entry, ffi};
use glib::object::Cast;
use glib::object::IsA;
use glib::translate::*;

pub trait EntryCompletionExtManual: IsA<EntryCompletion> + 'static {
    #[doc(alias = "gtk_entry_completion_get_entry")]
    #[doc(alias = "get_entry")]
    fn entry(&self) -> Option<Entry> {
        unsafe {
            Option::<Widget>::from_glib_none(ffi::gtk_entry_completion_get_entry(
                self.as_ref().to_glib_none().0,
            ))
            .map(|widget| {
                widget
                    .downcast()
                    .expect("Non-Entry widget received from get_entry method")
            })
        }
    }
}

impl<O: IsA<EntryCompletion>> EntryCompletionExtManual for O {}