~ubuntu-branches/ubuntu/wily/epiphany-browser/wily

1 by Sebastien Bacher
Import upstream version 1.9.2
1
/*
1.1.15 by Sebastien Bacher
Import upstream version 2.16.1
2
 *  Copyright © 2005 Christian Persch
1 by Sebastien Bacher
Import upstream version 1.9.2
3
 *
4
 *  This program is free software; you can redistribute it and/or modify
5
 *  it under the terms of the GNU General Public License as published by
6
 *  the Free Software Foundation; either version 2, or (at your option)
7
 *  any later version.
8
 *
9
 *  This program is distributed in the hope that it will be useful,
10
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 *  GNU General Public License for more details.
13
 *
14
 *  You should have received a copy of the GNU General Public License
15
 *  along with this program; if not, write to the Free Software
1.1.24 by Sebastien Bacher
Import upstream version 2.18.1
16
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
1 by Sebastien Bacher
Import upstream version 1.9.2
17
 *
18
 */
19
1.1.48 by Gustavo Noronha Silva
Import upstream version 2.28.0
20
#if !defined (__EPHY_EPIPHANY_H_INSIDE__) && !defined (EPIPHANY_COMPILATION)
21
#error "Only <epiphany/epiphany.h> can be included directly."
22
#endif
23
1 by Sebastien Bacher
Import upstream version 1.9.2
24
#ifndef EPHY_ACTION_HELPER_H
25
#define EPHY_ACTION_HELPER_H
26
1.1.39 by Sebastien Bacher
Import upstream version 2.23.91
27
#include <gtk/gtk.h>
1 by Sebastien Bacher
Import upstream version 1.9.2
28
29
G_BEGIN_DECLS
30
1.1.59 by Sebastian Dröge
Import upstream version 2.30.3
31
enum
32
{
33
	SENS_FLAG = 1 << 0
34
};
35
1 by Sebastien Bacher
Import upstream version 1.9.2
36
void ephy_action_change_sensitivity_flags (GtkAction *action,
37
					   guint flags,
38
					   gboolean set);
39
40
G_END_DECLS
41
42
#endif /* !EPHY_ACTION_HELPER_H */