xed/plugins/filebrowser/xed-file-browser-utils.h

26 lines
1.0 KiB
C
Raw Normal View History

#ifndef __XED_FILE_BROWSER_UTILS_H__
#define __XED_FILE_BROWSER_UTILS_H__
2011-11-07 13:46:58 -06:00
#include <xed/xed-window.h>
2011-11-07 13:46:58 -06:00
#include <gio/gio.h>
GdkPixbuf *xed_file_browser_utils_pixbuf_from_theme (gchar const *name,
GtkIconSize size);
2011-11-07 13:46:58 -06:00
GdkPixbuf *xed_file_browser_utils_pixbuf_from_icon (GIcon *icon,
GtkIconSize size);
GdkPixbuf *xed_file_browser_utils_pixbuf_from_file (GFile *file,
GtkIconSize size);
2011-11-07 13:46:58 -06:00
gchar * xed_file_browser_utils_file_basename (GFile *file);
2011-11-07 13:46:58 -06:00
gboolean xed_file_browser_utils_confirmation_dialog (XedWindow *window,
GtkMessageType type,
gchar const *message,
gchar const *secondary,
gchar const *button_label);
2011-11-07 13:46:58 -06:00
#endif /* __XED_FILE_BROWSER_UTILS_H__ */
2011-11-07 13:46:58 -06:00
// ex:ts=8:noet: