mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-11 04:21:08 +00:00
16 lines
548 B
C
16 lines
548 B
C
|
|
#if !defined(INCLUDED_GTKUTIL_IMAGE_H)
|
|
#define INCLUDED_GTKUTIL_IMAGE_H
|
|
|
|
void BitmapsPath_set(const char* path);
|
|
|
|
typedef struct _GtkImage GtkImage;
|
|
typedef struct _GdkPixbuf GdkPixbuf;
|
|
|
|
GdkPixbuf* pixbuf_new_from_file_with_mask(const char* filename);
|
|
GtkImage* image_new_from_file_with_mask(const char* filename);
|
|
GtkImage* image_new_missing();
|
|
GtkImage* new_image(const char* filename); // filename is full path to image file
|
|
GtkImage* new_local_image(const char* filename); // filename is relative to local bitmaps path
|
|
|
|
#endif
|