~noskcaj/ubuntu/trusty/gnome-documents/3.10.2

« back to all changes in this revision

Viewing changes to egg-list-box/egg-flow-box-accessible.h

  • Committer: Package Import Robot
  • Author(s): Andreas Henriksson, Thomas Bechtold
  • Date: 2013-04-04 13:32:08 UTC
  • mfrom: (3.1.4 experimental)
  • Revision ID: package-import@ubuntu.com-20130404133208-n19gqczi05z31ogb
Tags: 3.8.0-1
[ Thomas Bechtold ]
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013 Red Hat, Inc.
 
3
 *
 
4
 * This library is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Lesser General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2 of the License, or (at your option) any later version.
 
8
 *
 
9
 * This library 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 GNU
 
12
 * Lesser General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Lesser General Public
 
15
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 
16
 */
 
17
 
 
18
#ifndef __EGG_FLOW_BOX_ACCESSIBLE_H__
 
19
#define __EGG_FLOW_BOX_ACCESSIBLE_H__
 
20
 
 
21
#include <gtk/gtk-a11y.h>
 
22
 
 
23
G_BEGIN_DECLS
 
24
 
 
25
#define EGG_TYPE_FLOW_BOX_ACCESSIBLE                   (egg_flow_box_accessible_get_type ())
 
26
#define EGG_FLOW_BOX_ACCESSIBLE(obj)                   (G_TYPE_CHECK_INSTANCE_CAST ((obj), EGG_TYPE_FLOW_BOX_ACCESSIBLE, EggFlowBoxAccessible))
 
27
#define EGG_FLOW_BOX_ACCESSIBLE_CLASS(klass)           (G_TYPE_CHECK_CLASS_CAST ((klass), EGG_TYPE_FLOW_BOX_ACCESSIBLE, EggFlowBoxAccessibleClass))
 
28
#define EGG_IS_FLOW_BOX_ACCESSIBLE(obj)                (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EGG_TYPE_FLOW_BOX_ACCESSIBLE))
 
29
#define EGG_IS_FLOW_BOX_ACCESSIBLE_CLASS(klass)        (G_TYPE_CHECK_CLASS_TYPE ((klass), EGG_TYPE_FLOW_BOX_ACCESSIBLE))
 
30
#define EGG_FLOW_BOX_ACCESSIBLE_GET_CLASS(obj)         (G_TYPE_INSTANCE_GET_CLASS ((obj), EGG_TYPE_FLOW_BOX_ACCESSIBLE, EggFlowBoxAccessibleClass))
 
31
 
 
32
typedef struct _EggFlowBoxAccessible        EggFlowBoxAccessible;
 
33
typedef struct _EggFlowBoxAccessibleClass   EggFlowBoxAccessibleClass;
 
34
typedef struct _EggFlowBoxAccessiblePrivate EggFlowBoxAccessiblePrivate;
 
35
 
 
36
struct _EggFlowBoxAccessible
 
37
{
 
38
  GtkContainerAccessible parent;
 
39
 
 
40
  EggFlowBoxAccessiblePrivate *priv;
 
41
};
 
42
 
 
43
struct _EggFlowBoxAccessibleClass
 
44
{
 
45
  GtkContainerAccessibleClass parent_class;
 
46
};
 
47
 
 
48
GType egg_flow_box_accessible_get_type (void);
 
49
 
 
50
void _egg_flow_box_accessible_selection_changed (GtkWidget *box);
 
51
void _egg_flow_box_accessible_update_cursor     (GtkWidget *box, GtkWidget *child);
 
52
 
 
53
G_END_DECLS
 
54
 
 
55
#endif /* __EGG_FLOW_BOX_ACCESSIBLE_H__ */