New NNTP authentication code.
[claws.git] / src / folderview.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999,2000 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
42         GtkItemFactory *mail_factory;
43         GtkItemFactory *imap_factory;
44         GtkItemFactory *news_factory;
45
46         GtkCTreeNode *selected;
47         GtkCTreeNode *opened;
48
49         gboolean open_folder;
50
51         GdkColor color_new;
52         GdkColor color_normal;
53
54         MainWindow   *mainwin;
55         SummaryView  *summaryview;
56 };
57
58 FolderView *folderview_create           (void);
59 void folderview_init                    (FolderView     *folderview);
60 void folderview_set                     (FolderView     *folderview);
61 void folderview_set_imap_account        (FolderView     *folderview);
62 void folderview_select                  (FolderView     *folderview,
63                                          FolderItem     *item);
64 void folderview_unselect                (FolderView     *folderview);
65 void folderview_select_next_unread      (FolderView     *folderview);
66 void folderview_update_msg_num          (FolderView     *folderview,
67                                          GtkCTreeNode   *row,
68                                          gint            new,
69                                          gint            unread,
70                                          gint            total);
71 void folderview_update_all              (void);
72
73 void folderview_update_item             (FolderItem     *item,
74                                          gboolean        update_summary);
75 void folderview_update_item_foreach     (GHashTable     *table);
76
77 void folderview_new_folder              (FolderView     *folderview);
78 void folderview_rename_folder           (FolderView     *folderview);
79 void folderview_delete_folder           (FolderView     *folderview);
80
81 #endif /* __FOLDERVIEW_H__ */