#include <gnome.h>
struct GnomePixmap
GtkWidget* gnome_pixmap_new_from_file (const char *filename);
GtkWidget* gnome_pixmap_new_from_file_at_size
(const char *filename,
int width,
int height);
GtkWidget* gnome_pixmap_new_from_xpm_d (char **xpm_data);
GtkWidget* gnome_pixmap_new_from_xpm_d_at_size
(char **xpm_data,
int width,
int height);
GtkWidget* gnome_pixmap_new_from_rgb_d (unsigned char *data,
unsigned char *alpha,
int rgb_width,
int rgb_height);
GtkWidget* gnome_pixmap_new_from_rgb_d_shaped
(unsigned char *data,
unsigned char *alpha,
int rgb_width,
int rgb_height,
GdkImlibColor *shape_color);
GtkWidget* gnome_pixmap_new_from_rgb_d_shaped_at_size
(unsigned char *data,
unsigned char *alpha,
int rgb_width,
int rgb_height,
int width,
int height,
GdkImlibColor *shape_color);
GtkWidget* gnome_pixmap_new_from_rgb_d_at_size
(unsigned char *data,
unsigned char *alpha,
int rgb_width,
int rgb_height,
int width,
int height);
GtkWidget* gnome_pixmap_new_from_gnome_pixmap
(GnomePixmap *gpixmap);
GtkWidget* gnome_pixmap_new_from_imlib (GdkImlibImage *im);
GtkWidget* gnome_pixmap_new_from_imlib_at_size
(GdkImlibImage *im,
int width,
int height);
void gnome_pixmap_load_file (GnomePixmap *gpixmap,
const char *filename);
void gnome_pixmap_load_file_at_size (GnomePixmap *gpixmap,
const char *filename,
int width,
int height);
void gnome_pixmap_load_xpm_d (GnomePixmap *gpixmap,
char **xpm_data);
void gnome_pixmap_load_xpm_d_at_size (GnomePixmap *gpixmap,
char **xpm_data,
int width,
int height);
void gnome_pixmap_load_rgb_d (GnomePixmap *gpixmap,
unsigned char *data,
unsigned char *alpha,
int rgb_width,
int rgb_height);
void gnome_pixmap_load_rgb_d_shaped (GnomePixmap *gpixmap,
unsigned char *data,
unsigned char *alpha,
int rgb_width,
int rgb_height,
GdkImlibColor *shape_color);
void gnome_pixmap_load_rgb_d_shaped_at_size
(GnomePixmap *gpixmap,
unsigned char *data,
unsigned char *alpha,
int rgb_width,
int rgb_height,
int width,
int height,
GdkImlibColor *shape_color);
void gnome_pixmap_load_rgb_d_at_size (GnomePixmap *gpixmap,
unsigned char *data,
unsigned char *alpha,
int rgb_width,
int rgb_height,
int width,
int height);
void gnome_pixmap_load_imlib (GnomePixmap *gpixmap,
GdkImlibImage *im);
void gnome_pixmap_load_imlib_at_size (GnomePixmap *gpixmap,
GdkImlibImage *im,
int width,
int height);
|