/usr/include/claws-mail/folderview.h is in libclaws-mail-dev 3.13.2-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 | /*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
* Copyright (C) 1999-2012 Hiroyuki Yamamoto and the Claws Mail team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef __FOLDERVIEW_H__
#define __FOLDERVIEW_H__
typedef struct _FolderViewPopup FolderViewPopup;
typedef struct _FolderColumnState FolderColumnState;
#include <glib.h>
#include <gtk/gtk.h>
#include "gtk/gtksctree.h"
#include "mainwindow.h"
#include "viewtypes.h"
#include "folder.h"
typedef enum
{
F_COL_FOLDER,
F_COL_NEW,
F_COL_UNREAD,
F_COL_TOTAL
} FolderColumnType;
#define N_FOLDER_COLS 4
struct _FolderColumnState
{
FolderColumnType type;
gboolean visible;
};
struct _FolderView
{
GtkWidget *scrolledwin;
GtkWidget *ctree;
GHashTable *popups;
GtkCMCTreeNode *selected;
GtkCMCTreeNode *opened;
gboolean open_folder;
GdkColor color_new;
GdkColor color_op;
MainWindow *mainwin;
SummaryView *summaryview;
gint folder_update_callback_id;
gint folder_item_update_callback_id;
/* DND states */
GSList *nodes_to_recollapse;
guint drag_timer_id; /* timer id */
FolderItem *drag_item; /* dragged item */
GtkCMCTreeNode *drag_node; /* drag node */
GtkTargetList *target_list; /* DnD */
FolderColumnState col_state[N_FOLDER_COLS];
gint col_pos[N_FOLDER_COLS];
Folder *scanning_folder;
GtkUIManager *ui_manager;
GtkActionGroup *popup_common_action_group;
GtkActionGroup *popup_specific_action_group;
gint scroll_value;
guint deferred_refresh_id;
guint scroll_timeout_id;
guint postpone_select_id;
};
struct _FolderViewPopup
{
gchar *klass;
gchar *path;
GtkActionEntry *entries;
gint n_entries;
GtkToggleActionEntry *toggle_entries;
gint n_toggle_entries;
GtkRadioActionEntry *radio_entries;
gint n_radio_entries;
gint radio_default;
void (*radio_callback) (GtkAction *action, GtkRadioAction *current, gpointer data);
void (*add_menuitems) (GtkUIManager *ui_manager, FolderItem *item);
void (*set_sensitivity) (GtkUIManager *ui_manager, FolderItem *item);
};
void folderview_initialize (void);
FolderView *folderview_create (void);
void folderview_init (FolderView *folderview);
void folderview_set (FolderView *folderview);
void folderview_set_all (void);
void folderview_select (FolderView *folderview,
FolderItem *item);
void folderview_unselect (FolderView *folderview);
void folderview_select_next_with_flag (FolderView *folderview,
MsgPermFlags flag,
gboolean force_open);
FolderItem *folderview_get_selected_item(FolderView *folderview);
FolderItem *folderview_get_opened_item(FolderView *folderview);
void folderview_rescan_tree (Folder *folder,
gboolean rebuild);
gint folderview_check_new (Folder *folder);
void folderview_check_new_all (void);
void folderview_update_all_updated (gboolean update_summary);
void folderview_move_folder (FolderView *folderview,
FolderItem *from_folder,
FolderItem *to_folder,
gboolean copy);
void folderview_set_target_folder_color (gint color_op);
void folderview_reinit_fonts (FolderView *folderview);
void folderview_reflect_prefs (void);
void folderview_register_popup (FolderViewPopup *fpopup);
void folderview_unregister_popup (FolderViewPopup *fpopup);
void folderview_update_search_icon (FolderItem *item,
gboolean matches);
void folderview_set_column_order (FolderView *folderview);
void folderview_finish_dnd (const gchar *data,
GdkDragContext *drag_context,
guint time,
FolderItem *item);
void folderview_close_opened (FolderView *folderview);
#endif /* __FOLDERVIEW_H__ */
|