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
/* CTK+ - accessibility implementations
 * Copyright 2001 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 <ctk/ctk.h>
#include "ctkmenushellaccessible.h"


static void atk_selection_interface_init (AtkSelectionIface *iface);

G_DEFINE_TYPE_WITH_CODE (CtkMenuShellAccessible, ctk_menu_shell_accessible, CTK_TYPE_CONTAINER_ACCESSIBLE,<--- There is an unknown macro here somewhere. Configuration is required. If G_DEFINE_TYPE_WITH_CODE is a macro then please configure it.
                         G_IMPLEMENT_INTERFACE (ATK_TYPE_SELECTION, atk_selection_interface_init))

static void
ctk_menu_shell_accessible_initialize (AtkObject *accessible,
                                      gpointer   data)
{
  ATK_OBJECT_CLASS (ctk_menu_shell_accessible_parent_class)->initialize (accessible, data);

  accessible->role = ATK_ROLE_UNKNOWN;
}

static void
ctk_menu_shell_accessible_class_init (CtkMenuShellAccessibleClass *klass)
{
  AtkObjectClass *atk_object_class = ATK_OBJECT_CLASS (klass);

  atk_object_class->initialize = ctk_menu_shell_accessible_initialize;
}

static void
ctk_menu_shell_accessible_init (CtkMenuShellAccessible *menu_shell G_GNUC_UNUSED)
{
}

static gboolean
ctk_menu_shell_accessible_add_selection (AtkSelection *selection,
                                         gint          i)
{
  GList *kids;
  CtkWidget *item;
  guint length;
  CtkWidget *widget;

  widget =  ctk_accessible_get_widget (CTK_ACCESSIBLE (selection));
  if (widget == NULL)
    return FALSE;

  kids = ctk_container_get_children (CTK_CONTAINER (widget));
  length = g_list_length (kids);
  if (i < 0 || i > length)
    {
      g_list_free (kids);
      return FALSE;
    }

  item = g_list_nth_data (kids, i);
  g_list_free (kids);
  g_return_val_if_fail (CTK_IS_MENU_ITEM (item), FALSE);
  ctk_menu_shell_select_item (CTK_MENU_SHELL (widget), item);
  return TRUE;
}

static gboolean
ctk_menu_shell_accessible_clear_selection (AtkSelection *selection)
{
  CtkMenuShell *shell;
  CtkWidget *widget;

  widget =  ctk_accessible_get_widget (CTK_ACCESSIBLE (selection));
  if (widget == NULL)
    return FALSE;

  shell = CTK_MENU_SHELL (widget);

  ctk_menu_shell_deselect (shell);
  return TRUE;
}

static AtkObject *
ctk_menu_shell_accessible_ref_selection (AtkSelection *selection,
                                         gint          i)
{
  CtkMenuShell *shell;
  CtkWidget *widget;
  CtkWidget *item;

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

  if (i != 0)
    return NULL;

  shell = CTK_MENU_SHELL (widget);

  item = ctk_menu_shell_get_selected_item (shell);
  if (item != NULL)
    {
      AtkObject *obj;

      obj = ctk_widget_get_accessible (item);
      g_object_ref (obj);
      return obj;
    }
  return NULL;
}

static gint
ctk_menu_shell_accessible_get_selection_count (AtkSelection *selection)
{
  CtkMenuShell *shell;
  CtkWidget *widget;

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

  shell = CTK_MENU_SHELL (widget);

  if (ctk_menu_shell_get_selected_item (shell) != NULL)
    return 1;

  return 0;
}

static gboolean
ctk_menu_shell_accessible_is_child_selected (AtkSelection *selection,
                                             gint          i)
{
  CtkMenuShell *shell;
  GList *kids;
  gint j;
  CtkWidget *widget;
  CtkWidget *item;

  widget =  ctk_accessible_get_widget (CTK_ACCESSIBLE (selection));
  if (widget == NULL)
    return FALSE;

  shell = CTK_MENU_SHELL (widget);
  item = ctk_menu_shell_get_selected_item (shell);
  if (item == NULL)
    return FALSE;

  kids = ctk_container_get_children (CTK_CONTAINER (shell));
  j = g_list_index (kids, item);
  g_list_free (kids);

  return j==i;
}

static gboolean
ctk_menu_shell_accessible_remove_selection (AtkSelection *selection,
                                            gint          i)
{
  CtkMenuShell *shell;
  CtkWidget *widget;
  CtkWidget *item;

  widget =  ctk_accessible_get_widget (CTK_ACCESSIBLE (selection));
  if (widget == NULL)
    return FALSE;

  if (i != 0)
    return FALSE;

  shell = CTK_MENU_SHELL (widget);

  item = ctk_menu_shell_get_selected_item (shell);
  if (item && ctk_menu_item_get_submenu (CTK_MENU_ITEM (item)))
    ctk_menu_shell_deselect (shell);
  return TRUE;
}

static void
atk_selection_interface_init (AtkSelectionIface *iface)
{
  iface->add_selection = ctk_menu_shell_accessible_add_selection;
  iface->clear_selection = ctk_menu_shell_accessible_clear_selection;
  iface->ref_selection = ctk_menu_shell_accessible_ref_selection;
  iface->get_selection_count = ctk_menu_shell_accessible_get_selection_count;
  iface->is_child_selected = ctk_menu_shell_accessible_is_child_selected;
  iface->remove_selection = ctk_menu_shell_accessible_remove_selection;
}