/usr/include/evolution-3.4/mail/e-mail-tab-picker.h is in evolution-dev 3.4.4-3.
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 | /*
* Borrowed from Moblin-Web-Browser: The web browser for Moblin
* Copyright (c) 2009, Intel Corporation.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU Lesser General Public License,
* version 2.1, as published by the Free Software Foundation.
*
* This program is distributed in the hope it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef E_MAIL_TAB_PICKER_H
#define E_MAIL_TAB_PICKER_H
#include <clutter/clutter.h>
#include <mx/mx.h>
#include "e-mail-tab.h"
/* Standard GObject macros */
#define E_TYPE_MAIL_TAB_PICKER \
(e_mail_tab_picker_get_type ())
#define E_MAIL_TAB_PICKER(obj) \
(G_TYPE_CHECK_INSTANCE_CAST \
((obj), E_TYPE_MAIL_TAB_PICKER, EMailTabPicker))
#define E_MAIL_TAB_PICKER_CLASS(cls) \
(G_TYPE_CHECK_CLASS_CAST \
((cls), E_TYPE_MAIL_TAB_PICKER, EMailTabPickerClass))
#define E_MAIL_IS_TAB_PICKER(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE \
((obj), E_TYPE_MAIL_TAB_PICKER))
#define E_MAIL_IS_TAB_PICKER_CLASS(cls) \
(G_TYPE_CHECK_CLASS_TYPE \
((cls), E_TYPE_MAIL_TAB_PICKER))
#define E_MAIL_TAB_PICKER_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_CLASS \
((obj), E_TYPE_MAIL_TAB_PICKER, EMailTabPickerClass))
G_BEGIN_DECLS
typedef struct _EMailTabPicker EMailTabPicker;
typedef struct _EMailTabPickerClass EMailTabPickerClass;
typedef struct _EMailTabPickerPrivate EMailTabPickerPrivate;
struct _EMailTabPicker {
MxWidget parent;
EMailTabPickerPrivate *priv;
};
struct _EMailTabPickerClass {
MxWidgetClass parent_class;
void (*tab_activated) (EMailTabPicker *picker,
EMailTab *tab);
void (*chooser_clicked) (EMailTabPicker *picker);
};
GType e_mail_tab_picker_get_type (void) G_GNUC_CONST;
ClutterActor * e_mail_tab_picker_new (void);
void e_mail_tab_picker_add_tab (EMailTabPicker *picker,
EMailTab *tab,
gint position);
void e_mail_tab_picker_remove_tab (EMailTabPicker *picker,
EMailTab *tab);
GList * e_mail_tab_picker_get_tabs (EMailTabPicker *picker);
gint e_mail_tab_picker_get_n_tabs (EMailTabPicker *picker);
EMailTab * e_mail_tab_picker_get_tab (EMailTabPicker *picker,
gint tab);
gint e_mail_tab_picker_get_tab_no (EMailTabPicker *picker,
EMailTab *tab);
gint e_mail_tab_picker_get_current_tab
(EMailTabPicker *picker);
void e_mail_tab_picker_set_current_tab
(EMailTabPicker *picker,
gint tab);
void e_mail_tab_picker_reorder (EMailTabPicker *picker,
gint old_position,
gint new_position);
void e_mail_tab_picker_set_tab_width (EMailTabPicker *picker,
gint width);
gint e_mail_tab_picker_get_tab_width (EMailTabPicker *picker);
void e_mail_tab_picker_get_preferred_height
(EMailTabPicker *tab_picker,
gfloat for_width,
gfloat *min_height_p,
gfloat *natural_height_p,
gboolean with_previews);
void e_mail_tab_picker_set_preview_mode
(EMailTabPicker *picker,
gboolean preview);
gboolean e_mail_tab_picker_get_preview_mode
(EMailTabPicker *picker);
void e_mail_tab_picker_enable_drop (EMailTabPicker *picker,
gboolean enable);
G_END_DECLS
#endif /* E_MAIL_TAB_PICKER_H */
|