// $Id$
// -*- coding: utf-8; -*-
  
#ifndef _ANIMATION_LIB_H
#define _ANIMATION_LIB_H

/*
  animation_lib.h
  
  アニメーションサンプルウィジェット集のヘッダ
*/


/* GDKでアニメーションgifを読み込むサンプルウィジェット */
GtkWidget *my_pixbuf_animation(GtkWidget *window);
/* ボールが動くアニメーションサンプルウィジェット */
GtkWidget *my_animation_ball(GtkWidget *window, gboolean trans);
/* アニメーションgifが動くアニメーションサンプルウィジェット */
GtkWidget *my_animation_earth(GtkWidget *window, gboolean trans);
/* キャラクターが動くアニメーションサンプルウィジェット */
GtkWidget *my_animation_chara(GtkWidget *window, gboolean trans);
/* サイコロ?が動くアニメーションサンプルウィジェット */
GtkWidget *dice(GtkWidget *window, gboolean trans);

void set_background(GtkWidget *window);
//void bleft();


#endif