]> git.xonotic.org Git - xonotic/netradiant.git/blobdiff - libs/gtkutil/image.h
Merge commit 'fe73dd74d0e40a33c090993390e4d5721a1f9e05' into garux-merge
[xonotic/netradiant.git] / libs / gtkutil / image.h
index cf452559b1938e1d9533789c32fd91689bc828f4..6a8d419b2087f3dcdf5b9a353360008aa19436ba 100644 (file)
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
+#include <uilib/uilib.h>
+
 #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
+ui::Image image_new_from_file_with_mask( const char* filename );
+ui::Image image_new_missing();
+ui::Image new_image( const char* filename ); // filename is full path to image file
+ui::Image new_local_image( const char* filename ); // filename is relative to local bitmaps path
 
 #endif