forked from AuroraMiddleware/gtk
bd986f9534
This allows to override the role declared to the atk stack. For instance, <accessibility> <role type="static"/> </accessibility> allows to tell the accessibility stack that a label is just a message in a message box. Fixes #109
18 lines
669 B
XML
18 lines
669 B
XML
|
|
<interface>
|
|
<!-- interface-requires gtk+ 3.0 -->
|
|
<object class="GtkWindow" id="window1">
|
|
<property name="can_focus">False</property>
|
|
<property name="type">popup</property>
|
|
<child>
|
|
<object class="GtkLabel" id="label1">
|
|
<property name="label">Go to the <a href="http://www.gtk.org" title="<i>Our</i> website">GTK+ website</a> or <small>><a href="http://www.google.com">google it</a></small></property>
|
|
<property name="use-markup">True</property>
|
|
<accessibility>
|
|
<role type="static"/>
|
|
</accessibility>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</interface>
|