Add accessibility properties

This commit is contained in:
James Westman 2021-11-12 00:26:23 -06:00
parent d511b3f1e3
commit b776163cd7
No known key found for this signature in database
GPG key ID: CE2DBA0ADB654EA6
20 changed files with 324 additions and 13 deletions

View file

@ -0,0 +1,7 @@
using Gtk 4.0;
Widget {
accessibility {
not_a_prop: "Hello, world!";
}
}

View file

@ -0,0 +1 @@
5,5,10,'not_a_prop' is not an accessibility property, relation, or state

View file

@ -0,0 +1,7 @@
using Gtk 4.0;
Widget {
accessibility {
labelled_by: not_an_object;
}
}

View file

@ -0,0 +1 @@
5,18,13,Could not find object with ID not_an_object

View file

@ -0,0 +1,7 @@
using Gtk 4.0;
Widget {
accessibility {
orientation: 1;
}
}

View file

@ -0,0 +1 @@
5,18,1,Cannot convert 1 to Gtk.Orientation

View file

@ -0,0 +1,3 @@
using Gtk 4.0;
NotARealWidget {}