2011-05-12 14:44:52 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
2011-07-07 17:33:15 +02:00
<class>AddressBookPage</class>
<widget class="QWidget" name="AddressBookPage">
2011-05-12 14:44:52 +02:00
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
2012-07-19 07:22:38 +02:00
<width>760</width>
<height>380</height>
2011-05-12 14:44:52 +02:00
</rect>
</property>
<property name="windowTitle">
2011-05-12 17:55:24 +02:00
<string>Address Book</string>
2011-05-12 14:44:52 +02:00
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
2011-07-07 17:33:15 +02:00
<widget class="QLabel" name="labelExplanation">
<property name="text">
2012-06-15 09:48:26 +02:00
<string>These are your Bitcoin addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you.</string>
2011-05-12 14:44:52 +02:00
</property>
2011-07-07 17:33:15 +02:00
<property name="textFormat">
2012-06-15 09:48:26 +02:00
<enum>Qt::PlainText</enum>
2011-07-07 17:33:15 +02:00
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QTableView" name="tableView">
2012-05-04 17:56:29 +02:00
<property name="contextMenuPolicy">
<enum>Qt::CustomContextMenu</enum>
</property>
2011-07-07 17:33:15 +02:00
<property name="toolTip">
<string>Double-click to edit address or label</string>
</property>
2012-05-04 17:56:29 +02:00
<property name="tabKeyNavigation">
<bool>false</bool>
</property>
2011-07-07 17:33:15 +02:00
<property name="alternatingRowColors">
<bool>true</bool>
</property>
<property name="selectionMode">
<enum>QAbstractItemView::SingleSelection</enum>
</property>
<property name="selectionBehavior">
<enum>QAbstractItemView::SelectRows</enum>
</property>
<property name="sortingEnabled">
<bool>true</bool>
</property>
<attribute name="verticalHeaderVisible">
<bool>false</bool>
</attribute>
2011-05-12 17:55:24 +02:00
</widget>
2011-05-12 14:44:52 +02:00
</item>
<item>
2011-05-12 17:55:24 +02:00
<layout class="QHBoxLayout" name="horizontalLayout">
2011-05-13 22:00:27 +02:00
<item>
<widget class="QPushButton" name="newAddressButton">
2011-06-11 12:46:09 +02:00
<property name="toolTip">
<string>Create a new address</string>
</property>
2011-05-13 22:00:27 +02:00
<property name="text">
2012-05-06 16:24:15 +02:00
<string>&New Address</string>
2011-05-13 22:00:27 +02:00
</property>
2011-06-30 20:20:46 +02:00
<property name="icon">
<iconset resource="../bitcoin.qrc">
<normaloff>:/icons/add</normaloff>:/icons/add</iconset>
</property>
2011-05-13 22:00:27 +02:00
</widget>
</item>
2011-05-12 17:55:24 +02:00
<item>
<widget class="QPushButton" name="copyToClipboard">
2011-06-11 12:46:09 +02:00
<property name="toolTip">
<string>Copy the currently selected address to the system clipboard</string>
</property>
2011-05-12 17:55:24 +02:00
<property name="text">
2012-05-04 17:56:29 +02:00
<string>&Copy Address</string>
2011-05-12 17:55:24 +02:00
</property>
2011-06-30 20:20:46 +02:00
<property name="icon">
<iconset resource="../bitcoin.qrc">
<normaloff>:/icons/editcopy</normaloff>:/icons/editcopy</iconset>
</property>
2011-05-12 17:55:24 +02:00
</widget>
</item>
2011-11-10 15:20:17 +01:00
<item>
<widget class="QPushButton" name="showQRCode">
<property name="text">
<string>Show &QR Code</string>
</property>
<property name="icon">
<iconset resource="../bitcoin.qrc">
2012-05-05 10:46:19 +02:00
<normaloff>:/icons/qrcode</normaloff>:/icons/qrcode</iconset>
2011-11-10 15:20:17 +01:00
</property>
</widget>
</item>
2011-12-23 16:14:57 +01:00
<item>
<widget class="QPushButton" name="signMessage">
<property name="toolTip">
2012-06-15 09:48:26 +02:00
<string>Sign a message to prove you own a Bitcoin address</string>
2011-12-23 16:14:57 +01:00
</property>
<property name="text">
<string>&Sign Message</string>
</property>
<property name="icon">
<iconset resource="../bitcoin.qrc">
<normaloff>:/icons/edit</normaloff>:/icons/edit</iconset>
</property>
</widget>
</item>
2012-06-15 09:48:26 +02:00
<item>
<widget class="QPushButton" name="verifyMessage">
<property name="toolTip">
<string>Verify a message to ensure it was signed with a specified Bitcoin address</string>
</property>
<property name="text">
<string>&Verify Message</string>
</property>
<property name="icon">
<iconset resource="../bitcoin.qrc">
<normaloff>:/icons/transaction_0</normaloff>:/icons/transaction_0</iconset>
</property>
</widget>
</item>
2011-05-12 17:55:24 +02:00
<item>
2011-05-13 22:00:27 +02:00
<widget class="QPushButton" name="deleteButton">
2011-06-11 12:46:09 +02:00
<property name="toolTip">
2011-06-21 07:56:44 +02:00
<string>Delete the currently selected address from the list. Only sending addresses can be deleted.</string>
2011-06-11 12:46:09 +02:00
</property>
2011-05-12 17:55:24 +02:00
<property name="text">
2011-05-13 22:00:27 +02:00
<string>&Delete</string>
2011-05-12 17:55:24 +02:00
</property>
2011-06-30 20:20:46 +02:00
<property name="icon">
<iconset resource="../bitcoin.qrc">
2011-07-18 21:02:17 +02:00
<normaloff>:/icons/remove</normaloff>:/icons/remove</iconset>
2011-06-30 20:20:46 +02:00
</property>
2011-05-12 17:55:24 +02:00
</widget>
</item>
2011-07-03 20:53:56 +02:00
<item>
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
2011-05-12 17:55:24 +02:00
<item>
2011-05-13 22:00:27 +02:00
<widget class="QDialogButtonBox" name="buttonBox">
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="standardButtons">
<set>QDialogButtonBox::Ok</set>
2011-05-12 17:55:24 +02:00
</property>
</widget>
</item>
</layout>
2011-05-12 14:44:52 +02:00
</item>
</layout>
</widget>
2011-06-30 20:20:46 +02:00
<resources>
<include location="../bitcoin.qrc"/>
</resources>
2011-06-13 12:07:32 +02:00
<connections/>
2011-05-12 14:44:52 +02:00
</ui>