
2000-11-30 Not Zed <NotZed@HelixCode.com> * mail-ops.c (cleanup_load_folder): Set threaded view before setting the folder (cleanup some flash ons tartup). * message-list.c (message_list_init): Initialise a mempool for uid string storage. (new_id_from_uid): Added messagelist arg, allocate strings from uid_pool. (new_id_from_subject): Same. Fixed all callers. (remove_node_diff): Dont free uid here. (build_flat_diff): Nor here. (clear_tree): Flush the mempool, rather than freeing the id's directly. (free_tree_ids): Removed, no longer required. (free_tree_ids): Likewise. (message_list_init): Dont connect to the table destroy signal anymore to free the uid table. (message_list_destroy): Free the uid pool here. (*): Use accessors for messageid stuff. (content_is_attachment): Removed, no longer required. (ml_tree_value_at): Get the attachment flag directly from the summary. (ml_tree_value_at): For 'fake' nodes, try and do something better than "?" for from, to, and size. (subtree_size): New function, add up the total size of a subtree. (subtree_earliest): Get the earliest date from a subtree. (ml_tree_value_at): Return earliest date sent/received for fake nodes. (ml_tree_value_at): Return something to mark a fake subject line as a fake subject, although i dont know, i guess this buggers up sorting ... (subtree_size): Check the info node is still there. (subtree_earliest): Same here. (subtree_unread): And here. The info node might vanish if the folder has changed/is changing and we try and redraw stuff while its doing it. (message_list_drag_data_get): Use accessors. svn path=/trunk/; revision=6732
106 lines
2.9 KiB
C
106 lines
2.9 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
#ifndef _MESSAGE_LIST_H_
|
|
#define _MESSAGE_LIST_H_
|
|
|
|
#include <gnome.h>
|
|
#include "mail-types.h"
|
|
#include <bonobo/bonobo-main.h>
|
|
#include <bonobo/bonobo-object.h>
|
|
#include <bonobo/bonobo-ui-component.h>
|
|
#include <gal/e-table/e-table-scrolled.h>
|
|
#include <gal/e-table/e-table-simple.h>
|
|
#include <gal/e-table/e-tree-simple.h>
|
|
#include <gal/e-table/e-cell-text.h>
|
|
#include <gal/e-table/e-cell-toggle.h>
|
|
#include <gal/e-table/e-cell-checkbox.h>
|
|
#include <gal/e-table/e-cell-tree.h>
|
|
|
|
#define MESSAGE_LIST_TYPE (message_list_get_type ())
|
|
#define MESSAGE_LIST(o) (GTK_CHECK_CAST ((o), MESSAGE_LIST_TYPE, MessageList))
|
|
#define MESSAGE_LIST_CLASS(k) (GTK_CHECK_CLASS_CAST((k), MESSAGE_LIST_TYPE, MessageListClass))
|
|
#define IS_MESSAGE_LIST(o) (GTK_CHECK_TYPE ((o), MESSAGE_LIST_TYPE))
|
|
#define IS_MESSAGE_LIST_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), MESSAGE_LIST_TYPE))
|
|
|
|
typedef struct _Renderer Renderer;
|
|
|
|
enum {
|
|
COL_MESSAGE_STATUS,
|
|
COL_FLAGGED,
|
|
COL_SCORE,
|
|
COL_ATTACHMENT,
|
|
COL_FROM,
|
|
COL_SUBJECT,
|
|
COL_SENT,
|
|
COL_RECEIVED,
|
|
COL_TO,
|
|
COL_SIZE,
|
|
|
|
COL_LAST,
|
|
|
|
/* Invisible columns */
|
|
COL_DELETED,
|
|
COL_UNREAD,
|
|
COL_COLOUR,
|
|
};
|
|
|
|
struct _MessageList {
|
|
BonoboObject parent;
|
|
|
|
ETableModel *table_model;
|
|
|
|
ETreePath *tree_root;
|
|
|
|
GtkWidget *etable;
|
|
|
|
CamelFolder *folder;
|
|
|
|
GHashTable *uid_rowmap; /* key is the uid, value is the row number.
|
|
Note: The key string is owned by table_model (in uid_pool) */
|
|
struct _EMemPool *uid_pool; /* mempool to hold uid strings */
|
|
|
|
char *search; /* current search string */
|
|
|
|
gboolean threaded; /* are we displaying threaded view? */
|
|
int cursor_row;
|
|
const char *cursor_uid;
|
|
|
|
/* row-selection and seen-marking timers */
|
|
guint idle_id, seen_id;
|
|
};
|
|
|
|
typedef struct {
|
|
BonoboObjectClass parent_class;
|
|
|
|
/* signals - select a message */
|
|
void (*message_selected)(MessageList *ml, const char *uid);
|
|
} MessageListClass;
|
|
|
|
typedef void (*MessageListForeachFunc) (MessageList *message_list,
|
|
const char *uid,
|
|
gpointer user_data);
|
|
|
|
typedef enum {
|
|
MESSAGE_LIST_SELECT_NEXT = 1,
|
|
MESSAGE_LIST_SELECT_PREVIOUS = -1
|
|
} MessageListSelectDirection;
|
|
|
|
GtkType message_list_get_type (void);
|
|
BonoboObject *message_list_new (void);
|
|
void message_list_set_folder (MessageList *message_list,
|
|
CamelFolder *camel_folder);
|
|
GtkWidget *message_list_get_widget (MessageList *message_list);
|
|
|
|
void message_list_foreach (MessageList *message_list,
|
|
MessageListForeachFunc callback,
|
|
gpointer user_data);
|
|
|
|
void message_list_select (MessageList *message_list,
|
|
int base_row,
|
|
MessageListSelectDirection direction,
|
|
guint32 flags, guint32 mask);
|
|
|
|
void message_list_set_threaded(MessageList *ml, gboolean threaded);
|
|
void message_list_set_search(MessageList *ml, const char *search);
|
|
|
|
#endif /* _MESSAGE_LIST_H_ */
|