1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk+" version="3.22" />
<object class="GtkDialog" id="phone_number_dialog">
<property name="can-focus">False</property>
<property name="title" translatable="yes">Open chat by phone number</property>
<property name="modal">True</property>
<property name="type-hint">dialog</property>
<property name="border-width">10</property>
<property name="use-header-bar">1</property>
<child type="action">
<object class="GtkButton" id="button_cancel">
<property name="label">gtk-cancel</property>
<property name="use-stock">True</property>
</object>
</child>
<child type="action">
<object class="GtkButton" id="button_ok">
<property name="label">gtk-ok</property>
<property name="can-default">True</property>
<property name="use-stock">True</property>
</object>
</child>
<child internal-child="vbox">
<object class="GtkBox">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="orientation">vertical</property>
<property name="spacing">4</property>
<child>
<object class="GtkLabel" id="label_phone_number">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="label" translatable="yes">Enter phone number (only digits)</property>
<property name="xalign">0</property>
</object>
</child>
<child>
<object class="GtkEntry" id="entry_phone_number">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="hexpand">True</property>
<property name="activates_default">True</property>
</object>
</child>
</object>
</child>
<action-widgets>
<action-widget response="cancel">button_cancel</action-widget>
<action-widget response="ok" default="true">button_ok</action-widget>
</action-widgets>
</object>
</interface>
|