mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-06 16:19:07 -04:00
Add accessibility properties
This commit is contained in:
parent
d511b3f1e3
commit
b776163cd7
20 changed files with 324 additions and 13 deletions
10
tests/samples/accessibility.blp
Normal file
10
tests/samples/accessibility.blp
Normal file
|
@ -0,0 +1,10 @@
|
|||
using Gtk 4.0;
|
||||
|
||||
Gtk.Widget {
|
||||
accessibility {
|
||||
label: _("Hello, world!");
|
||||
labelled_by: my_label;
|
||||
checked: true;
|
||||
}
|
||||
}
|
||||
Gtk.Label my_label {}
|
12
tests/samples/accessibility.ui
Normal file
12
tests/samples/accessibility.ui
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<interface>
|
||||
<requires lib="gtk" version="4.0"/>
|
||||
<object class="GtkWidget">
|
||||
<accessibility>
|
||||
<property name="label" translatable="true">Hello, world!</property>
|
||||
<relation name="labelled_by">my_label</relation>
|
||||
<state name="checked">true</state>
|
||||
</accessibility>
|
||||
</object>
|
||||
<object class="GtkLabel" id="my_label"></object>
|
||||
</interface>
|
Loading…
Add table
Add a link
Reference in a new issue