Exemple #1
0
func (_self_ *PixbufAnimation) IsStaticImage() (_go__return__ bool) {
	var _return_ C.gboolean
	_return_ = C.gdk_pixbuf_animation_is_static_image((*C.GdkPixbufAnimation)(_self_._value_))
	_go__return__ = _return_ == (C.gboolean)(C.TRUE)
	return
}
Exemple #2
0
/*
If you load a file with gdk_pixbuf_animation_new_from_file() and it turns
out to be a plain, unanimated image, then this function will return
%TRUE. Use gdk_pixbuf_animation_get_static_image() to retrieve
the image.
*/
func (self *TraitPixbufAnimation) IsStaticImage() (return__ bool) {
	var __cgo__return__ C.gboolean
	__cgo__return__ = C.gdk_pixbuf_animation_is_static_image(self.CPointer)
	return__ = __cgo__return__ == C.gboolean(1)
	return
}