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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
<?xml version="1.0" ?>
<interface>
<requires lib="gtk+" version="3.24"/>
<template class="TotemOpenLocation" parent="GtkDialog">
<property name="title" translatable="yes">Add Web Video</property>
<property name="type_hint">dialog</property>
<property name="modal">1</property>
<child internal-child="vbox">
<object class="GtkBox" id="open_uri_dialog_content">
<property name="visible">True</property>
<property name="border_width">5</property>
<property name="spacing">6</property>
<property name="orientation">vertical</property>
<property name="expand">True</property>
<child>
<object class="GtkLabel" id="label1">
<property name="visible">True</property>
<property name="xalign">0</property>
<property name="label" translatable="yes">Enter the _address of the file you would like to open:</property>
<property name="use_underline">True</property>
<property name="wrap">True</property>
<property name="mnemonic_widget">uri_entry</property>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">False</property>
<property name="position">0</property>
</packing>
</child>
<child>
<object class="GtkEntry" id="uri_entry">
<property name="visible">True</property>
<property name="activates_default">True</property>
<property name="width-chars">50</property>
<signal name="changed" handler="uri_entry_changed_cb"/>
</object>
<packing>
<property name="position">1</property>
</packing>
</child>
</object>
</child>
<child type="action">
<object class="GtkButton" id="cancel_button">
<property name="label" translatable="yes">_Cancel</property>
<property name="visible">True</property>
<property name="can-focus">True</property>
<property name="use_underline">True</property>
<property name="receives-default">True</property>
</object>
</child>
<child type="action">
<object class="GtkButton" id="add_button">
<property name="label" translatable="yes">_Add</property>
<property name="visible">True</property>
<property name="can-focus">True</property>
<property name="can-default">True</property>
<property name="has-default">True</property>
<property name="receives-default">True</property>
<property name="use_underline">True</property>
</object>
</child>
<action-widgets>
<action-widget response="-6">cancel_button</action-widget>
<action-widget response="-5" default="True">add_button</action-widget>
</action-widgets>
<initial-focus name="uri_entry"/>
</template>
</interface>
|