~ubuntu-branches/ubuntu/quantal/epiphany-extensions/quantal

« back to all changes in this revision

Viewing changes to extensions/tab-groups/ephy-tab-groups-extension.h

  • Committer: Bazaar Package Importer
  • Author(s): Frederic Peters
  • Date: 2011-04-14 19:04:24 UTC
  • mfrom: (1.1.43 upstream) (2.3.16 experimental)
  • Revision ID: james.westby@ubuntu.com-20110414190424-df2o8wz2pei97hbd
Tags: 3.0.0-2
debian/control.in: bump build-dep on epiphany.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *  Copyright © 2003 Marco Pesenti Gritti
3
 
 *  Copyright © 2003, 2004 Christian Persch
4
 
 *  Copyright © 2004 Justin Wake
5
 
 *
6
 
 *  This program is free software; you can redistribute it and/or modify
7
 
 *  it under the terms of the GNU General Public License as published by
8
 
 *  the Free Software Foundation; either version 2, or (at your option)
9
 
 *  any later version.
10
 
 *
11
 
 *  This program is distributed in the hope that it will be useful,
12
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
 *  GNU General Public License for more details.
15
 
 *
16
 
 *  You should have received a copy of the GNU General Public License
17
 
 *  along with this program; if not, write to the Free Software
18
 
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
 
 *
20
 
 *  $Id$
21
 
 */
22
 
 
23
 
#ifndef EPHY_TAB_GROUPS_EXTENSION_H
24
 
#define EPHY_TAB_GROUPS_EXTENSION_H
25
 
 
26
 
#include <glib-object.h>
27
 
#include <gmodule.h>
28
 
 
29
 
G_BEGIN_DECLS
30
 
 
31
 
#define EPHY_TYPE_TAB_GROUPS_EXTENSION                  (ephy_tab_groups_extension_get_type())
32
 
#define EPHY_TAB_GROUPS_EXTENSION(object)               (G_TYPE_CHECK_INSTANCE_CAST((object), EPHY_TYPE_TAB_GROUPS_EXTENSION, EphyTabGroupsExtension))
33
 
#define EPHY_TAB_GROUPS_EXTENSION_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST((klass), EPHY_TYPE_TAB_GROUPS_EXTENSION, EphyTabGroupsExtensionClass))
34
 
#define EPHY_IS_TAB_GROUPS_EXTENSION(object)            (G_TYPE_CHECK_INSTANCE_TYPE((object), EPHY_TYPE_TAB_GROUPS_EXTENSION))
35
 
#define EPHY_IS_TAB_GROUPS_EXTENSION_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE((klass), EPHY_TYPE_TAB_GROUPS_EXTENSION))
36
 
#define EPHY_TAB_GROUPS_EXTENSION_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS((obj), EPHY_TYPE_TAB_GROUPS_EXTENSION, EphyTabGroupsExtensionClass))
37
 
 
38
 
typedef struct _EphyTabGroupsExtension          EphyTabGroupsExtension;
39
 
typedef struct _EphyTabGroupsExtensionClass     EphyTabGroupsExtensionClass;
40
 
typedef struct _EphyTabGroupsExtensionPrivate   EphyTabGroupsExtensionPrivate;
41
 
 
42
 
struct _EphyTabGroupsExtensionClass
43
 
{
44
 
        GObjectClass    parent_class;
45
 
};
46
 
 
47
 
struct _EphyTabGroupsExtension
48
 
{
49
 
        GObject parent_object;
50
 
};
51
 
 
52
 
GType   ephy_tab_groups_extension_get_type      (void);
53
 
 
54
 
GType   ephy_tab_groups_extension_register_type (GTypeModule *module);
55
 
 
56
 
G_END_DECLS
57
 
 
58
 
#endif