mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-22 14:46:34 +01:00
git-svn-id: svn://localhost/ardour2/branches/3.0@3435 d708f5d6-7413-0410-9779-e7cbd77b26cf
52 lines
1.8 KiB
Text
52 lines
1.8 KiB
Text
/* $Id: pixbufanimation.hg,v 1.1 2003/01/21 13:38:37 murrayc Exp $ */
|
|
|
|
/* box.h
|
|
*
|
|
* Copyright (C) 1998-2002 The gtkmm Development Team
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the Free
|
|
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#include <glibmm/object.h>
|
|
#include <gdkmm/pixbuf.h>
|
|
#include <gdkmm/pixbufanimationiter.h>
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
|
|
|
_DEFS(gdkmm,gdk)
|
|
_PINCLUDE(glibmm/private/object_p.h)
|
|
|
|
|
|
namespace Gdk
|
|
{
|
|
|
|
class PixbufAnimation : public Glib::Object
|
|
{
|
|
_CLASS_GOBJECT(PixbufAnimation, GdkPixbufAnimation, GDK_PIXBUF_ANIMATION, Glib::Object, GObject)
|
|
_IGNORE(gdk_pixbuf_animation_ref, gdk_pixbuf_animation_unref)
|
|
protected:
|
|
|
|
public:
|
|
|
|
static Glib::RefPtr<PixbufAnimation> create_from_file(const Glib::ustring& filename);
|
|
|
|
_WRAP_METHOD(int get_width() const, gdk_pixbuf_animation_get_width)
|
|
_WRAP_METHOD(int get_height() const, gdk_pixbuf_animation_get_height)
|
|
_WRAP_METHOD(bool is_static_image() const, gdk_pixbuf_animation_is_static_image)
|
|
_WRAP_METHOD(Glib::RefPtr<Pixbuf> get_static_image(), gdk_pixbuf_animation_get_static_image, refreturn)
|
|
_WRAP_METHOD(Glib::RefPtr<PixbufAnimationIter> get_iter(const GTimeVal* start_time), gdk_pixbuf_animation_get_iter, refreturn)
|
|
};
|
|
|
|
} /* namespace Gdk */
|
|
|