Updated Spanish translation
[evolution.git] / e-util / gal-a11y-e-table-column-header.h
blob4f62373331cb15dce471b13798dee1d747ed8025
1 /*
3 * This program is free software; you can redistribute it and/or modify it
4 * under the terms of the GNU Lesser General Public License as published by
5 * the Free Software Foundation.
7 * This program is distributed in the hope that it will be useful, but
8 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
9 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
10 * for more details.
12 * You should have received a copy of the GNU Lesser General Public License
13 * along with this program; if not, see <http://www.gnu.org/licenses/>.
16 * Authors:
17 * Li Yuan <li.yuan@sun.com>
19 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
23 #if !defined (__E_UTIL_H_INSIDE__) && !defined (LIBEUTIL_COMPILATION)
24 #error "Only <e-util/e-util.h> should be included directly."
25 #endif
27 #ifndef __GAL_A11Y_E_TABLE_COLUMN_HEADER_H__
28 #define __GAL_A11Y_E_TABLE_COLUMN_HEADER_H__
30 #include <atk/atkgobjectaccessible.h>
32 #include <e-util/e-table-col.h>
33 #include <e-util/e-table-item.h>
35 #define GAL_A11Y_TYPE_E_TABLE_COLUMN_HEADER (gal_a11y_e_table_column_header_get_type ())
36 #define GAL_A11Y_E_TABLE_COLUMN_HEADER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GAL_A11Y_TYPE_E_TABLE_COLUMN_HEADER, GalA11yETableColumnHeader))
37 #define GAL_A11Y_E_TABLE_COLUMN_HEADER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GAL_A11Y_TYPE_E_TABLE_COLUMN_HEADER, GalA11yETableColumnHeaderClass))
38 #define GAL_A11Y_IS_E_TABLE_COLUMN_HEADER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GAL_A11Y_TYPE_E_TABLE_COLUMN_HEADER))
39 #define GAL_A11Y_IS_E_TABLE_COLUMN_HEADER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GAL_A11Y_TYPE_E_TABLE_COLUMN_HEADER))
41 typedef struct _GalA11yETableColumnHeader GalA11yETableColumnHeader;
42 typedef struct _GalA11yETableColumnHeaderClass GalA11yETableColumnHeaderClass;
43 typedef struct _GalA11yETableColumnHeaderPrivate GalA11yETableColumnHeaderPrivate;
45 struct _GalA11yETableColumnHeader {
46 AtkGObjectAccessible parent;
49 struct _GalA11yETableColumnHeaderClass {
50 AtkGObjectAccessibleClass parent_class;
53 /* Standard Glib function */
54 GType gal_a11y_e_table_column_header_get_type (void);
55 AtkObject *gal_a11y_e_table_column_header_new (ETableCol *etc, ETableItem *item, AtkObject *parent);
56 void gal_a11y_e_table_column_header_init (void);
58 #endif /* __GAL_A11Y_E_TABLE_COLUMN_HEADER_H__ */