0.8.11claws135
[claws.git] / src / folderview.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2002 Hiroyuki Yamamoto
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __FOLDERVIEW_H__
21 #define __FOLDERVIEW_H__
22
23 #include <glib.h>
24 #include <gtk/gtkwidget.h>
25 #include <gtk/gtkctree.h>
26
27 #include "folder.h"
28
29 typedef struct _FolderView      FolderView;
30
31 #include "mainwindow.h"
32 #include "summaryview.h"
33
34 struct _FolderView
35 {
36         GtkWidget *scrolledwin;
37         GtkWidget *ctree;
38         GtkWidget *mail_popup;
39         GtkWidget *imap_popup;
40         GtkWidget *news_popup;
41         GtkWidget *mbox_popup;
42
43         GtkItemFactory *mail_factory;
44         GtkItemFactory *imap_factory;
45         GtkItemFactory *news_factory;
46         GtkItemFactory *mbox_factory;
47
48         GtkCTreeNode *selected;
49         GtkCTreeNode *opened;
50
51         gboolean open_folder;
52
53         GdkColor color_new;
54         GdkColor color_op;
55
56         MainWindow   *mainwin;
57         SummaryView  *summaryview;
58
59         gint folder_item_update_callback_id;
60         
61         /* for drag and drop */
62         GSList *nodes_to_recollapse;
63 };
64
65 FolderView *folderview_create           (void);
66 void folderview_init                    (FolderView     *folderview);
67 void folderview_set                     (FolderView     *folderview);
68 void folderview_set_all                 (void);
69 void folderview_select                  (FolderView     *folderview,
70                                          FolderItem     *item);
71 void folderview_unselect                (FolderView     *folderview);
72 void folderview_select_next_unread      (FolderView     *folderview);
73 void folderview_update_msg_num          (FolderView     *folderview,
74                                          GtkCTreeNode   *row);
75 void folderview_rescan_tree             (Folder         *folder);
76 void folderview_rescan_all              (void);
77 gint folderview_check_new               (Folder         *folder);
78 void folderview_check_new_all           (void);
79
80 void folderview_new_folder              (FolderView     *folderview);
81 void folderview_rename_folder           (FolderView     *folderview);
82 void folderview_delete_folder           (FolderView     *folderview);
83
84 void folderview_set_target_folder_color (gint           color_op);
85
86 void folderview_reflect_prefs_pixmap_theme      (FolderView *folderview);
87 #endif /* __FOLDERVIEW_H__ */