aboutsummaryrefslogtreecommitdiffstats
path: root/a11y/widgets/ea-combo-button.c
blob: 8a90700f41ee36c714a969c4374563a1cc3fc45f (plain) (blame)
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
/*
 * Authors: Harry Lu  <harry.lu@sun.com>
 *
 * Copyright (C) 2004 Ximian, Inc.
 */

#include <config.h>
#include "ea-combo-button.h"
#include <gtk/gtkbutton.h>
#include <gtk/gtklabel.h>
#include <glib/gi18n.h>

static AtkObjectClass *parent_class;
static GType parent_type;

/*Action IDs */
enum {
    ACTIVATE_DEFAULT,
    POPUP_MENU,
    LAST_ACTION
};

/* Static functions */
static G_CONST_RETURN gchar*
ea_combo_button_get_name (AtkObject *a11y)
{
    GtkWidget *widget;
    GtkWidget *label;
    EComboButton *button;

    widget = GTK_ACCESSIBLE (a11y)->widget;
    if (!widget)
        return NULL;

    button = E_COMBO_BUTTON (widget);
    label = e_combo_button_get_label (button);
    if (label)
        return gtk_label_get_text (GTK_LABEL (label));

    return _("Combo Button");
}

/* Action interface */
static G_CONST_RETURN gchar *
ea_combo_button_action_get_name (AtkAction *action, gint i)
{
    switch (i)
    {
        case ACTIVATE_DEFAULT:
            return _("Activate Default");
        case POPUP_MENU:
            return _("Popup Menu");
        default:
            return NULL;
    }
}

static gboolean
ea_combo_button_do_action (AtkAction *action,
                       gint      i)
{
    GtkWidget *widget;
    EComboButton *button;

    widget = GTK_ACCESSIBLE (action)->widget;
    if (!widget || !GTK_WIDGET_IS_SENSITIVE (widget) || !GTK_WIDGET_VISIBLE (widget))
        return FALSE;

    button = E_COMBO_BUTTON (widget);

    switch (i)
    {
        case ACTIVATE_DEFAULT:
            g_signal_emit_by_name (button, "activate_default");
            return TRUE;
        case POPUP_MENU:
            return e_combo_button_popup_menu (button);
        default:
            return FALSE;
    }
}

static gint
ea_combo_button_get_n_actions (AtkAction *action)
{
  return LAST_ACTION;
}

static void
atk_action_interface_init (AtkActionIface *iface)
{
    g_return_if_fail (iface != NULL);

    iface->do_action = ea_combo_button_do_action;
    iface->get_n_actions = ea_combo_button_get_n_actions;
    iface->get_name = ea_combo_button_action_get_name;
}

static void
ea_combo_button_class_init (EaComboButtonClass *klass)
{
    AtkObjectClass *atk_object_class = ATK_OBJECT_CLASS (klass);

    parent_class  = g_type_class_ref (parent_type);

    atk_object_class->get_name = ea_combo_button_get_name;
}

static void
ea_combo_button_init (EaComboButton *a11y)
{
    /* Empty for now */
}

GType
ea_combo_button_get_type (void)
{
    static GType type = 0;

    if (!type) {
        AtkObjectFactory *factory;
        GTypeQuery query;

        GTypeInfo info = {
            sizeof (EaComboButtonClass),
            (GBaseInitFunc) NULL,
            (GBaseFinalizeFunc) NULL,
            (GClassInitFunc) ea_combo_button_class_init,
            (GClassFinalizeFunc) NULL,
            NULL, /* class_data */
            sizeof (EaComboButton),
            0,
            (GInstanceInitFunc) ea_combo_button_init,
            NULL /* value_tree */
        };

        static const GInterfaceInfo atk_action_info = {
            (GInterfaceInitFunc) atk_action_interface_init,
            (GInterfaceFinalizeFunc) NULL,
            NULL
        };

        factory = atk_registry_get_factory (atk_get_default_registry (), GTK_TYPE_BUTTON);
        parent_type = atk_object_factory_get_accessible_type (factory);
        g_type_query (parent_type, &query);

        info.class_size = query.class_size;
        info.instance_size = query.instance_size;

        type = g_type_register_static (parent_type, "EaComboButton", &info, 0);
        g_type_add_interface_static (type, ATK_TYPE_ACTION,
                         &atk_action_info);

    }

    return type;
}

AtkObject *
ea_combo_button_new (GtkWidget *widget)
{
    EaComboButton *a11y;

    a11y = g_object_new (ea_combo_button_get_type (), NULL);

    GTK_ACCESSIBLE (a11y)->widget = GTK_WIDGET (widget);
    ATK_OBJECT (a11y)->role = ATK_ROLE_PUSH_BUTTON;

    return ATK_OBJECT (a11y);
}