2022-09-07 22:25:04 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<interface>
|
|
|
|
<requires lib="gtk+" version="3.24"/>
|
|
|
|
<object class="GtkDialog" id="TorrentUrlChooserDialog">
|
|
|
|
<property name="can-focus">False</property>
|
|
|
|
<property name="border-width">6</property>
|
|
|
|
<property name="title" translatable="yes">Open URL</property>
|
|
|
|
<property name="type-hint">dialog</property>
|
|
|
|
<child internal-child="vbox">
|
|
|
|
<object class="GtkBox" id="dialog_layout">
|
|
|
|
<property name="can-focus">False</property>
|
|
|
|
<property name="orientation">vertical</property>
|
|
|
|
<property name="spacing">6</property>
|
|
|
|
<child internal-child="action_area">
|
|
|
|
<object class="GtkButtonBox" id="dialog_buttons">
|
|
|
|
<property name="can-focus">False</property>
|
|
|
|
<property name="layout-style">end</property>
|
|
|
|
<child>
|
|
|
|
<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="receives-default">True</property>
|
|
|
|
<property name="use-underline">True</property>
|
|
|
|
</object>
|
|
|
|
<packing>
|
|
|
|
<property name="expand">True</property>
|
|
|
|
<property name="fill">True</property>
|
|
|
|
<property name="position">0</property>
|
|
|
|
</packing>
|
|
|
|
</child>
|
|
|
|
<child>
|
|
|
|
<object class="GtkButton" id="open_button">
|
|
|
|
<property name="label" translatable="yes">_Open</property>
|
|
|
|
<property name="visible">True</property>
|
|
|
|
<property name="can-focus">True</property>
|
2024-12-12 23:03:28 +00:00
|
|
|
<property name="can-default">True</property>
|
2022-09-07 22:25:04 +00:00
|
|
|
<property name="receives-default">True</property>
|
|
|
|
<property name="use-underline">True</property>
|
|
|
|
</object>
|
|
|
|
<packing>
|
|
|
|
<property name="expand">True</property>
|
|
|
|
<property name="fill">True</property>
|
|
|
|
<property name="position">1</property>
|
|
|
|
</packing>
|
|
|
|
</child>
|
|
|
|
</object>
|
|
|
|
<packing>
|
|
|
|
<property name="expand">False</property>
|
|
|
|
<property name="fill">False</property>
|
|
|
|
<property name="position">0</property>
|
|
|
|
</packing>
|
|
|
|
</child>
|
|
|
|
<child>
|
|
|
|
<object class="GtkBox" id="dialog_content_layout">
|
|
|
|
<property name="visible">True</property>
|
|
|
|
<property name="can-focus">False</property>
|
|
|
|
<property name="orientation">vertical</property>
|
|
|
|
<property name="spacing">6</property>
|
|
|
|
<child>
|
2024-09-14 01:34:39 +00:00
|
|
|
<object class="GtkFrame">
|
2022-09-07 22:25:04 +00:00
|
|
|
<property name="visible">True</property>
|
|
|
|
<property name="can-focus">False</property>
|
2024-09-14 01:34:39 +00:00
|
|
|
<child type="label">
|
|
|
|
<object class="GtkLabel" id="url_section_label">
|
2022-09-07 22:25:04 +00:00
|
|
|
<property name="visible">True</property>
|
|
|
|
<property name="can-focus">False</property>
|
2024-09-14 01:34:39 +00:00
|
|
|
<property name="label" translatable="yes">Open torrent from URL</property>
|
|
|
|
<attributes>
|
|
|
|
<attribute name="weight" value="bold"/>
|
|
|
|
</attributes>
|
2022-09-07 22:25:04 +00:00
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
<child>
|
2024-09-14 01:34:39 +00:00
|
|
|
<object class="GtkGrid" id="url_section_layout">
|
2022-09-07 22:25:04 +00:00
|
|
|
<property name="visible">True</property>
|
2024-09-14 01:34:39 +00:00
|
|
|
<property name="can-focus">False</property>
|
|
|
|
<property name="row-spacing">6</property>
|
|
|
|
<property name="column-spacing">12</property>
|
|
|
|
<child>
|
|
|
|
<object class="GtkLabel" id="url_label">
|
|
|
|
<property name="visible">True</property>
|
|
|
|
<property name="can-focus">False</property>
|
|
|
|
<property name="label" translatable="yes">_URL</property>
|
|
|
|
<property name="use-underline">True</property>
|
|
|
|
<property name="mnemonic-widget">url_entry</property>
|
|
|
|
</object>
|
|
|
|
<packing>
|
|
|
|
<property name="left-attach">0</property>
|
|
|
|
<property name="top-attach">0</property>
|
|
|
|
</packing>
|
|
|
|
</child>
|
|
|
|
<child>
|
|
|
|
<object class="GtkEntry" id="url_entry">
|
|
|
|
<property name="width-request">400</property>
|
|
|
|
<property name="visible">True</property>
|
|
|
|
<property name="can-focus">True</property>
|
2024-12-12 23:03:28 +00:00
|
|
|
<property name="activates-default">True</property>
|
2024-09-14 01:34:39 +00:00
|
|
|
<property name="hexpand">True</property>
|
|
|
|
</object>
|
|
|
|
<packing>
|
|
|
|
<property name="left-attach">1</property>
|
|
|
|
<property name="top-attach">0</property>
|
|
|
|
</packing>
|
|
|
|
</child>
|
2022-09-07 22:25:04 +00:00
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
</object>
|
|
|
|
<packing>
|
|
|
|
<property name="expand">False</property>
|
|
|
|
<property name="fill">True</property>
|
2024-09-14 01:34:39 +00:00
|
|
|
<property name="position">0</property>
|
2022-09-07 22:25:04 +00:00
|
|
|
</packing>
|
|
|
|
</child>
|
|
|
|
</object>
|
|
|
|
<packing>
|
|
|
|
<property name="expand">False</property>
|
|
|
|
<property name="fill">True</property>
|
|
|
|
<property name="position">1</property>
|
|
|
|
</packing>
|
|
|
|
</child>
|
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
<action-widgets>
|
2023-03-09 21:01:22 +00:00
|
|
|
<action-widget response="cancel">cancel_button</action-widget>
|
|
|
|
<action-widget response="accept">open_button</action-widget>
|
2022-09-07 22:25:04 +00:00
|
|
|
</action-widgets>
|
|
|
|
</object>
|
|
|
|
</interface>
|