2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2012 Hiroyuki Yamamoto and the Claws Mail team
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 3 of the License, or
8 * (at your option) any later version.
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.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #ifndef __FOLDERVIEW_H__
21 #define __FOLDERVIEW_H__
23 typedef struct _FolderViewPopup FolderViewPopup
;
24 typedef struct _FolderColumnState FolderColumnState
;
28 #include "gtk/gtksctree.h"
30 #include "mainwindow.h"
31 #include "viewtypes.h"
42 #define N_FOLDER_COLS 4
44 struct _FolderColumnState
46 FolderColumnType type
;
52 GtkWidget
*scrolledwin
;
57 GtkCMCTreeNode
*selected
;
58 GtkCMCTreeNode
*opened
;
66 SummaryView
*summaryview
;
68 gint folder_update_callback_id
;
69 gint folder_item_update_callback_id
;
72 GSList
*nodes_to_recollapse
;
73 guint drag_timer
; /* timer id */
74 FolderItem
*drag_item
; /* dragged item */
75 GtkCMCTreeNode
*drag_node
; /* drag node */
77 GtkTargetList
*target_list
; /* DnD */
78 FolderColumnState col_state
[N_FOLDER_COLS
];
79 gint col_pos
[N_FOLDER_COLS
];
80 gint deferred_refresh_id
;
81 Folder
*scanning_folder
;
82 GtkUIManager
*ui_manager
;
83 GtkActionGroup
*popup_common_action_group
;
84 GtkActionGroup
*popup_specific_action_group
;
85 gint scroll_timeout_id
;
89 struct _FolderViewPopup
93 GtkActionEntry
*entries
;
95 GtkToggleActionEntry
*toggle_entries
;
96 gint n_toggle_entries
;
97 GtkRadioActionEntry
*radio_entries
;
100 void (*radio_callback
) (GtkAction
*action
, GtkRadioAction
*current
, gpointer data
);
101 void (*add_menuitems
) (GtkUIManager
*ui_manager
, FolderItem
*item
);
102 void (*set_sensitivity
) (GtkUIManager
*ui_manager
, FolderItem
*item
);
105 void folderview_initialize (void);
106 FolderView
*folderview_create (void);
107 void folderview_init (FolderView
*folderview
);
109 void folderview_set (FolderView
*folderview
);
110 void folderview_set_all (void);
112 void folderview_select (FolderView
*folderview
,
114 void folderview_unselect (FolderView
*folderview
);
115 void folderview_select_next_unread (FolderView
*folderview
,
116 gboolean force_open
);
117 void folderview_select_next_new (FolderView
*folderview
);
118 void folderview_select_next_marked (FolderView
*folderview
);
120 FolderItem
*folderview_get_selected_item(FolderView
*folderview
);
122 void folderview_rescan_tree (Folder
*folder
,
124 void folderview_fast_rescan_tree (Folder
*folder
);
125 gint
folderview_check_new (Folder
*folder
);
126 void folderview_check_new_all (void);
128 void folderview_update_all_updated (gboolean update_summary
);
130 void folderview_move_folder (FolderView
*folderview
,
131 FolderItem
*from_folder
,
132 FolderItem
*to_folder
,
135 void folderview_set_target_folder_color (gint color_op
);
137 void folderview_reinit_fonts (FolderView
*folderview
);
139 void folderview_reflect_prefs (void);
140 void folderview_register_popup (FolderViewPopup
*fpopup
);
141 void folderview_unregister_popup (FolderViewPopup
*fpopup
);
142 void folderview_update_search_icon (FolderItem
*item
,
144 void folderview_set_column_order (FolderView
*folderview
);
145 void folderview_finish_dnd (const gchar
*data
,
146 GdkDragContext
*drag_context
,
149 void folderview_close_opened (FolderView
*folderview
);
151 #endif /* __FOLDERVIEW_H__ */