~ubuntu-branches/ubuntu/utopic/file-browser-applet/utopic

« back to all changes in this revision

Viewing changes to src/utils.h

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Starr-Bochicchio
  • Date: 2009-02-13 21:33:45 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090213213345-gowiib2ifj0hmjb3
Tags: 0.6.1-0ubuntu1
* New upstream release. (LP: #329282)
 - Added mnemonic keyboard shortcut to menus for 
   faster keyboard navigation.
 - Added recent documents' support.
 - Improved menu browser focus after context menu close.
 - Fixed bugs #43, 44, 45, 49, 51, 56, 59, 60, 62.
* debian/control:
 - Update Vcs-Bzr field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#ifndef UTILS_H
27
27
#define UTILS_H
28
28
 
29
 
#include <glib.h>
30
29
#include <gtk/gtk.h>
31
30
 
32
 
#include "config.h"
33
 
 
 
31
/******************************************************************************/
34
32
typedef GPtrArray *Garbage;
35
33
/******************************************************************************/
36
34
void            garbage_empty (Garbage *garabage, gboolean reuse);
40
38
gboolean        utils_gerror_ok (GError **error, gboolean show_error);
41
39
void            utils_show_dialog (const gchar *title, const gchar *message, GtkMessageType type);
42
40
GtkWidget*      utils_get_scaled_image_from_file (const gchar *file_name, int size);
 
41
gchar*          utils_escape_str (const gchar *str, const gchar *old_token, const gchar *new_token);
43
42
GSList*         g_slist_swap_data (GSList *list, guint index);
 
43
gchar**         g_strv_new (guint size);
44
44
/******************************************************************************/
45
45
#endif