mirror of
https://gitlab.gnome.org/GNOME/gitg
synced 2024-10-31 04:58:58 +00:00
7c64979439
To inform ATs about what is going on, implement AtkSelection, and also emit ::active-descendant-changed. This seems enough to make orca read 'filler' for each row (unless the row happens to be just a label, in which case, it reads the label). https://bugzilla.gnome.org/show_bug.cgi?id=692258
75 lines
1.1 KiB
Makefile
75 lines
1.1 KiB
Makefile
NULL =
|
|
|
|
AM_CPPFLAGS = \
|
|
-include config.h \
|
|
$(LISTBOX_CFLAGS) \
|
|
$(NULL)
|
|
|
|
AM_VALAFLAGS = \
|
|
@LISTBOX_PACKAGES@ \
|
|
--vapidir=. \
|
|
$(NULL)
|
|
|
|
noinst_LTLIBRARIES = libegglistbox.la
|
|
|
|
libegglistbox_la_SOURCES = \
|
|
egg-list-box.c egg-list-box.h \
|
|
egg-list-box-accessible.c egg-list-box-accessible.h
|
|
|
|
libegglistbox_la_LIBADD = $(LISTBOX_LIBS)
|
|
|
|
noinst_PROGRAMS = test-list test-scrolled test-focus test-sel
|
|
|
|
test_sel_SOURCES = \
|
|
test-sel.c \
|
|
$(NULL)
|
|
|
|
test_sel_LDADD = \
|
|
$(LISTBOX_LIBS) \
|
|
libegglistbox.la \
|
|
$(NULL)
|
|
|
|
test_list_SOURCES = \
|
|
test-list.vala \
|
|
$(NULL)
|
|
|
|
test_list_LDADD = \
|
|
$(LISTBOX_LIBS) \
|
|
libegglistbox.la \
|
|
$(NULL)
|
|
|
|
test_list_VALAFLAGS = \
|
|
$(AM_VALAFLAGS) \
|
|
--pkg egglistbox \
|
|
$(NULL)
|
|
|
|
test_scrolled_SOURCES = \
|
|
test-scrolled.vala \
|
|
$(NULL)
|
|
|
|
test_scrolled_LDADD = \
|
|
$(LISTBOX_LIBS) \
|
|
libegglistbox.la \
|
|
$(NULL)
|
|
|
|
test_scrolled_VALAFLAGS = \
|
|
$(AM_VALAFLAGS) \
|
|
--pkg egglistbox \
|
|
$(NULL)
|
|
|
|
test_focus_SOURCES = \
|
|
test-focus.c \
|
|
$(NULL)
|
|
|
|
test_focus_LDADD = \
|
|
$(LISTBOX_LIBS) \
|
|
libegglistbox.la \
|
|
$(NULL)
|
|
|
|
CLEANFILES = \
|
|
$(test_list_SOURCES:.vala=.c) \
|
|
$(test_scrolled_SOURCES:.vala=.c) \
|
|
*.stamp
|
|
|
|
EXTRA_DIST = \
|
|
$(NULL)
|