1<?xml version="1.0" encoding="UTF-8"?>
2<ui version="4.0">
3 <class>AddressBookPage</class>
4 <widget class="QWidget" name="AddressBookPage">
5  <property name="geometry">
6   <rect>
7    <x>0</x>
8    <y>0</y>
9    <width>760</width>
10    <height>380</height>
11   </rect>
12  </property>
13  <layout class="QVBoxLayout" name="verticalLayout">
14   <item>
15    <widget class="QLabel" name="labelExplanation">
16     <property name="textFormat">
17      <enum>Qt::PlainText</enum>
18     </property>
19     <property name="wordWrap">
20      <bool>true</bool>
21     </property>
22    </widget>
23   </item>
24   <item>
25    <widget class="QTableView" name="tableView">
26     <property name="contextMenuPolicy">
27      <enum>Qt::CustomContextMenu</enum>
28     </property>
29     <property name="toolTip">
30      <string>Right-click to edit address or label</string>
31     </property>
32     <property name="tabKeyNavigation">
33      <bool>false</bool>
34     </property>
35     <property name="alternatingRowColors">
36      <bool>true</bool>
37     </property>
38     <property name="selectionMode">
39      <enum>QAbstractItemView::SingleSelection</enum>
40     </property>
41     <property name="selectionBehavior">
42      <enum>QAbstractItemView::SelectRows</enum>
43     </property>
44     <property name="sortingEnabled">
45      <bool>true</bool>
46     </property>
47     <attribute name="verticalHeaderVisible">
48      <bool>false</bool>
49     </attribute>
50    </widget>
51   </item>
52   <item>
53    <layout class="QHBoxLayout" name="horizontalLayout">
54     <item>
55      <widget class="QPushButton" name="newAddress">
56       <property name="toolTip">
57        <string>Create a new address</string>
58       </property>
59       <property name="text">
60        <string>&amp;New</string>
61       </property>
62       <property name="icon">
63        <iconset resource="../bitcoin.qrc">
64         <normaloff>:/icons/add</normaloff>:/icons/add</iconset>
65       </property>
66       <property name="autoDefault">
67        <bool>false</bool>
68       </property>
69      </widget>
70     </item>
71     <item>
72      <widget class="QPushButton" name="copyAddress">
73       <property name="toolTip">
74        <string>Copy the currently selected address to the system clipboard</string>
75       </property>
76       <property name="text">
77        <string>&amp;Copy</string>
78       </property>
79       <property name="icon">
80        <iconset resource="../bitcoin.qrc">
81         <normaloff>:/icons/editcopy</normaloff>:/icons/editcopy</iconset>
82       </property>
83       <property name="autoDefault">
84        <bool>false</bool>
85       </property>
86      </widget>
87     </item>
88     <item>
89      <widget class="QPushButton" name="deleteAddress">
90       <property name="toolTip">
91        <string>Delete the currently selected address from the list</string>
92       </property>
93       <property name="text">
94        <string>&amp;Delete</string>
95       </property>
96       <property name="icon">
97        <iconset resource="../bitcoin.qrc">
98         <normaloff>:/icons/remove</normaloff>:/icons/remove</iconset>
99       </property>
100       <property name="autoDefault">
101        <bool>false</bool>
102       </property>
103      </widget>
104     </item>
105     <item>
106      <spacer name="horizontalSpacer">
107       <property name="orientation">
108        <enum>Qt::Horizontal</enum>
109       </property>
110       <property name="sizeHint" stdset="0">
111        <size>
112         <width>40</width>
113         <height>20</height>
114        </size>
115       </property>
116      </spacer>
117     </item>
118     <item>
119      <widget class="QPushButton" name="exportButton">
120       <property name="toolTip">
121        <string>Export the data in the current tab to a file</string>
122       </property>
123       <property name="text">
124        <string>&amp;Export</string>
125       </property>
126       <property name="icon">
127        <iconset resource="../bitcoin.qrc">
128         <normaloff>:/icons/export</normaloff>:/icons/export</iconset>
129       </property>
130       <property name="autoDefault">
131        <bool>false</bool>
132       </property>
133      </widget>
134     </item>
135     <item>
136      <widget class="QPushButton" name="closeButton">
137       <property name="sizePolicy">
138        <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
139         <horstretch>0</horstretch>
140         <verstretch>0</verstretch>
141        </sizepolicy>
142       </property>
143       <property name="text">
144        <string>C&amp;lose</string>
145       </property>
146       <property name="autoDefault">
147        <bool>false</bool>
148       </property>
149      </widget>
150     </item>
151    </layout>
152   </item>
153  </layout>
154 </widget>
155 <resources>
156  <include location="../bitcoin.qrc"/>
157 </resources>
158 <connections/>
159</ui>
160