1<?xml version="1.0" encoding="UTF-8"?>
2<ui version="4.0">
3 <class>PeersAdditionDialog</class>
4 <widget class="QDialog" name="PeersAdditionDialog">
5  <property name="geometry">
6   <rect>
7    <x>0</x>
8    <y>0</y>
9    <width>367</width>
10    <height>274</height>
11   </rect>
12  </property>
13  <property name="windowTitle">
14   <string>Add Peers</string>
15  </property>
16  <layout class="QVBoxLayout" name="verticalLayout">
17   <item>
18    <widget class="QLabel" name="label">
19     <property name="text">
20      <string>List of peers to add (one IP per line):</string>
21     </property>
22    </widget>
23   </item>
24   <item>
25    <widget class="QTextEdit" name="textEditPeers">
26     <property name="lineWrapMode">
27      <enum>QTextEdit::NoWrap</enum>
28     </property>
29     <property name="acceptRichText">
30      <bool>false</bool>
31     </property>
32     <property name="placeholderText">
33      <string>Format: IPv4:port / [IPv6]:port</string>
34     </property>
35    </widget>
36   </item>
37   <item>
38    <widget class="QDialogButtonBox" name="buttonBox">
39     <property name="orientation">
40      <enum>Qt::Horizontal</enum>
41     </property>
42     <property name="standardButtons">
43      <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
44     </property>
45    </widget>
46   </item>
47  </layout>
48 </widget>
49 <resources/>
50 <connections>
51  <connection>
52   <sender>buttonBox</sender>
53   <signal>rejected()</signal>
54   <receiver>PeersAdditionDialog</receiver>
55   <slot>reject()</slot>
56   <hints>
57    <hint type="sourcelabel">
58     <x>183</x>
59     <y>251</y>
60    </hint>
61    <hint type="destinationlabel">
62     <x>183</x>
63     <y>136</y>
64    </hint>
65   </hints>
66  </connection>
67 </connections>
68</ui>
69