gdk_pixbuf/
lib.rs

1// Copyright 2013-2016, The Gtk-rs Project Developers.
2// See the COPYRIGHT file at the top-level directory of this distribution.
3// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
4
5#![cfg_attr(feature = "cargo-clippy", allow(too_many_arguments))]
6#![cfg_attr(feature = "cargo-clippy", allow(transmute_ptr_to_ref))]
7#![cfg_attr(feature = "cargo-clippy", allow(type_complexity))]
8
9extern crate gdk_pixbuf_sys;
10extern crate gio_sys;
11extern crate glib_sys;
12extern crate gobject_sys;
13#[macro_use]
14extern crate glib;
15extern crate gio;
16extern crate libc;
17
18#[cfg(feature = "futures")]
19extern crate fragile;
20#[cfg(feature = "futures")]
21extern crate futures;
22
23pub use glib::{Cast, Continue, Error, IsA, Object, StaticType, ToValue, Type, TypedValue, Value};
24
25mod auto;
26
27mod animation;
28mod pixbuf;
29pub mod prelude;
30
31pub use auto::*;
32
33pub use self::animation::{PixbufAnimation, PixbufAnimationExt, PixbufAnimationIter};