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

28 lines
1.2 KiB
C
Raw Normal View History

2011-11-07 16:52:18 -06:00
#ifndef __PLUMA_FILE_BROWSER_UTILS_H__
#define __PLUMA_FILE_BROWSER_UTILS_H__
2011-11-07 13:46:58 -06:00
2011-11-07 16:52:18 -06:00
#include <pluma/pluma-window.h>
2011-11-07 13:46:58 -06:00
#include <gio/gio.h>
2011-11-07 16:52:18 -06:00
GdkPixbuf *pluma_file_browser_utils_pixbuf_from_theme (gchar const *name,
2011-11-07 13:46:58 -06:00
GtkIconSize size);
2011-11-07 16:52:18 -06:00
GdkPixbuf *pluma_file_browser_utils_pixbuf_from_icon (GIcon * icon,
2011-11-07 13:46:58 -06:00
GtkIconSize size);
2011-11-07 16:52:18 -06:00
GdkPixbuf *pluma_file_browser_utils_pixbuf_from_file (GFile * file,
2011-11-07 13:46:58 -06:00
GtkIconSize size);
2011-11-07 16:52:18 -06:00
gchar * pluma_file_browser_utils_file_basename (GFile * file);
gchar * pluma_file_browser_utils_uri_basename (gchar const * uri);
2011-11-07 13:46:58 -06:00
2011-11-07 16:52:18 -06:00
gboolean pluma_file_browser_utils_confirmation_dialog (PlumaWindow * window,
2011-11-07 13:46:58 -06:00
GtkMessageType type,
gchar const *message,
gchar const *secondary,
gchar const * button_stock,
gchar const * button_label);
2011-11-07 16:52:18 -06:00
#endif /* __PLUMA_FILE_BROWSER_UTILS_H__ */
2011-11-07 13:46:58 -06:00
// ex:ts=8:noet: