diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2009-03-09 11:31:24 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2009-03-09 11:31:24 +0800 |
commit | f963cc39a7d21f64f578dae50fd08c44181a3bf6 (patch) | |
tree | 7cdf0c0c9bab037272ba6fca48aebbccd4c0de74 /e-util/e-util.c | |
parent | 85d0142d21286ce87cd5f6c3d1e2f71aa994151f (diff) | |
download | gsoc2013-evolution-f963cc39a7d21f64f578dae50fd08c44181a3bf6.tar.gz gsoc2013-evolution-f963cc39a7d21f64f578dae50fd08c44181a3bf6.tar.zst gsoc2013-evolution-f963cc39a7d21f64f578dae50fd08c44181a3bf6.zip |
Cleaning up the attachment bar, centralizing its popup menu, and converting
everything to GtkUIManager/GtkActions. Saving progress mid-stream... not
sure about the MIME part utilities yet.
Also, add some EActivity subclasses. Considering an EFileActivity subclass
for asynchronous GIO operations (loading/saving attachments, etc.), but still
ironing out details.
svn path=/branches/kill-bonobo/; revision=37389
Diffstat (limited to 'e-util/e-util.c')
-rw-r--r-- | e-util/e-util.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/e-util/e-util.c b/e-util/e-util.c index c65fcbceaf..32f6169bd5 100644 --- a/e-util/e-util.c +++ b/e-util/e-util.c @@ -186,6 +186,33 @@ exit: } /** + * e_file_open_tmp: + * @name_used: location to store the actual named used, or %NULL + * @error: return location for a #GError, or %NULL + * + * Convenience function wraps g_file_open_tmp() but chooses a suitable + * filename template using both the package name and the user name. + * + * Returns: A file handle (as from open()) to the file opened for reading + * and writing. The file is opened in binary mode on platforms + * where there is a difference. The file handle should be closed + * with close(). In case of errors, -1 is returned and @error + * will be set. + **/ +gint +e_file_open_tmp (gchar **name_used, + GError **error) +{ + static gchar *template = NULL; + + if (G_UNLIKELY (template == NULL)) + template = g_strdup_printf ( + PACKAGE "-%s-XXXXXX", g_get_user_name ()); + + return g_file_open_tmp (template, name_used, error); +} + +/** * e_load_ui_definition: * @ui_manager: a #GtkUIManager * @basename: basename of the UI definition file |