diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-08-13 05:00:58 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-08-13 05:00:58 +0800 |
commit | 0e39518ba7b473c1524e47a0b2618b503e116326 (patch) | |
tree | 4df02e1ebc5d029a5041e15f3ae03fb443e17108 | |
parent | f3e71a93f56b1d14768059114df2fd3978f5abfb (diff) | |
download | gsoc2013-evolution-0e39518ba7b473c1524e47a0b2618b503e116326.tar gsoc2013-evolution-0e39518ba7b473c1524e47a0b2618b503e116326.tar.gz gsoc2013-evolution-0e39518ba7b473c1524e47a0b2618b503e116326.tar.bz2 gsoc2013-evolution-0e39518ba7b473c1524e47a0b2618b503e116326.tar.lz gsoc2013-evolution-0e39518ba7b473c1524e47a0b2618b503e116326.tar.xz gsoc2013-evolution-0e39518ba7b473c1524e47a0b2618b503e116326.tar.zst gsoc2013-evolution-0e39518ba7b473c1524e47a0b2618b503e116326.zip |
Set the file-selection window icon. Fixes the mailer part of bug #7368.
2002-08-12 Jeffrey Stedfast <fejj@ximian.com>
* e-msg-composer-select-file.c (create_file_selection): Set the
file-selection window icon. Fixes the mailer part of bug #7368.
* e-msg-composer-attachment.c (e_msg_composer_attachment_new):
Don't call new_from_mime_part() since that function now does some
copying of the mime part rather than simply reffing it.
(e_msg_composer_attachment_new_from_mime_part): Make a copy of the
MIME part so that if the message that this part belongs to gets
deleted from the the remote store, the composer will still have a
copy of it. Fixes bug #20308.
svn path=/trunk/; revision=17763
-rw-r--r-- | composer/ChangeLog | 3 | ||||
-rw-r--r-- | composer/e-msg-composer-attachment-bar.c | 31 | ||||
-rw-r--r-- | composer/e-msg-composer-attachment.c | 31 | ||||
-rw-r--r-- | composer/e-msg-composer-select-file.c | 49 | ||||
-rw-r--r-- | composer/e-msg-composer.c | 3 |
5 files changed, 64 insertions, 53 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index 89f7470b67..930dc464cf 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,5 +1,8 @@ 2002-08-12 Jeffrey Stedfast <fejj@ximian.com> + * e-msg-composer-select-file.c (create_file_selection): Set the + file-selection window icon. Fixes the mailer part of bug #7368. + * e-msg-composer-attachment.c (e_msg_composer_attachment_new): Don't call new_from_mime_part() since that function now does some copying of the mime part rather than simply reffing it. diff --git a/composer/e-msg-composer-attachment-bar.c b/composer/e-msg-composer-attachment-bar.c index 5aaf614765..2a8a3e8437 100644 --- a/composer/e-msg-composer-attachment-bar.c +++ b/composer/e-msg-composer-attachment-bar.c @@ -1,26 +1,27 @@ /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ -/* e-msg-composer-attachment-bar.c +/* + * Authors: Ettore Perazzoli <ettore@ximian.com> + * Jeffrey Stedfast <fejj@ximian.com> * - * Copyright (C) 1999 Ximian, Inc. + * Copyright 1999-2002 Ximian, Inc. (www.ximian.com) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of version 2 of the GNU General Public - * published by the Free Software Foundation; either version 2 of the - * License as published by the Free Software Foundation. + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. * - * You should have received a copy of the GNU General Public - * License along with this program; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA. * - * Author: Ettore Perazzoli */ + #ifdef HAVE_CONFIG_H #include <config.h> #endif diff --git a/composer/e-msg-composer-attachment.c b/composer/e-msg-composer-attachment.c index e0c2bd1f0f..c0f1ef9b47 100644 --- a/composer/e-msg-composer-attachment.c +++ b/composer/e-msg-composer-attachment.c @@ -1,26 +1,27 @@ /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ -/* e-msg-composer-attachment.c +/* + * Authors: Ettore Perazzoli <ettore@ximian.com> + * Jeffrey Stedfast <fejj@ximian.com> * - * Copyright (C) 1999,2001 Ximian, Inc. + * Copyright 1999-2002 Ximian, Inc. (www.ximian.com) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of version 2 of the GNU General Public - * published by the Free Software Foundation; either version 2 of the - * License as published by the Free Software Foundation. + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. * - * You should have received a copy of the GNU General Public - * License along with this program; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA. * - * Author: Ettore Perazzoli */ + /* This is the object representing an email attachment. It is implemented as a GtkObject to make it easier for the application to handle it. For example, the "changed" signal is emitted whenever something changes in the diff --git a/composer/e-msg-composer-select-file.c b/composer/e-msg-composer-select-file.c index e46c4ad2be..46bbc28b3a 100644 --- a/composer/e-msg-composer-select-file.c +++ b/composer/e-msg-composer-select-file.c @@ -1,26 +1,27 @@ /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ -/* e-msg-composer-select-file.c +/* + * Authors: Ettore Perazzoli <ettore@ximian.com> + * Jeffrey Stedfast <fejj@ximian.com> * - * Copyright (C) 2000 Ximian, Inc. + * Copyright 2002 Ximian, Inc. (www.ximian.com) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of version 2 of the GNU General Public - * published by the Free Software Foundation; either version 2 of the - * License as published by the Free Software Foundation. + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. * - * You should have received a copy of the GNU General Public - * License along with this program; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA. * - * Author: Ettore Perazzoli */ + #ifdef HAVE_CONFIG_H #include <config.h> #endif @@ -31,6 +32,11 @@ #include <gtk/gtkmain.h> #include <gtk/gtksignal.h> #include <gal/widgets/e-file-selection.h> + +#include <libgnome/gnome-defs.h> +#include <libgnomeui/gnome-uidefs.h> +#include <libgnomeui/gnome-window-icon.h> + #include "e-msg-composer-select-file.h" @@ -48,7 +54,7 @@ confirm (FileSelectionInfo *info) int i; file_list = e_file_selection_get_filenames (E_FILE_SELECTION (info->widget)); - + if (!info->selected_files) info->selected_files = g_ptr_array_new (); @@ -130,15 +136,16 @@ create_file_selection (EMsgComposer *composer, gboolean multiple) info = g_new (FileSelectionInfo, 1); widget = e_file_selection_new (NULL); + gtk_window_set_wmclass (GTK_WINDOW (widget), "fileselection", + "Evolution:composer"); + gnome_window_icon_set_from_file (GTK_WINDOW (widget), EVOLUTION_DATADIR + "/images/evolution/compose-message.png"); + path = g_strdup_printf ("%s/", g_get_home_dir ()); gtk_file_selection_set_filename (GTK_FILE_SELECTION (widget), path); g_free (path); - gtk_window_set_wmclass (GTK_WINDOW (widget), "fileselection", - "Evolution:composer"); - gtk_object_set (GTK_OBJECT (widget), - "multiple", multiple, - NULL); + gtk_object_set (GTK_OBJECT (widget), "multiple", multiple, NULL); ok_button = GTK_FILE_SELECTION (widget)->ok_button; cancel_button = GTK_FILE_SELECTION (widget)->cancel_button; diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index f8c3b7ff12..c5e7fb6de6 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -1136,8 +1136,7 @@ show_attachments (EMsgComposer *composer, } static void -save (EMsgComposer *composer, - const char *file_name) +save (EMsgComposer *composer, const char *file_name) { CORBA_Environment ev; char *my_file_name; |