1/*
2 * icons.[ch] written by Paolo Bacchilega, who writes:
3 * "There is no problem for me, you can license
4 * my code under whatever licence you wish :)"
5 *
6 * $Id: icons.h 11709 2011-01-19 13:48:47Z jordan $
7 */
8
9#ifndef GTR_ICONS_H
10#define GTR_ICONS_H
11
12#define DIRECTORY_MIME_TYPE "folder"
13#define UNKNOWN_MIME_TYPE "unknown"
14
15const char * gtr_get_mime_type_from_filename( const char *file );
16
17GdkPixbuf  * gtr_get_mime_type_icon( const char   * mime_type,
18                                     GtkIconSize    icon_size,
19                                     GtkWidget    * for_widget );
20
21#endif
22