1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
/* CTK+ - accessibility implementations
 * Copyright 2001, 2002, 2003 Sun Microsystems Inc.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 */

#include "config.h"

#include "ctkcontaineraccessible.h"
#include "ctkcontaineraccessibleprivate.h"

#include <ctk/ctk.h>

#include "ctkwidgetprivate.h"

struct _CtkContainerAccessiblePrivate
{
  GList *children;
};

G_DEFINE_TYPE_WITH_PRIVATE (CtkContainerAccessible, ctk_container_accessible, CTK_TYPE_WIDGET_ACCESSIBLE)<--- There is an unknown macro here somewhere. Configuration is required. If G_DEFINE_TYPE_WITH_PRIVATE is a macro then please configure it.

static void
count_widget (CtkWidget *widget G_GNUC_UNUSED,
              gint      *count)
{
  (*count)++;
}

static gint
ctk_container_accessible_get_n_children (AtkObject* obj)
{
  CtkWidget *widget;
  gint count = 0;

  widget = ctk_accessible_get_widget (CTK_ACCESSIBLE (obj));
  if (widget == NULL)
    return 0;

  ctk_container_foreach (CTK_CONTAINER (widget), (CtkCallback) count_widget, &count);
  return count;
}

static AtkObject *
ctk_container_accessible_ref_child (AtkObject *obj,
                                    gint       i)
{
  GList *children, *tmp_list;
  AtkObject  *accessible;
  CtkWidget *widget;

  widget = ctk_accessible_get_widget (CTK_ACCESSIBLE (obj));
  if (widget == NULL)
    return NULL;

  children = ctk_container_get_children (CTK_CONTAINER (widget));
  tmp_list = g_list_nth (children, i);
  if (!tmp_list)
    {
      g_list_free (children);
      return NULL;
    }
  accessible = ctk_widget_get_accessible (CTK_WIDGET (tmp_list->data));

  g_list_free (children);
  g_object_ref (accessible);

  return accessible;
}

void
_ctk_container_accessible_add (CtkWidget *parent,
                               CtkWidget *child)
{
  CtkContainerAccessible *accessible;
  CtkContainerAccessibleClass *klass;
  AtkObject *obj;

  obj = _ctk_widget_peek_accessible (CTK_WIDGET (parent));
  if (!CTK_IS_CONTAINER_ACCESSIBLE (obj))
    return;

  accessible = CTK_CONTAINER_ACCESSIBLE (obj);
  klass = CTK_CONTAINER_ACCESSIBLE_GET_CLASS (accessible);

  if (klass->add_ctk)
    klass->add_ctk (CTK_CONTAINER (parent), child, obj);
}

void
_ctk_container_accessible_remove (CtkWidget *parent,
                                  CtkWidget *child)
{
  CtkContainerAccessible *accessible;
  CtkContainerAccessibleClass *klass;
  AtkObject *obj;

  obj = _ctk_widget_peek_accessible (CTK_WIDGET (parent));
  if (!CTK_IS_CONTAINER_ACCESSIBLE (obj))
    return;

  accessible = CTK_CONTAINER_ACCESSIBLE (obj);
  klass = CTK_CONTAINER_ACCESSIBLE_GET_CLASS (accessible);

  if (klass->remove_ctk)
    klass->remove_ctk (CTK_CONTAINER (parent), child, obj);
}

static gint
ctk_container_accessible_real_add_ctk (CtkContainer *container,
                                       CtkWidget    *widget,
                                       gpointer      data)
{
  AtkObject *atk_parent;
  AtkObject *atk_child;
  CtkContainerAccessible *accessible;
  gint index;

  atk_parent = ATK_OBJECT (data);
  atk_child = ctk_widget_get_accessible (widget);
  accessible = CTK_CONTAINER_ACCESSIBLE (atk_parent);

  g_list_free (accessible->priv->children);
  accessible->priv->children = ctk_container_get_children (container);
  index = g_list_index (accessible->priv->children, widget);
  _ctk_container_accessible_add_child (accessible, atk_child, index);

  return 1;
}

static gint
ctk_container_accessible_real_remove_ctk (CtkContainer *container,
                                          CtkWidget    *widget,
                                          gpointer      data)
{
  AtkObject* atk_parent;
  AtkObject *atk_child;
  CtkContainerAccessible *accessible;
  gint index;

  atk_parent = ATK_OBJECT (data);
  atk_child = _ctk_widget_peek_accessible (widget);
  if (atk_child == NULL)
    return 1;
  accessible = CTK_CONTAINER_ACCESSIBLE (atk_parent);

  index = g_list_index (accessible->priv->children, widget);
  g_list_free (accessible->priv->children);
  accessible->priv->children = ctk_container_get_children (container);
  if (index >= 0)
    _ctk_container_accessible_remove_child (accessible, atk_child, index);

  return 1;
}

static void
ctk_container_accessible_real_initialize (AtkObject *obj,
                                          gpointer   data)
{
  CtkContainerAccessible *accessible = CTK_CONTAINER_ACCESSIBLE (obj);

  ATK_OBJECT_CLASS (ctk_container_accessible_parent_class)->initialize (obj, data);

  accessible->priv->children = ctk_container_get_children (CTK_CONTAINER (data));

  obj->role = ATK_ROLE_PANEL;
}

static void
ctk_container_accessible_finalize (GObject *object)
{
  CtkContainerAccessible *accessible = CTK_CONTAINER_ACCESSIBLE (object);

  g_list_free (accessible->priv->children);

  G_OBJECT_CLASS (ctk_container_accessible_parent_class)->finalize (object);
}

static void
ctk_container_accessible_class_init (CtkContainerAccessibleClass *klass)
{
  GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
  AtkObjectClass *class = ATK_OBJECT_CLASS (klass);

  gobject_class->finalize = ctk_container_accessible_finalize;

  class->get_n_children = ctk_container_accessible_get_n_children;
  class->ref_child = ctk_container_accessible_ref_child;
  class->initialize = ctk_container_accessible_real_initialize;

  klass->add_ctk = ctk_container_accessible_real_add_ctk;
  klass->remove_ctk = ctk_container_accessible_real_remove_ctk;
}

static void
ctk_container_accessible_init (CtkContainerAccessible *container)
{
  container->priv = ctk_container_accessible_get_instance_private (container);
}

void
_ctk_container_accessible_add_child (CtkContainerAccessible *accessible,
                                     AtkObject              *child,
                                     gint                    index)
{
  g_object_notify (G_OBJECT (child), "accessible-parent");
  g_signal_emit_by_name (accessible, "children-changed::add", index, child, NULL);
}

void
_ctk_container_accessible_remove_child (CtkContainerAccessible *accessible,
                                        AtkObject              *child,
                                        gint                    index)
{
  g_object_notify (G_OBJECT (child), "accessible-parent");
  g_signal_emit_by_name (accessible, "children-changed::remove", index, child, NULL);
}