Bitcoin Core  0.21.1
P2P Digital Currency
ui_openuridialog.h
Go to the documentation of this file.
1 /********************************************************************************
2 ** Form generated from reading UI file 'openuridialog.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 5.6.1
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef UI_OPENURIDIALOG_H
10 #define UI_OPENURIDIALOG_H
11 
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QAction>
14 #include <QtWidgets/QApplication>
15 #include <QtWidgets/QButtonGroup>
16 #include <QtWidgets/QDialog>
17 #include <QtWidgets/QDialogButtonBox>
18 #include <QtWidgets/QHBoxLayout>
19 #include <QtWidgets/QHeaderView>
20 #include <QtWidgets/QLabel>
21 #include <QtWidgets/QSpacerItem>
22 #include <QtWidgets/QVBoxLayout>
23 #include "qt/qvalidatedlineedit.h"
24 
25 QT_BEGIN_NAMESPACE
26 
28 {
29 public:
30  QVBoxLayout *verticalLayout;
31  QHBoxLayout *horizontalLayout;
32  QLabel *label;
34  QSpacerItem *verticalSpacer;
35  QDialogButtonBox *buttonBox;
36 
37  void setupUi(QDialog *OpenURIDialog)
38  {
39  if (OpenURIDialog->objectName().isEmpty())
40  OpenURIDialog->setObjectName(QStringLiteral("OpenURIDialog"));
41  OpenURIDialog->resize(564, 109);
42  verticalLayout = new QVBoxLayout(OpenURIDialog);
43  verticalLayout->setObjectName(QStringLiteral("verticalLayout"));
44  horizontalLayout = new QHBoxLayout();
45  horizontalLayout->setObjectName(QStringLiteral("horizontalLayout"));
46  label = new QLabel(OpenURIDialog);
47  label->setObjectName(QStringLiteral("label"));
48 
49  horizontalLayout->addWidget(label);
50 
51  uriEdit = new QValidatedLineEdit(OpenURIDialog);
52  uriEdit->setObjectName(QStringLiteral("uriEdit"));
53  uriEdit->setPlaceholderText(QStringLiteral("bitcoin:"));
54 
55  horizontalLayout->addWidget(uriEdit);
56 
57 
58  verticalLayout->addLayout(horizontalLayout);
59 
60  verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
61 
62  verticalLayout->addItem(verticalSpacer);
63 
64  buttonBox = new QDialogButtonBox(OpenURIDialog);
65  buttonBox->setObjectName(QStringLiteral("buttonBox"));
66  buttonBox->setOrientation(Qt::Horizontal);
67  buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
68 
69  verticalLayout->addWidget(buttonBox);
70 
71 
72  retranslateUi(OpenURIDialog);
73  QObject::connect(buttonBox, SIGNAL(accepted()), OpenURIDialog, SLOT(accept()));
74  QObject::connect(buttonBox, SIGNAL(rejected()), OpenURIDialog, SLOT(reject()));
75 
76  QMetaObject::connectSlotsByName(OpenURIDialog);
77  } // setupUi
78 
80  {
81  OpenURIDialog->setWindowTitle(QApplication::translate("OpenURIDialog", "Open bitcoin URI", 0));
82  label->setText(QApplication::translate("OpenURIDialog", "URI:", 0));
83  } // retranslateUi
84 
85 };
86 
87 namespace Ui {
88  class OpenURIDialog: public Ui_OpenURIDialog {};
89 } // namespace Ui
90 
91 QT_END_NAMESPACE
92 
93 #endif // UI_OPENURIDIALOG_H
void setupUi(QDialog *OpenURIDialog)
QVBoxLayout * verticalLayout
QValidatedLineEdit * uriEdit
Line edit that can be marked as "invalid" to show input validation feedback.
void retranslateUi(QDialog *OpenURIDialog)
QSpacerItem * verticalSpacer
QHBoxLayout * horizontalLayout
QDialogButtonBox * buttonBox