~ubuntu-branches/ubuntu/precise/atkmm1.6/precise

« back to all changes in this revision

Viewing changes to atk/atkmm/private/table_p.h

  • Committer: Bazaar Package Importer
  • Author(s): Krzysztof Klimonda
  • Date: 2010-11-02 20:35:53 UTC
  • Revision ID: james.westby@ubuntu.com-20101102203553-syno2w6yedmcdgk8
Tags: upstream-2.22.1
ImportĀ upstreamĀ versionĀ 2.22.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- c++ -*-
 
2
// Generated by gtkmmproc -- DO NOT MODIFY!
 
3
#ifndef _ATKMM_TABLE_P_H
 
4
#define _ATKMM_TABLE_P_H
 
5
 
 
6
 
 
7
#include <atk/atkobject.h>
 
8
 
 
9
#include <glibmm/private/interface_p.h>
 
10
 
 
11
namespace Atk
 
12
{
 
13
 
 
14
class Table_Class : public Glib::Interface_Class
 
15
{
 
16
public:
 
17
  typedef Table CppObjectType;
 
18
  typedef AtkTable BaseObjectType;
 
19
  typedef AtkTableIface BaseClassType;
 
20
  typedef Glib::Interface_Class CppClassParent;
 
21
 
 
22
  friend class Table;
 
23
 
 
24
  const Glib::Interface_Class& init();
 
25
 
 
26
  static void iface_init_function(void* g_iface, void* iface_data);
 
27
 
 
28
  static Glib::ObjectBase* wrap_new(GObject*);
 
29
 
 
30
protected:
 
31
 
 
32
  //Callbacks (default signal handlers):
 
33
  //These will call the *_impl member methods, which will then call the existing default signal callbacks, if any.
 
34
  //You could prevent the original default signal handlers being called by overriding the *_impl method.
 
35
  static void row_inserted_callback(AtkTable* self, gint p0, gint p1);
 
36
  static void column_inserted_callback(AtkTable* self, gint p0, gint p1);
 
37
  static void row_deleted_callback(AtkTable* self, gint p0, gint p1);
 
38
  static void column_deleted_callback(AtkTable* self, gint p0, gint p1);
 
39
  static void row_reordered_callback(AtkTable* self);
 
40
  static void column_reordered_callback(AtkTable* self);
 
41
  static void model_changed_callback(AtkTable* self);
 
42
 
 
43
  //Callbacks (virtual functions):
 
44
  static AtkObject* ref_at_vfunc_callback(AtkTable* self, gint row, gint column);
 
45
  static gint get_index_at_vfunc_callback(AtkTable* self, gint row, gint column);
 
46
  static gint get_column_at_index_vfunc_callback(AtkTable* self, gint index_);
 
47
  static gint get_row_at_index_vfunc_callback(AtkTable* self, gint index_);
 
48
  static gint get_n_columns_vfunc_callback(AtkTable* self);
 
49
  static gint get_n_rows_vfunc_callback(AtkTable* self);
 
50
  static gint get_column_extent_at_vfunc_callback(AtkTable* self, gint row, gint column);
 
51
  static gint get_row_extent_at_vfunc_callback(AtkTable* self, gint row, gint column);
 
52
  static AtkObject* get_caption_vfunc_callback(AtkTable* self);
 
53
  static const gchar* get_column_description_vfunc_callback(AtkTable* self, gint column);
 
54
  static AtkObject* get_column_header_vfunc_callback(AtkTable* self, gint column);
 
55
  static const gchar* get_row_description_vfunc_callback(AtkTable* self, gint row);
 
56
  static AtkObject* get_row_header_vfunc_callback(AtkTable* self, gint row);
 
57
  static AtkObject* get_summary_vfunc_callback(AtkTable* self);
 
58
  static void set_caption_vfunc_callback(AtkTable* self, AtkObject* caption);
 
59
  static void set_column_description_vfunc_callback(AtkTable* self, gint column, const gchar* description);
 
60
  static void set_column_header_vfunc_callback(AtkTable* self, gint column, AtkObject* header);
 
61
  static void set_row_description_vfunc_callback(AtkTable* self, gint row, const gchar* description);
 
62
  static void set_row_header_vfunc_callback(AtkTable* self, gint row, AtkObject* header);
 
63
  static void set_summary_vfunc_callback(AtkTable* self, AtkObject* accessible);
 
64
  static gboolean is_column_selected_vfunc_callback(AtkTable* self, gint column);
 
65
  static gboolean is_row_selected_vfunc_callback(AtkTable* self, gint row);
 
66
  static gboolean is_selected_vfunc_callback(AtkTable* self, gint row, gint column);
 
67
  static gboolean add_row_selection_vfunc_callback(AtkTable* self, gint row);
 
68
  static gboolean remove_row_selection_vfunc_callback(AtkTable* self, gint row);
 
69
  static gboolean add_column_selection_vfunc_callback(AtkTable* self, gint column);
 
70
  static gboolean remove_column_selection_vfunc_callback(AtkTable* self, gint column);
 
71
  static gint get_selected_columns_vfunc_callback(AtkTable* self, gint** selected);
 
72
  static gint get_selected_rows_vfunc_callback(AtkTable* self, gint** selected);
 
73
};
 
74
 
 
75
 
 
76
} // namespace Atk
 
77
 
 
78
 
 
79
#endif /* _ATKMM_TABLE_P_H */
 
80