aboutsummaryrefslogtreecommitdiffstats
path: root/a11y/e-table/gal-a11y-e-cell-popup.h
diff options
context:
space:
mode:
authorAndrew Wu <yang.wu@sun.com>2003-12-08 13:52:32 +0800
committerBolian Yin <byin@src.gnome.org>2003-12-08 13:52:32 +0800
commitceb9cedfc48b4537e5e84e9bc80f26c06ba943c1 (patch)
tree3589a75190a2f95b1b50e34b859111c88918190f /a11y/e-table/gal-a11y-e-cell-popup.h
parent6408402a80d01fc9d59c3b1bca8c2db35441f0fd (diff)
downloadgsoc2013-evolution-ceb9cedfc48b4537e5e84e9bc80f26c06ba943c1.tar
gsoc2013-evolution-ceb9cedfc48b4537e5e84e9bc80f26c06ba943c1.tar.gz
gsoc2013-evolution-ceb9cedfc48b4537e5e84e9bc80f26c06ba943c1.tar.bz2
gsoc2013-evolution-ceb9cedfc48b4537e5e84e9bc80f26c06ba943c1.tar.lz
gsoc2013-evolution-ceb9cedfc48b4537e5e84e9bc80f26c06ba943c1.tar.xz
gsoc2013-evolution-ceb9cedfc48b4537e5e84e9bc80f26c06ba943c1.tar.zst
gsoc2013-evolution-ceb9cedfc48b4537e5e84e9bc80f26c06ba943c1.zip
Fixed #50844
2003-12-08 Andrew Wu <yang.wu@sun.com> Fixed #50844 * gal/a11y/e-table/gal-a11y-e-cell-popup.c: * gal/a11y/e-table/gal-a11y-e-cell-popup.h: a11y impl. for e-cell-popup. svn path=/trunk/; revision=23670
Diffstat (limited to 'a11y/e-table/gal-a11y-e-cell-popup.h')
-rw-r--r--a11y/e-table/gal-a11y-e-cell-popup.h64
1 files changed, 64 insertions, 0 deletions
diff --git a/a11y/e-table/gal-a11y-e-cell-popup.h b/a11y/e-table/gal-a11y-e-cell-popup.h
new file mode 100644
index 0000000000..5809f9b4f4
--- /dev/null
+++ b/a11y/e-table/gal-a11y-e-cell-popup.h
@@ -0,0 +1,64 @@
+/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+/* vim:expandtab:shiftwidth=8:tabstop=8:
+ */
+/* Evolution Accessibility: gal-a11y-e-cell-popup.h
+ *
+ * Copyright (C) 2003 Ximian, Inc.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of version 2 of the GNU General Public
+ * License as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ *
+ * Author: Yang Wu <yang.wu@sun.com> Sun Microsystem Inc., 2003
+ *
+ */
+
+#ifndef __GAL_A11Y_E_CELL_POPUP_H__
+#define __GAL_A11Y_E_CELL_POPUP_H__
+
+#include <glib-object.h>
+#include <gal/e-table/e-table-item.h>
+#include <a11y/e-table/gal-a11y-e-cell.h>
+#include <atk/atkgobjectaccessible.h>
+
+#define GAL_A11Y_TYPE_E_CELL_POPUP (gal_a11y_e_cell_popup_get_type ())
+#define GAL_A11Y_E_CELL_POPUP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GAL_A11Y_TYPE_E_CELL_POPUP, GalA11yECellPopup))
+#define GAL_A11Y_E_CELL_POPUP_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GAL_A11Y_TYPE_E_CELL_POPUP, GalA11yECellPopupClass))
+#define GAL_A11Y_IS_E_CELL_POPUP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GAL_A11Y_TYPE_E_CELL_POPUP))
+#define GAL_A11Y_IS_E_CELL_POPUP_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GAL_A11Y_TYPE_E_CELL_POPUP))
+
+typedef struct _GalA11yECellPopup GalA11yECellPopup;
+typedef struct _GalA11yECellPopupClass GalA11yECellPopupClass;
+
+/* This struct should actually be larger as this isn't what we derive from.
+ * The GalA11yECellPopupPrivate comes right after the parent class structure.
+ **/
+struct _GalA11yECellPopup {
+ GalA11yECell object;
+};
+
+struct _GalA11yECellPopupClass {
+ GalA11yECellClass parent_class;
+};
+
+
+/* Standard Glib function */
+GType gal_a11y_e_cell_popup_get_type (void);
+AtkObject *gal_a11y_e_cell_popup_new (ETableItem *item,
+ ECellView *cell_view,
+ AtkObject *parent,
+ int model_col,
+ int view_col,
+ int row);
+
+#endif /* ! __GAL_A11Y_E_CELL_POPUP_H__ */