Line data Source code
1 : /********************************************************************************
2 : ** Form generated from reading UI file 'sendcoinsentry.ui'
3 : **
4 : ** Created by: Qt User Interface Compiler version 5.15.0
5 : **
6 : ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 : ********************************************************************************/
8 :
9 : #ifndef UI_SENDCOINSENTRY_H
10 : #define UI_SENDCOINSENTRY_H
11 :
12 : #include <QtCore/QVariant>
13 : #include <QtGui/QIcon>
14 : #include <QtWidgets/QApplication>
15 : #include <QtWidgets/QCheckBox>
16 : #include <QtWidgets/QFrame>
17 : #include <QtWidgets/QGridLayout>
18 : #include <QtWidgets/QHBoxLayout>
19 : #include <QtWidgets/QLabel>
20 : #include <QtWidgets/QLineEdit>
21 : #include <QtWidgets/QPushButton>
22 : #include <QtWidgets/QStackedWidget>
23 : #include <QtWidgets/QToolButton>
24 : #include "qt/bitcoinamountfield.h"
25 : #include "qt/qvalidatedlineedit.h"
26 :
27 : QT_BEGIN_NAMESPACE
28 :
29 : class Ui_SendCoinsEntry
30 : {
31 : public:
32 : QFrame *SendCoins;
33 : QGridLayout *gridLayout;
34 : QLabel *payToLabel;
35 : QHBoxLayout *payToLayout;
36 : QValidatedLineEdit *payTo;
37 : QToolButton *addressBookButton;
38 : QToolButton *pasteButton;
39 : QToolButton *deleteButton;
40 : QLabel *labellLabel;
41 : QLineEdit *addAsLabel;
42 : QLabel *amountLabel;
43 : QHBoxLayout *horizontalLayoutAmount;
44 : BitcoinAmountField *payAmount;
45 : QCheckBox *checkboxSubtractFeeFromAmount;
46 : QPushButton *useAvailableBalanceButton;
47 : QLabel *messageLabel;
48 : QLabel *messageTextLabel;
49 : QFrame *line;
50 : QFrame *SendCoins_UnauthenticatedPaymentRequest;
51 : QGridLayout *gridLayout_is;
52 : QLabel *payToLabel_is;
53 : QHBoxLayout *payToLayout_is;
54 : QLabel *payTo_is;
55 : QToolButton *deleteButton_is;
56 : QLabel *memoLabel_is;
57 : QLabel *memoTextLabel_is;
58 : QLabel *amountLabel_is;
59 : BitcoinAmountField *payAmount_is;
60 : QFrame *SendCoins_AuthenticatedPaymentRequest;
61 : QGridLayout *gridLayout_s;
62 : QLabel *payToLabel_s;
63 : QHBoxLayout *payToLayout_s;
64 : QLabel *payTo_s;
65 : QToolButton *deleteButton_s;
66 : QLabel *memoLabel_s;
67 : QLabel *memoTextLabel_s;
68 : QLabel *amountLabel_s;
69 : BitcoinAmountField *payAmount_s;
70 :
71 0 : void setupUi(QStackedWidget *SendCoinsEntry)
72 : {
73 0 : if (SendCoinsEntry->objectName().isEmpty())
74 0 : SendCoinsEntry->setObjectName(QString::fromUtf8("SendCoinsEntry"));
75 0 : SendCoinsEntry->resize(729, 150);
76 0 : SendCoinsEntry->setFocusPolicy(Qt::TabFocus);
77 0 : SendCoinsEntry->setAutoFillBackground(false);
78 0 : SendCoins = new QFrame();
79 0 : SendCoins->setObjectName(QString::fromUtf8("SendCoins"));
80 0 : SendCoins->setFrameShape(QFrame::NoFrame);
81 0 : gridLayout = new QGridLayout(SendCoins);
82 0 : gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
83 0 : gridLayout->setHorizontalSpacing(12);
84 0 : gridLayout->setVerticalSpacing(8);
85 0 : gridLayout->setContentsMargins(-1, 8, -1, 4);
86 0 : payToLabel = new QLabel(SendCoins);
87 0 : payToLabel->setObjectName(QString::fromUtf8("payToLabel"));
88 0 : payToLabel->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
89 :
90 0 : gridLayout->addWidget(payToLabel, 0, 0, 1, 1);
91 :
92 0 : payToLayout = new QHBoxLayout();
93 0 : payToLayout->setSpacing(0);
94 0 : payToLayout->setObjectName(QString::fromUtf8("payToLayout"));
95 0 : payTo = new QValidatedLineEdit(SendCoins);
96 0 : payTo->setObjectName(QString::fromUtf8("payTo"));
97 :
98 0 : payToLayout->addWidget(payTo);
99 :
100 0 : addressBookButton = new QToolButton(SendCoins);
101 0 : addressBookButton->setObjectName(QString::fromUtf8("addressBookButton"));
102 0 : QIcon icon;
103 0 : icon.addFile(QString::fromUtf8(":/icons/address-book"), QSize(), QIcon::Normal, QIcon::Off);
104 0 : addressBookButton->setIcon(icon);
105 0 : addressBookButton->setIconSize(QSize(22, 22));
106 :
107 0 : payToLayout->addWidget(addressBookButton);
108 :
109 0 : pasteButton = new QToolButton(SendCoins);
110 0 : pasteButton->setObjectName(QString::fromUtf8("pasteButton"));
111 0 : QIcon icon1;
112 0 : icon1.addFile(QString::fromUtf8(":/icons/editpaste"), QSize(), QIcon::Normal, QIcon::Off);
113 0 : pasteButton->setIcon(icon1);
114 0 : pasteButton->setIconSize(QSize(22, 22));
115 :
116 0 : payToLayout->addWidget(pasteButton);
117 :
118 0 : deleteButton = new QToolButton(SendCoins);
119 0 : deleteButton->setObjectName(QString::fromUtf8("deleteButton"));
120 0 : QIcon icon2;
121 0 : icon2.addFile(QString::fromUtf8(":/icons/remove"), QSize(), QIcon::Normal, QIcon::Off);
122 0 : deleteButton->setIcon(icon2);
123 0 : deleteButton->setIconSize(QSize(22, 22));
124 :
125 0 : payToLayout->addWidget(deleteButton);
126 :
127 :
128 0 : gridLayout->addLayout(payToLayout, 0, 1, 1, 1);
129 :
130 0 : labellLabel = new QLabel(SendCoins);
131 0 : labellLabel->setObjectName(QString::fromUtf8("labellLabel"));
132 0 : labellLabel->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
133 :
134 0 : gridLayout->addWidget(labellLabel, 1, 0, 1, 1);
135 :
136 0 : addAsLabel = new QLineEdit(SendCoins);
137 0 : addAsLabel->setObjectName(QString::fromUtf8("addAsLabel"));
138 :
139 0 : gridLayout->addWidget(addAsLabel, 1, 1, 1, 1);
140 :
141 0 : amountLabel = new QLabel(SendCoins);
142 0 : amountLabel->setObjectName(QString::fromUtf8("amountLabel"));
143 0 : amountLabel->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
144 :
145 0 : gridLayout->addWidget(amountLabel, 2, 0, 1, 1);
146 :
147 0 : horizontalLayoutAmount = new QHBoxLayout();
148 0 : horizontalLayoutAmount->setObjectName(QString::fromUtf8("horizontalLayoutAmount"));
149 0 : payAmount = new BitcoinAmountField(SendCoins);
150 0 : payAmount->setObjectName(QString::fromUtf8("payAmount"));
151 :
152 0 : horizontalLayoutAmount->addWidget(payAmount);
153 :
154 0 : checkboxSubtractFeeFromAmount = new QCheckBox(SendCoins);
155 0 : checkboxSubtractFeeFromAmount->setObjectName(QString::fromUtf8("checkboxSubtractFeeFromAmount"));
156 :
157 0 : horizontalLayoutAmount->addWidget(checkboxSubtractFeeFromAmount);
158 :
159 0 : useAvailableBalanceButton = new QPushButton(SendCoins);
160 0 : useAvailableBalanceButton->setObjectName(QString::fromUtf8("useAvailableBalanceButton"));
161 :
162 0 : horizontalLayoutAmount->addWidget(useAvailableBalanceButton);
163 :
164 0 : horizontalLayoutAmount->setStretch(1, 1);
165 :
166 0 : gridLayout->addLayout(horizontalLayoutAmount, 2, 1, 1, 1);
167 :
168 0 : messageLabel = new QLabel(SendCoins);
169 0 : messageLabel->setObjectName(QString::fromUtf8("messageLabel"));
170 0 : messageLabel->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
171 :
172 0 : gridLayout->addWidget(messageLabel, 3, 0, 1, 1);
173 :
174 0 : messageTextLabel = new QLabel(SendCoins);
175 0 : messageTextLabel->setObjectName(QString::fromUtf8("messageTextLabel"));
176 0 : messageTextLabel->setTextFormat(Qt::PlainText);
177 :
178 0 : gridLayout->addWidget(messageTextLabel, 3, 1, 1, 1);
179 :
180 0 : line = new QFrame(SendCoins);
181 0 : line->setObjectName(QString::fromUtf8("line"));
182 0 : line->setFrameShape(QFrame::HLine);
183 0 : line->setFrameShadow(QFrame::Sunken);
184 :
185 0 : gridLayout->addWidget(line, 4, 0, 1, 2);
186 :
187 0 : SendCoinsEntry->addWidget(SendCoins);
188 0 : SendCoins_UnauthenticatedPaymentRequest = new QFrame();
189 0 : SendCoins_UnauthenticatedPaymentRequest->setObjectName(QString::fromUtf8("SendCoins_UnauthenticatedPaymentRequest"));
190 0 : QPalette palette;
191 0 : QBrush brush(QColor(0, 0, 0, 255));
192 0 : brush.setStyle(Qt::SolidPattern);
193 0 : palette.setBrush(QPalette::Active, QPalette::WindowText, brush);
194 0 : QBrush brush1(QColor(255, 255, 127, 255));
195 0 : brush1.setStyle(Qt::SolidPattern);
196 0 : palette.setBrush(QPalette::Active, QPalette::Button, brush1);
197 0 : QBrush brush2(QColor(255, 255, 255, 255));
198 0 : brush2.setStyle(Qt::SolidPattern);
199 0 : palette.setBrush(QPalette::Active, QPalette::Light, brush2);
200 0 : QBrush brush3(QColor(255, 255, 191, 255));
201 0 : brush3.setStyle(Qt::SolidPattern);
202 0 : palette.setBrush(QPalette::Active, QPalette::Midlight, brush3);
203 0 : QBrush brush4(QColor(127, 127, 63, 255));
204 0 : brush4.setStyle(Qt::SolidPattern);
205 0 : palette.setBrush(QPalette::Active, QPalette::Dark, brush4);
206 0 : QBrush brush5(QColor(170, 170, 84, 255));
207 0 : brush5.setStyle(Qt::SolidPattern);
208 0 : palette.setBrush(QPalette::Active, QPalette::Mid, brush5);
209 0 : palette.setBrush(QPalette::Active, QPalette::Text, brush);
210 0 : palette.setBrush(QPalette::Active, QPalette::BrightText, brush2);
211 0 : palette.setBrush(QPalette::Active, QPalette::ButtonText, brush);
212 0 : palette.setBrush(QPalette::Active, QPalette::Base, brush2);
213 0 : palette.setBrush(QPalette::Active, QPalette::Window, brush1);
214 0 : palette.setBrush(QPalette::Active, QPalette::Shadow, brush);
215 0 : palette.setBrush(QPalette::Active, QPalette::AlternateBase, brush3);
216 0 : QBrush brush6(QColor(255, 255, 220, 255));
217 0 : brush6.setStyle(Qt::SolidPattern);
218 0 : palette.setBrush(QPalette::Active, QPalette::ToolTipBase, brush6);
219 0 : palette.setBrush(QPalette::Active, QPalette::ToolTipText, brush);
220 0 : palette.setBrush(QPalette::Inactive, QPalette::WindowText, brush);
221 0 : palette.setBrush(QPalette::Inactive, QPalette::Button, brush1);
222 0 : palette.setBrush(QPalette::Inactive, QPalette::Light, brush2);
223 0 : palette.setBrush(QPalette::Inactive, QPalette::Midlight, brush3);
224 0 : palette.setBrush(QPalette::Inactive, QPalette::Dark, brush4);
225 0 : palette.setBrush(QPalette::Inactive, QPalette::Mid, brush5);
226 0 : palette.setBrush(QPalette::Inactive, QPalette::Text, brush);
227 0 : palette.setBrush(QPalette::Inactive, QPalette::BrightText, brush2);
228 0 : palette.setBrush(QPalette::Inactive, QPalette::ButtonText, brush);
229 0 : palette.setBrush(QPalette::Inactive, QPalette::Base, brush2);
230 0 : palette.setBrush(QPalette::Inactive, QPalette::Window, brush1);
231 0 : palette.setBrush(QPalette::Inactive, QPalette::Shadow, brush);
232 0 : palette.setBrush(QPalette::Inactive, QPalette::AlternateBase, brush3);
233 0 : palette.setBrush(QPalette::Inactive, QPalette::ToolTipBase, brush6);
234 0 : palette.setBrush(QPalette::Inactive, QPalette::ToolTipText, brush);
235 0 : palette.setBrush(QPalette::Disabled, QPalette::WindowText, brush4);
236 0 : palette.setBrush(QPalette::Disabled, QPalette::Button, brush1);
237 0 : palette.setBrush(QPalette::Disabled, QPalette::Light, brush2);
238 0 : palette.setBrush(QPalette::Disabled, QPalette::Midlight, brush3);
239 0 : palette.setBrush(QPalette::Disabled, QPalette::Dark, brush4);
240 0 : palette.setBrush(QPalette::Disabled, QPalette::Mid, brush5);
241 0 : palette.setBrush(QPalette::Disabled, QPalette::Text, brush4);
242 0 : palette.setBrush(QPalette::Disabled, QPalette::BrightText, brush2);
243 0 : palette.setBrush(QPalette::Disabled, QPalette::ButtonText, brush4);
244 0 : palette.setBrush(QPalette::Disabled, QPalette::Base, brush1);
245 0 : palette.setBrush(QPalette::Disabled, QPalette::Window, brush1);
246 0 : palette.setBrush(QPalette::Disabled, QPalette::Shadow, brush);
247 0 : palette.setBrush(QPalette::Disabled, QPalette::AlternateBase, brush1);
248 0 : palette.setBrush(QPalette::Disabled, QPalette::ToolTipBase, brush6);
249 0 : palette.setBrush(QPalette::Disabled, QPalette::ToolTipText, brush);
250 0 : SendCoins_UnauthenticatedPaymentRequest->setPalette(palette);
251 0 : SendCoins_UnauthenticatedPaymentRequest->setAutoFillBackground(true);
252 0 : SendCoins_UnauthenticatedPaymentRequest->setFrameShape(QFrame::NoFrame);
253 0 : gridLayout_is = new QGridLayout(SendCoins_UnauthenticatedPaymentRequest);
254 0 : gridLayout_is->setSpacing(12);
255 0 : gridLayout_is->setObjectName(QString::fromUtf8("gridLayout_is"));
256 0 : payToLabel_is = new QLabel(SendCoins_UnauthenticatedPaymentRequest);
257 0 : payToLabel_is->setObjectName(QString::fromUtf8("payToLabel_is"));
258 0 : payToLabel_is->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
259 :
260 0 : gridLayout_is->addWidget(payToLabel_is, 0, 0, 1, 1);
261 :
262 0 : payToLayout_is = new QHBoxLayout();
263 0 : payToLayout_is->setSpacing(0);
264 0 : payToLayout_is->setObjectName(QString::fromUtf8("payToLayout_is"));
265 0 : payTo_is = new QLabel(SendCoins_UnauthenticatedPaymentRequest);
266 0 : payTo_is->setObjectName(QString::fromUtf8("payTo_is"));
267 :
268 0 : payToLayout_is->addWidget(payTo_is);
269 :
270 0 : deleteButton_is = new QToolButton(SendCoins_UnauthenticatedPaymentRequest);
271 0 : deleteButton_is->setObjectName(QString::fromUtf8("deleteButton_is"));
272 0 : deleteButton_is->setIcon(icon2);
273 :
274 0 : payToLayout_is->addWidget(deleteButton_is);
275 :
276 :
277 0 : gridLayout_is->addLayout(payToLayout_is, 0, 1, 1, 1);
278 :
279 0 : memoLabel_is = new QLabel(SendCoins_UnauthenticatedPaymentRequest);
280 0 : memoLabel_is->setObjectName(QString::fromUtf8("memoLabel_is"));
281 0 : memoLabel_is->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
282 :
283 0 : gridLayout_is->addWidget(memoLabel_is, 1, 0, 1, 1);
284 :
285 0 : memoTextLabel_is = new QLabel(SendCoins_UnauthenticatedPaymentRequest);
286 0 : memoTextLabel_is->setObjectName(QString::fromUtf8("memoTextLabel_is"));
287 0 : memoTextLabel_is->setTextFormat(Qt::PlainText);
288 :
289 0 : gridLayout_is->addWidget(memoTextLabel_is, 1, 1, 1, 1);
290 :
291 0 : amountLabel_is = new QLabel(SendCoins_UnauthenticatedPaymentRequest);
292 0 : amountLabel_is->setObjectName(QString::fromUtf8("amountLabel_is"));
293 0 : amountLabel_is->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
294 :
295 0 : gridLayout_is->addWidget(amountLabel_is, 2, 0, 1, 1);
296 :
297 0 : payAmount_is = new BitcoinAmountField(SendCoins_UnauthenticatedPaymentRequest);
298 0 : payAmount_is->setObjectName(QString::fromUtf8("payAmount_is"));
299 0 : payAmount_is->setAcceptDrops(false);
300 :
301 0 : gridLayout_is->addWidget(payAmount_is, 2, 1, 1, 1);
302 :
303 0 : SendCoinsEntry->addWidget(SendCoins_UnauthenticatedPaymentRequest);
304 0 : SendCoins_AuthenticatedPaymentRequest = new QFrame();
305 0 : SendCoins_AuthenticatedPaymentRequest->setObjectName(QString::fromUtf8("SendCoins_AuthenticatedPaymentRequest"));
306 0 : QPalette palette1;
307 0 : palette1.setBrush(QPalette::Active, QPalette::WindowText, brush);
308 0 : QBrush brush7(QColor(140, 232, 119, 255));
309 0 : brush7.setStyle(Qt::SolidPattern);
310 0 : palette1.setBrush(QPalette::Active, QPalette::Button, brush7);
311 0 : QBrush brush8(QColor(230, 255, 224, 255));
312 0 : brush8.setStyle(Qt::SolidPattern);
313 0 : palette1.setBrush(QPalette::Active, QPalette::Light, brush8);
314 0 : QBrush brush9(QColor(185, 243, 171, 255));
315 0 : brush9.setStyle(Qt::SolidPattern);
316 0 : palette1.setBrush(QPalette::Active, QPalette::Midlight, brush9);
317 0 : QBrush brush10(QColor(70, 116, 59, 255));
318 0 : brush10.setStyle(Qt::SolidPattern);
319 0 : palette1.setBrush(QPalette::Active, QPalette::Dark, brush10);
320 0 : QBrush brush11(QColor(93, 155, 79, 255));
321 0 : brush11.setStyle(Qt::SolidPattern);
322 0 : palette1.setBrush(QPalette::Active, QPalette::Mid, brush11);
323 0 : palette1.setBrush(QPalette::Active, QPalette::Text, brush);
324 0 : QBrush brush12(QColor(155, 255, 147, 255));
325 0 : brush12.setStyle(Qt::SolidPattern);
326 0 : palette1.setBrush(QPalette::Active, QPalette::BrightText, brush12);
327 0 : palette1.setBrush(QPalette::Active, QPalette::ButtonText, brush);
328 0 : QBrush brush13(QColor(119, 255, 233, 255));
329 0 : brush13.setStyle(Qt::SolidPattern);
330 0 : palette1.setBrush(QPalette::Active, QPalette::Base, brush13);
331 0 : palette1.setBrush(QPalette::Active, QPalette::Window, brush7);
332 0 : palette1.setBrush(QPalette::Active, QPalette::Shadow, brush);
333 0 : QBrush brush14(QColor(197, 243, 187, 255));
334 0 : brush14.setStyle(Qt::SolidPattern);
335 0 : palette1.setBrush(QPalette::Active, QPalette::AlternateBase, brush14);
336 0 : QBrush brush15(QColor(125, 194, 122, 255));
337 0 : brush15.setStyle(Qt::SolidPattern);
338 0 : palette1.setBrush(QPalette::Active, QPalette::NoRole, brush15);
339 0 : palette1.setBrush(QPalette::Active, QPalette::ToolTipBase, brush6);
340 0 : palette1.setBrush(QPalette::Active, QPalette::ToolTipText, brush);
341 0 : palette1.setBrush(QPalette::Inactive, QPalette::WindowText, brush);
342 0 : palette1.setBrush(QPalette::Inactive, QPalette::Button, brush7);
343 0 : palette1.setBrush(QPalette::Inactive, QPalette::Light, brush8);
344 0 : palette1.setBrush(QPalette::Inactive, QPalette::Midlight, brush9);
345 0 : palette1.setBrush(QPalette::Inactive, QPalette::Dark, brush10);
346 0 : palette1.setBrush(QPalette::Inactive, QPalette::Mid, brush11);
347 0 : palette1.setBrush(QPalette::Inactive, QPalette::Text, brush);
348 0 : palette1.setBrush(QPalette::Inactive, QPalette::BrightText, brush12);
349 0 : palette1.setBrush(QPalette::Inactive, QPalette::ButtonText, brush);
350 0 : palette1.setBrush(QPalette::Inactive, QPalette::Base, brush13);
351 0 : palette1.setBrush(QPalette::Inactive, QPalette::Window, brush7);
352 0 : palette1.setBrush(QPalette::Inactive, QPalette::Shadow, brush);
353 0 : palette1.setBrush(QPalette::Inactive, QPalette::AlternateBase, brush14);
354 0 : palette1.setBrush(QPalette::Inactive, QPalette::NoRole, brush15);
355 0 : palette1.setBrush(QPalette::Inactive, QPalette::ToolTipBase, brush6);
356 0 : palette1.setBrush(QPalette::Inactive, QPalette::ToolTipText, brush);
357 0 : palette1.setBrush(QPalette::Disabled, QPalette::WindowText, brush10);
358 0 : palette1.setBrush(QPalette::Disabled, QPalette::Button, brush7);
359 0 : palette1.setBrush(QPalette::Disabled, QPalette::Light, brush8);
360 0 : palette1.setBrush(QPalette::Disabled, QPalette::Midlight, brush9);
361 0 : palette1.setBrush(QPalette::Disabled, QPalette::Dark, brush10);
362 0 : palette1.setBrush(QPalette::Disabled, QPalette::Mid, brush11);
363 0 : palette1.setBrush(QPalette::Disabled, QPalette::Text, brush10);
364 0 : palette1.setBrush(QPalette::Disabled, QPalette::BrightText, brush12);
365 0 : palette1.setBrush(QPalette::Disabled, QPalette::ButtonText, brush10);
366 0 : palette1.setBrush(QPalette::Disabled, QPalette::Base, brush7);
367 0 : palette1.setBrush(QPalette::Disabled, QPalette::Window, brush7);
368 0 : palette1.setBrush(QPalette::Disabled, QPalette::Shadow, brush);
369 0 : palette1.setBrush(QPalette::Disabled, QPalette::AlternateBase, brush7);
370 0 : palette1.setBrush(QPalette::Disabled, QPalette::NoRole, brush15);
371 0 : palette1.setBrush(QPalette::Disabled, QPalette::ToolTipBase, brush6);
372 0 : palette1.setBrush(QPalette::Disabled, QPalette::ToolTipText, brush);
373 0 : SendCoins_AuthenticatedPaymentRequest->setPalette(palette1);
374 0 : SendCoins_AuthenticatedPaymentRequest->setAutoFillBackground(true);
375 0 : SendCoins_AuthenticatedPaymentRequest->setFrameShape(QFrame::NoFrame);
376 0 : gridLayout_s = new QGridLayout(SendCoins_AuthenticatedPaymentRequest);
377 0 : gridLayout_s->setSpacing(12);
378 0 : gridLayout_s->setObjectName(QString::fromUtf8("gridLayout_s"));
379 0 : payToLabel_s = new QLabel(SendCoins_AuthenticatedPaymentRequest);
380 0 : payToLabel_s->setObjectName(QString::fromUtf8("payToLabel_s"));
381 0 : payToLabel_s->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
382 :
383 0 : gridLayout_s->addWidget(payToLabel_s, 0, 0, 1, 1);
384 :
385 0 : payToLayout_s = new QHBoxLayout();
386 0 : payToLayout_s->setSpacing(0);
387 0 : payToLayout_s->setObjectName(QString::fromUtf8("payToLayout_s"));
388 0 : payTo_s = new QLabel(SendCoins_AuthenticatedPaymentRequest);
389 0 : payTo_s->setObjectName(QString::fromUtf8("payTo_s"));
390 0 : payTo_s->setTextFormat(Qt::PlainText);
391 :
392 0 : payToLayout_s->addWidget(payTo_s);
393 :
394 0 : deleteButton_s = new QToolButton(SendCoins_AuthenticatedPaymentRequest);
395 0 : deleteButton_s->setObjectName(QString::fromUtf8("deleteButton_s"));
396 0 : deleteButton_s->setIcon(icon2);
397 :
398 0 : payToLayout_s->addWidget(deleteButton_s);
399 :
400 :
401 0 : gridLayout_s->addLayout(payToLayout_s, 0, 1, 1, 1);
402 :
403 0 : memoLabel_s = new QLabel(SendCoins_AuthenticatedPaymentRequest);
404 0 : memoLabel_s->setObjectName(QString::fromUtf8("memoLabel_s"));
405 0 : memoLabel_s->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
406 :
407 0 : gridLayout_s->addWidget(memoLabel_s, 1, 0, 1, 1);
408 :
409 0 : memoTextLabel_s = new QLabel(SendCoins_AuthenticatedPaymentRequest);
410 0 : memoTextLabel_s->setObjectName(QString::fromUtf8("memoTextLabel_s"));
411 0 : memoTextLabel_s->setTextFormat(Qt::PlainText);
412 :
413 0 : gridLayout_s->addWidget(memoTextLabel_s, 1, 1, 1, 1);
414 :
415 0 : amountLabel_s = new QLabel(SendCoins_AuthenticatedPaymentRequest);
416 0 : amountLabel_s->setObjectName(QString::fromUtf8("amountLabel_s"));
417 0 : amountLabel_s->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
418 :
419 0 : gridLayout_s->addWidget(amountLabel_s, 2, 0, 1, 1);
420 :
421 0 : payAmount_s = new BitcoinAmountField(SendCoins_AuthenticatedPaymentRequest);
422 0 : payAmount_s->setObjectName(QString::fromUtf8("payAmount_s"));
423 0 : payAmount_s->setAcceptDrops(false);
424 :
425 0 : gridLayout_s->addWidget(payAmount_s, 2, 1, 1, 1);
426 :
427 0 : SendCoinsEntry->addWidget(SendCoins_AuthenticatedPaymentRequest);
428 : #if QT_CONFIG(shortcut)
429 0 : payToLabel->setBuddy(payTo);
430 0 : labellLabel->setBuddy(addAsLabel);
431 0 : amountLabel->setBuddy(payAmount);
432 0 : amountLabel_is->setBuddy(payAmount_is);
433 0 : amountLabel_s->setBuddy(payAmount_s);
434 : #endif // QT_CONFIG(shortcut)
435 0 : QWidget::setTabOrder(payTo, addressBookButton);
436 0 : QWidget::setTabOrder(addressBookButton, pasteButton);
437 0 : QWidget::setTabOrder(pasteButton, deleteButton);
438 0 : QWidget::setTabOrder(deleteButton, addAsLabel);
439 0 : QWidget::setTabOrder(addAsLabel, payAmount);
440 0 : QWidget::setTabOrder(payAmount, payAmount_is);
441 0 : QWidget::setTabOrder(payAmount_is, deleteButton_is);
442 0 : QWidget::setTabOrder(deleteButton_is, payAmount_s);
443 0 : QWidget::setTabOrder(payAmount_s, deleteButton_s);
444 :
445 0 : retranslateUi(SendCoinsEntry);
446 :
447 0 : QMetaObject::connectSlotsByName(SendCoinsEntry);
448 0 : } // setupUi
449 :
450 0 : void retranslateUi(QStackedWidget *SendCoinsEntry)
451 : {
452 0 : payToLabel->setText(QCoreApplication::translate("SendCoinsEntry", "Pay &To:", nullptr));
453 : #if QT_CONFIG(tooltip)
454 0 : payTo->setToolTip(QCoreApplication::translate("SendCoinsEntry", "The Bitcoin address to send the payment to", nullptr));
455 : #endif // QT_CONFIG(tooltip)
456 : #if QT_CONFIG(tooltip)
457 0 : addressBookButton->setToolTip(QCoreApplication::translate("SendCoinsEntry", "Choose previously used address", nullptr));
458 : #endif // QT_CONFIG(tooltip)
459 0 : addressBookButton->setText(QString());
460 : #if QT_CONFIG(shortcut)
461 0 : addressBookButton->setShortcut(QCoreApplication::translate("SendCoinsEntry", "Alt+A", nullptr));
462 : #endif // QT_CONFIG(shortcut)
463 : #if QT_CONFIG(tooltip)
464 0 : pasteButton->setToolTip(QCoreApplication::translate("SendCoinsEntry", "Paste address from clipboard", nullptr));
465 : #endif // QT_CONFIG(tooltip)
466 0 : pasteButton->setText(QString());
467 : #if QT_CONFIG(shortcut)
468 0 : pasteButton->setShortcut(QCoreApplication::translate("SendCoinsEntry", "Alt+P", nullptr));
469 : #endif // QT_CONFIG(shortcut)
470 : #if QT_CONFIG(tooltip)
471 0 : deleteButton->setToolTip(QCoreApplication::translate("SendCoinsEntry", "Remove this entry", nullptr));
472 : #endif // QT_CONFIG(tooltip)
473 0 : deleteButton->setText(QString());
474 0 : labellLabel->setText(QCoreApplication::translate("SendCoinsEntry", "&Label:", nullptr));
475 : #if QT_CONFIG(tooltip)
476 0 : addAsLabel->setToolTip(QCoreApplication::translate("SendCoinsEntry", "Enter a label for this address to add it to the list of used addresses", nullptr));
477 : #endif // QT_CONFIG(tooltip)
478 0 : addAsLabel->setPlaceholderText(QCoreApplication::translate("SendCoinsEntry", "Enter a label for this address to add it to the list of used addresses", nullptr));
479 0 : amountLabel->setText(QCoreApplication::translate("SendCoinsEntry", "A&mount:", nullptr));
480 : #if QT_CONFIG(tooltip)
481 0 : payAmount->setToolTip(QCoreApplication::translate("SendCoinsEntry", "The amount to send in the selected unit", nullptr));
482 : #endif // QT_CONFIG(tooltip)
483 : #if QT_CONFIG(tooltip)
484 0 : checkboxSubtractFeeFromAmount->setToolTip(QCoreApplication::translate("SendCoinsEntry", "The fee will be deducted from the amount being sent. The recipient will receive less bitcoins than you enter in the amount field. If multiple recipients are selected, the fee is split equally.", nullptr));
485 : #endif // QT_CONFIG(tooltip)
486 0 : checkboxSubtractFeeFromAmount->setText(QCoreApplication::translate("SendCoinsEntry", "S&ubtract fee from amount", nullptr));
487 0 : useAvailableBalanceButton->setText(QCoreApplication::translate("SendCoinsEntry", "Use available balance", nullptr));
488 0 : messageLabel->setText(QCoreApplication::translate("SendCoinsEntry", "Message:", nullptr));
489 : #if QT_CONFIG(tooltip)
490 0 : messageTextLabel->setToolTip(QCoreApplication::translate("SendCoinsEntry", "A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.", nullptr));
491 : #endif // QT_CONFIG(tooltip)
492 : #if QT_CONFIG(tooltip)
493 0 : SendCoins_UnauthenticatedPaymentRequest->setToolTip(QCoreApplication::translate("SendCoinsEntry", "This is an unauthenticated payment request.", nullptr));
494 : #endif // QT_CONFIG(tooltip)
495 0 : payToLabel_is->setText(QCoreApplication::translate("SendCoinsEntry", "Pay To:", nullptr));
496 : #if QT_CONFIG(tooltip)
497 0 : deleteButton_is->setToolTip(QCoreApplication::translate("SendCoinsEntry", "Remove this entry", nullptr));
498 : #endif // QT_CONFIG(tooltip)
499 0 : deleteButton_is->setText(QString());
500 0 : memoLabel_is->setText(QCoreApplication::translate("SendCoinsEntry", "Memo:", nullptr));
501 0 : amountLabel_is->setText(QCoreApplication::translate("SendCoinsEntry", "A&mount:", nullptr));
502 : #if QT_CONFIG(tooltip)
503 0 : SendCoins_AuthenticatedPaymentRequest->setToolTip(QCoreApplication::translate("SendCoinsEntry", "This is an authenticated payment request.", nullptr));
504 : #endif // QT_CONFIG(tooltip)
505 0 : payToLabel_s->setText(QCoreApplication::translate("SendCoinsEntry", "Pay To:", nullptr));
506 : #if QT_CONFIG(tooltip)
507 0 : deleteButton_s->setToolTip(QCoreApplication::translate("SendCoinsEntry", "Remove this entry", nullptr));
508 : #endif // QT_CONFIG(tooltip)
509 0 : deleteButton_s->setText(QString());
510 0 : memoLabel_s->setText(QCoreApplication::translate("SendCoinsEntry", "Memo:", nullptr));
511 0 : amountLabel_s->setText(QCoreApplication::translate("SendCoinsEntry", "A&mount:", nullptr));
512 : (void)SendCoinsEntry;
513 0 : } // retranslateUi
514 :
515 : };
516 :
517 : namespace Ui {
518 : class SendCoinsEntry: public Ui_SendCoinsEntry {};
519 : } // namespace Ui
520 :
521 : QT_END_NAMESPACE
522 :
523 : #endif // UI_SENDCOINSENTRY_H
|