addressbookpage.ui
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="QLineEdit" name="searchLineEdit"> 26 <property name="placeholderText"> 27 <string>Enter address or label to search</string> 28 </property> 29 </widget> 30 </item> 31 <item> 32 <widget class="QTableView" name="tableView"> 33 <property name="contextMenuPolicy"> 34 <enum>Qt::CustomContextMenu</enum> 35 </property> 36 <property name="toolTip"> 37 <string>Right-click to edit address or label</string> 38 </property> 39 <property name="tabKeyNavigation"> 40 <bool>false</bool> 41 </property> 42 <property name="alternatingRowColors"> 43 <bool>true</bool> 44 </property> 45 <property name="selectionMode"> 46 <enum>QAbstractItemView::SingleSelection</enum> 47 </property> 48 <property name="selectionBehavior"> 49 <enum>QAbstractItemView::SelectRows</enum> 50 </property> 51 <property name="sortingEnabled"> 52 <bool>true</bool> 53 </property> 54 <attribute name="verticalHeaderVisible"> 55 <bool>false</bool> 56 </attribute> 57 </widget> 58 </item> 59 <item> 60 <layout class="QHBoxLayout" name="horizontalLayout"> 61 <item> 62 <widget class="QPushButton" name="newAddress"> 63 <property name="toolTip"> 64 <string>Create a new address</string> 65 </property> 66 <property name="text"> 67 <string>&New</string> 68 </property> 69 <property name="icon"> 70 <iconset resource="../bitcoin.qrc"> 71 <normaloff>:/icons/add</normaloff>:/icons/add</iconset> 72 </property> 73 <property name="autoDefault"> 74 <bool>false</bool> 75 </property> 76 </widget> 77 </item> 78 <item> 79 <widget class="QPushButton" name="copyAddress"> 80 <property name="toolTip"> 81 <string>Copy the currently selected address to the system clipboard</string> 82 </property> 83 <property name="text"> 84 <string>&Copy</string> 85 </property> 86 <property name="icon"> 87 <iconset resource="../bitcoin.qrc"> 88 <normaloff>:/icons/editcopy</normaloff>:/icons/editcopy</iconset> 89 </property> 90 <property name="autoDefault"> 91 <bool>false</bool> 92 </property> 93 </widget> 94 </item> 95 <item> 96 <widget class="QPushButton" name="deleteAddress"> 97 <property name="toolTip"> 98 <string>Delete the currently selected address from the list</string> 99 </property> 100 <property name="text"> 101 <string>&Delete</string> 102 </property> 103 <property name="icon"> 104 <iconset resource="../bitcoin.qrc"> 105 <normaloff>:/icons/remove</normaloff>:/icons/remove</iconset> 106 </property> 107 <property name="autoDefault"> 108 <bool>false</bool> 109 </property> 110 </widget> 111 </item> 112 <item> 113 <spacer name="horizontalSpacer"> 114 <property name="orientation"> 115 <enum>Qt::Horizontal</enum> 116 </property> 117 <property name="sizeHint" stdset="0"> 118 <size> 119 <width>40</width> 120 <height>20</height> 121 </size> 122 </property> 123 </spacer> 124 </item> 125 <item> 126 <widget class="QPushButton" name="exportButton"> 127 <property name="toolTip"> 128 <string>Export the data in the current tab to a file</string> 129 </property> 130 <property name="text"> 131 <string>&Export</string> 132 </property> 133 <property name="icon"> 134 <iconset resource="../bitcoin.qrc"> 135 <normaloff>:/icons/export</normaloff>:/icons/export</iconset> 136 </property> 137 <property name="autoDefault"> 138 <bool>false</bool> 139 </property> 140 </widget> 141 </item> 142 <item> 143 <widget class="QPushButton" name="closeButton"> 144 <property name="sizePolicy"> 145 <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> 146 <horstretch>0</horstretch> 147 <verstretch>0</verstretch> 148 </sizepolicy> 149 </property> 150 <property name="text"> 151 <string>C&lose</string> 152 </property> 153 <property name="autoDefault"> 154 <bool>false</bool> 155 </property> 156 </widget> 157 </item> 158 </layout> 159 </item> 160 </layout> 161 </widget> 162 <resources> 163 <include location="../bitcoin.qrc"/> 164 </resources> 165 <connections/> 166 </ui>