Delay capturing MessageList state for a regen operation until the idle callback, so the caller has a chance to configure the MessageList first. Also, move the CamelFolderThread into the private structure and provide thread-safe internal accessor functions for it.
217 lines
6.4 KiB
C
217 lines
6.4 KiB
C
/*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) version 3.
|
|
*
|
|
* 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with the program; if not, see <http://www.gnu.org/licenses/>
|
|
*
|
|
*
|
|
* Authors:
|
|
* Jeffrey Stedfast <fejj@ximian.com>
|
|
*
|
|
* Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
|
|
*
|
|
*/
|
|
|
|
#ifndef _MESSAGE_LIST_H_
|
|
#define _MESSAGE_LIST_H_
|
|
|
|
#include <gtk/gtk.h>
|
|
#include <camel/camel.h>
|
|
|
|
#include <e-util/e-util.h>
|
|
#include <libemail-engine/e-mail-session.h>
|
|
|
|
/* Standard GObject macros */
|
|
#define MESSAGE_LIST_TYPE \
|
|
(message_list_get_type ())
|
|
#define MESSAGE_LIST(obj) \
|
|
(G_TYPE_CHECK_INSTANCE_CAST \
|
|
((obj), MESSAGE_LIST_TYPE, MessageList))
|
|
#define MESSAGE_LIST_CLASS(cls) \
|
|
(G_TYPE_CHECK_CLASS_CAST \
|
|
((cls), MESSAGE_LIST_TYPE, MessageListClass))
|
|
#define IS_MESSAGE_LIST(obj) \
|
|
(G_TYPE_CHECK_INSTANCE_TYPE \
|
|
((obj), MESSAGE_LIST_TYPE))
|
|
#define IS_MESSAGE_LIST_CLASS(cls) \
|
|
(G_TYPE_CHECK_CLASS_TYPE \
|
|
((cls), MESSAGE_LIST_TYPE))
|
|
#define MESSAGE_LIST_GET_CLASS(obj) \
|
|
(G_TYPE_INSTANCE_GET_CLASS \
|
|
((obj), MESSAGE_LIST_TYPE, MessageListClass))
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
enum {
|
|
COL_MESSAGE_STATUS,
|
|
COL_FLAGGED,
|
|
COL_SCORE,
|
|
COL_ATTACHMENT,
|
|
COL_FROM,
|
|
COL_SUBJECT,
|
|
COL_SENT,
|
|
COL_RECEIVED,
|
|
COL_TO,
|
|
COL_SIZE,
|
|
COL_FOLLOWUP_FLAG_STATUS,
|
|
COL_FOLLOWUP_FLAG,
|
|
COL_FOLLOWUP_DUE_BY,
|
|
COL_LOCATION, /* vfolder location? */
|
|
COL_SENDER,
|
|
COL_RECIPIENTS,
|
|
COL_MIXED_SENDER,
|
|
COL_MIXED_RECIPIENTS,
|
|
COL_LABELS,
|
|
|
|
/* subject with junk removed */
|
|
COL_SUBJECT_TRIMMED,
|
|
|
|
/* normalised strings */
|
|
COL_FROM_NORM,
|
|
COL_SUBJECT_NORM,
|
|
COL_TO_NORM,
|
|
|
|
COL_LAST,
|
|
|
|
/* Invisible columns */
|
|
COL_DELETED,
|
|
COL_UNREAD,
|
|
COL_COLOUR
|
|
};
|
|
|
|
#define MESSAGE_LIST_COLUMN_IS_ACTIVE(col) (col == COL_MESSAGE_STATUS || \
|
|
col == COL_FLAGGED)
|
|
|
|
typedef struct _MessageList MessageList;
|
|
typedef struct _MessageListClass MessageListClass;
|
|
typedef struct _MessageListPrivate MessageListPrivate;
|
|
|
|
struct _MessageList {
|
|
ETree parent;
|
|
|
|
MessageListPrivate *priv;
|
|
|
|
/* The table */
|
|
ETableExtras *extras;
|
|
|
|
GHashTable *uid_nodemap; /* uid (from info) -> tree node mapping */
|
|
|
|
GHashTable *normalised_hash;
|
|
|
|
/* Current search string, or %NULL */
|
|
gchar *search;
|
|
|
|
/* are we regenerating the message_list because set_folder
|
|
* was just called? */
|
|
guint just_set_folder : 1;
|
|
|
|
guint expand_all :1;
|
|
guint collapse_all :1;
|
|
|
|
/* frozen count */
|
|
guint frozen : 16;
|
|
|
|
/* Where the ETree cursor is. */
|
|
gchar *cursor_uid;
|
|
|
|
/* whether the last selection was on a single row or none/multi */
|
|
gboolean last_sel_single;
|
|
|
|
/* Row-selection and seen-marking timers */
|
|
guint idle_id, seen_id;
|
|
|
|
gchar *frozen_search; /* to save search took place while we were frozen */
|
|
};
|
|
|
|
struct _MessageListClass {
|
|
ETreeClass parent_class;
|
|
|
|
/* signals - select a message */
|
|
void (*message_selected) (MessageList *message_list, const gchar *uid);
|
|
void (*message_list_built) (MessageList *message_list);
|
|
void (*message_list_scrolled) (MessageList *message_list);
|
|
};
|
|
|
|
typedef enum {
|
|
MESSAGE_LIST_SELECT_NEXT = 0,
|
|
MESSAGE_LIST_SELECT_PREVIOUS = 1,
|
|
MESSAGE_LIST_SELECT_DIRECTION = 1, /* direction mask */
|
|
MESSAGE_LIST_SELECT_WRAP = 1<<1 /* option bit */
|
|
} MessageListSelectDirection;
|
|
|
|
GType message_list_get_type (void);
|
|
GtkWidget * message_list_new (EMailSession *session);
|
|
EMailSession * message_list_get_session (MessageList *message_list);
|
|
CamelFolder * message_list_ref_folder (MessageList *message_list);
|
|
void message_list_set_folder (MessageList *message_list,
|
|
CamelFolder *folder);
|
|
GtkTargetList * message_list_get_copy_target_list
|
|
(MessageList *message_list);
|
|
GtkTargetList * message_list_get_paste_target_list
|
|
(MessageList *message_list);
|
|
void message_list_set_expanded_default
|
|
(MessageList *message_list,
|
|
gboolean expanded_default);
|
|
gboolean message_list_get_group_by_threads
|
|
(MessageList *message_list);
|
|
void message_list_set_group_by_threads
|
|
(MessageList *message_list,
|
|
gboolean group_by_threads);
|
|
gboolean message_list_get_show_deleted (MessageList *message_list);
|
|
void message_list_set_show_deleted (MessageList *message_list,
|
|
gboolean show_deleted);
|
|
gboolean message_list_get_thread_latest (MessageList *message_list);
|
|
void message_list_set_thread_latest (MessageList *message_list,
|
|
gboolean thread_latest);
|
|
gboolean message_list_get_thread_subject (MessageList *message_list);
|
|
void message_list_set_thread_subject (MessageList *message_list,
|
|
gboolean thread_subject);
|
|
void message_list_freeze (MessageList *message_list);
|
|
void message_list_thaw (MessageList *message_list);
|
|
GPtrArray * message_list_get_selected (MessageList *message_list);
|
|
void message_list_set_selected (MessageList *message_list,
|
|
GPtrArray *uids);
|
|
gboolean message_list_select (MessageList *message_list,
|
|
MessageListSelectDirection direction,
|
|
guint32 flags,
|
|
guint32 mask);
|
|
gboolean message_list_can_select (MessageList *message_list,
|
|
MessageListSelectDirection direction,
|
|
guint32 flags,
|
|
guint32 mask);
|
|
void message_list_select_uid (MessageList *message_list,
|
|
const gchar *uid,
|
|
gboolean with_fallback);
|
|
void message_list_select_next_thread (MessageList *message_list);
|
|
void message_list_select_prev_thread (MessageList *message_list);
|
|
void message_list_select_all (MessageList *message_list);
|
|
void message_list_select_thread (MessageList *message_list);
|
|
void message_list_select_subthread (MessageList *message_list);
|
|
void message_list_copy (MessageList *message_list,
|
|
gboolean cut);
|
|
void message_list_paste (MessageList *message_list);
|
|
guint message_list_count (MessageList *message_list);
|
|
guint message_list_selected_count (MessageList *message_list);
|
|
void message_list_set_threaded_expand_all
|
|
(MessageList *message_list);
|
|
void message_list_set_threaded_collapse_all
|
|
(MessageList *message_list);
|
|
void message_list_set_search (MessageList *message_list,
|
|
const gchar *search);
|
|
void message_list_save_state (MessageList *message_list);
|
|
|
|
void message_list_sort_uids (MessageList *message_list,
|
|
GPtrArray *uids);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* _MESSAGE_LIST_H_ */
|