2007-12-17 Srinivasa Ragavan <sragavan@novell.com> ** Non-intrusive errror reporting and basic logging support. * em-folder-browser.c: (emfb_help_debug): Invoke the debug menu. * evolution-mail.schemas.in: Schema for error timeout and level. * mail-component.c: (mail_component_init), (render_pixbuf), (render_level), (render_date), (append_logs), (spin_value_changed), (mail_component_show_logger): Handle the lifecycle of the logger. * mail-component.h: Api to show the logger. * mail-config.c: (gconf_error_time_changed), (gconf_error_level_changed), (mail_config_init), (mail_config_get_error_timeout), (mail_config_get_error_level): Load and get the error time and level. * mail-config.h: * mail-mt.c: (mail_msg_set_cancelable), (mail_msg_new), (end_event_callback), (mail_msg_free), (mail_msg_check_error), (operation_cancel), (do_op_status): Revamp the error handling. * mail-mt.h: * mail-ops.c: (send_queue_send), (mail_send_queue): Handle the send/receive case of error reporting separately. * mail-send-recv.c: (free_send_info), (mail_send): 2007-12-17 Srinivasa Ragavan <sragavan@novell.com> ** Revamped Activity handler and task bar/widget for non-intrusive error reporting * e-activity-handler.c: (activity_info_new), (activity_info_free), (task_widget_new_from_activity_info), (setup_task_bar), (e_activity_handler_init), (e_activity_handler_set_error_flush_time), (e_activity_handler_set_logger), (cancel_wrapper), (e_activity_handler_cancelable_operation_started), (e_activity_handler_operation_started), (handle_error), (error_cleanup), (e_activity_handler_make_error), (e_activity_handler_operation_set_error), (e_activity_handler_operation_progressing), (e_activity_handler_operation_finished): * e-activity-handler.h: * e-task-bar.c: (e_task_bar_prepend_task), (e_task_bar_remove_task_from_id), (e_task_bar_remove_task), (e_task_bar_get_task_widget_from_id): * e-task-bar.h: * e-task-widget.c: (e_task_widget_init), (button_press_event_cb), (prepare_popup), (e_task_widget_construct), (e_task_widget_new_with_cancel), (e_task_widget_new), (e_task_widget_update_image): * e-task-widget.h: 2007-12-17 Srinivasa Ragavan <sragavan@novell.com> * Makefile.am: Add e-logger.[ch] to compilation * e-error.c: (e_error_newv): Add primary/secondary text to the error dialog to the gobject as data. * e-logger.[ch]: A new logger provision Evolution. 2007-12-17 Srinivasa Ragavan <sragavan@novell.com> * evolution-mail-global.xml: Add Debug Log menu item for mailer. * evolution.xml: Add place holder for Debug menu item. svn path=/trunk/; revision=34712
107 lines
3.9 KiB
C
107 lines
3.9 KiB
C
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
|
|
/* mail-component.h
|
|
*
|
|
* Copyright (C) 2003 Ximian Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of version 2 of the GNU General Public
|
|
* License as published by the Free Software Foundation.
|
|
*
|
|
* 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., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*
|
|
* Authors:
|
|
* Michael Zucchi <notzed@ximian.com>
|
|
* Jeffrey Stedfast <fejj@ximian.com>
|
|
* Ettore Perazzoli <ettore@ximian.com>
|
|
*/
|
|
|
|
#ifndef _MAIL_COMPONENT_H_
|
|
#define _MAIL_COMPONENT_H_
|
|
|
|
#include <bonobo/bonobo-object.h>
|
|
#include "shell/evolution-component.h"
|
|
#include "Evolution-Mail.h"
|
|
|
|
struct _CamelStore;
|
|
|
|
#define MAIL_TYPE_COMPONENT (mail_component_get_type ())
|
|
#define MAIL_COMPONENT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MAIL_TYPE_COMPONENT, MailComponent))
|
|
#define MAIL_COMPONENT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MAIL_TYPE_COMPONENT, MailComponentClass))
|
|
#define MAIL_IS_COMPONENT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MAIL_TYPE_COMPONENT))
|
|
#define MAIL_IS_COMPONENT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), MAIL_TYPE_COMPONENT))
|
|
|
|
typedef struct _MailComponent MailComponent;
|
|
typedef struct _MailComponentPrivate MailComponentPrivate;
|
|
typedef struct _MailComponentClass MailComponentClass;
|
|
|
|
enum _mail_component_folder_t {
|
|
MAIL_COMPONENT_FOLDER_INBOX = 0,
|
|
MAIL_COMPONENT_FOLDER_DRAFTS,
|
|
MAIL_COMPONENT_FOLDER_OUTBOX,
|
|
MAIL_COMPONENT_FOLDER_SENT,
|
|
MAIL_COMPONENT_FOLDER_LOCAL_INBOX,
|
|
};
|
|
|
|
struct _MailComponent {
|
|
EvolutionComponent parent;
|
|
|
|
MailComponentPrivate *priv;
|
|
};
|
|
|
|
struct _MailComponentClass {
|
|
EvolutionComponentClass parent_class;
|
|
|
|
POA_GNOME_Evolution_MailComponent__epv epv;
|
|
};
|
|
|
|
GType mail_component_get_type (void);
|
|
|
|
MailComponent *mail_component_peek (void);
|
|
|
|
/* NOTE: Using NULL as the component implies using the default component */
|
|
const char *mail_component_peek_base_directory (MailComponent *component);
|
|
struct _RuleContext *mail_component_peek_search_context (MailComponent *component);
|
|
struct _EActivityHandler *mail_component_peek_activity_handler (MailComponent *component);
|
|
|
|
struct _CamelSession *mail_component_peek_session(MailComponent *);
|
|
|
|
void mail_component_add_store (MailComponent *component,
|
|
struct _CamelStore *store,
|
|
const char *name);
|
|
struct _CamelStore *mail_component_load_store_by_uri (MailComponent *component,
|
|
const char *uri,
|
|
const char *name);
|
|
|
|
void mail_component_remove_store (MailComponent *component,
|
|
struct _CamelStore *store);
|
|
void mail_component_remove_store_by_uri (MailComponent *component,
|
|
const char *uri);
|
|
|
|
int mail_component_get_store_count (MailComponent *component);
|
|
void mail_component_stores_foreach (MailComponent *component,
|
|
GHFunc func,
|
|
void *data);
|
|
|
|
void mail_component_remove_folder (MailComponent *component, struct _CamelStore *store, const char *path);
|
|
|
|
struct _EMFolderTreeModel *mail_component_peek_tree_model (MailComponent *component);
|
|
|
|
struct _CamelStore *mail_component_peek_local_store (MailComponent *mc);
|
|
struct _CamelFolder *mail_component_get_folder(MailComponent *mc, enum _mail_component_folder_t id);
|
|
const char *mail_component_get_folder_uri(MailComponent *mc, enum _mail_component_folder_t id);
|
|
|
|
int status_check (GNOME_Evolution_ShellState shell_state);
|
|
|
|
void mail_indicate_new_mail (gboolean have_new_mail);
|
|
void mail_component_show_logger (gpointer);
|
|
|
|
#endif /* _MAIL_COMPONENT_H_ */
|