mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-10 20:10:56 +00:00
16 lines
544 B
C
16 lines
544 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
|