summaryrefslogtreecommitdiff
path: root/gtk/a11y/gtkstackaccessible.c
blob: 23b4e13762e412212d8fde2e141673796705781d (plain)
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
/* GTK+ - accessibility implementations
 * Copyright (C) 2016  Timm Bäder <mail@baedert.org>
 *
 * 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 <string.h>
#include <gtk/gtk.h>
#include "gtkstackaccessibleprivate.h"
#include "gtkwidgetprivate.h"


G_DEFINE_TYPE (GtkStackAccessible, gtk_stack_accessible, GTK_TYPE_WIDGET_ACCESSIBLE)

static AtkObject*
gtk_stack_accessible_ref_child (AtkObject *obj,
                                int        i)
{
  GtkWidget *stack = gtk_accessible_get_widget (GTK_ACCESSIBLE (obj));
  GtkWidget *visible_child;

  if (stack == NULL)
    return NULL;

  if (i != 0)
    return NULL;

  visible_child = gtk_stack_get_visible_child (GTK_STACK (stack));

  if (visible_child == NULL)
    return NULL;

  return g_object_ref (gtk_widget_get_accessible (visible_child));
}

static int
gtk_stack_accessible_get_n_children (AtkObject *obj)
{
  GtkWidget *stack = gtk_accessible_get_widget (GTK_ACCESSIBLE (obj));

  if (stack == NULL)
    return 0;

  if (gtk_stack_get_visible_child (GTK_STACK (stack)))
    return 1;

  return 0;
}

static void
gtk_stack_accessible_class_init (GtkStackAccessibleClass *klass)
{
  AtkObjectClass *class                        = ATK_OBJECT_CLASS (klass);

  class->get_n_children = gtk_stack_accessible_get_n_children;
  class->ref_child      = gtk_stack_accessible_ref_child;
}

static void
gtk_stack_accessible_init (GtkStackAccessible *bar) {}


void
gtk_stack_accessible_update_visible_child (GtkStack  *stack,
                                           GtkWidget *old_visible_child,
                                           GtkWidget *new_visible_child)
{
  AtkObject *stack_accessible = _gtk_widget_peek_accessible (GTK_WIDGET (stack));

  if (stack_accessible == NULL)
    return;

  if (old_visible_child)
    {
      AtkObject *accessible = gtk_widget_get_accessible (old_visible_child);
      g_object_notify (G_OBJECT (accessible), "accessible-parent");
      g_signal_emit_by_name (stack_accessible, "children-changed::remove", 0, accessible, NULL);
    }

  if (new_visible_child)
    {
      AtkObject *accessible = gtk_widget_get_accessible (new_visible_child);
      g_object_notify (G_OBJECT (accessible), "accessible-parent");
      g_signal_emit_by_name (stack_accessible, "children-changed::add", 0, accessible, NULL);
    }
}