mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-17 23:10:22 +00:00
45ecba2ea0
Updated test/a11y/entries.ui to include a new GtkEntry with 'visibility' set to FALSE, and update expectations. https://bugzilla.gnome.org/show_bug.cgi?id=681591
66 lines
2.5 KiB
XML
66 lines
2.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<interface>
|
|
<!-- interface-requires gtk+ 3.0 -->
|
|
<object class="GtkAdjustment" id="adjustment1">
|
|
<property name="lower">0.5</property>
|
|
<property name="upper">99.5</property>
|
|
<property name="page-size">0</property>
|
|
<property name="value">45.5</property>
|
|
<property name="step-increment">0.5</property>
|
|
<property name="page-increment">5.0</property>
|
|
</object>
|
|
<object class="GtkWindow" id="window1">
|
|
<property name="can_focus">False</property>
|
|
<property name="type">popup</property>
|
|
<child>
|
|
<object class="GtkBox" id="box1">
|
|
<child>
|
|
<object class="GtkLabel" id="label1">
|
|
<property name="label">_entry:</property>
|
|
<property name="visible">True</property>
|
|
<property name="use-underline">True</property>
|
|
<property name="mnemonic-widget">entry1</property>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="GtkLabel" id="label2">
|
|
<property name="label">_password entry:</property>
|
|
<property name="visible">True</property>
|
|
<property name="use-underline">True</property>
|
|
<property name="mnemonic-widget">entry2</property>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="GtkLabel" id="label3">
|
|
<property name="label">_spinbutton:</property>
|
|
<property name="visible">True</property>
|
|
<property name="use-underline">True</property>
|
|
<property name="mnemonic-widget">spinbutton1</property>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="GtkEntry" id="entry1">
|
|
<property name="text" translatable="yes">text</property>
|
|
<property name="visible">True</property>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="GtkEntry" id="entry2">
|
|
<property name="text" translatable="yes">password text</property>
|
|
<property name="visible">True</property>
|
|
<property name="visibility">False</property>
|
|
<property name="invisible_char">*</property>
|
|
<property name="invisible_char_set">True</property>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="GtkSpinButton" id="spinbutton1">
|
|
<property name="adjustment">adjustment1</property>
|
|
<property name="visible">True</property>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</interface>
|