Line data Source code
1 : /********************************************************************************
2 : ** Form generated from reading UI file 'openuridialog.ui'
3 : **
4 : ** Created by: Qt User Interface Compiler version 4.8.6
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 <QtGui/QAction>
14 : #include <QtGui/QApplication>
15 : #include <QtGui/QButtonGroup>
16 : #include <QtGui/QDialog>
17 : #include <QtGui/QDialogButtonBox>
18 : #include <QtGui/QHBoxLayout>
19 : #include <QtGui/QHeaderView>
20 : #include <QtGui/QLabel>
21 : #include <QtGui/QPushButton>
22 : #include <QtGui/QSpacerItem>
23 : #include <QtGui/QVBoxLayout>
24 : #include "qvalidatedlineedit.h"
25 :
26 : QT_BEGIN_NAMESPACE
27 :
28 : class Ui_OpenURIDialog
29 : {
30 : public:
31 : QVBoxLayout *verticalLayout;
32 : QLabel *label_2;
33 : QHBoxLayout *horizontalLayout;
34 : QLabel *label;
35 : QValidatedLineEdit *uriEdit;
36 : QPushButton *selectFileButton;
37 : QSpacerItem *verticalSpacer;
38 : QDialogButtonBox *buttonBox;
39 :
40 0 : void setupUi(QDialog *OpenURIDialog)
41 : {
42 0 : if (OpenURIDialog->objectName().isEmpty())
43 0 : OpenURIDialog->setObjectName(QString::fromUtf8("OpenURIDialog"));
44 0 : OpenURIDialog->resize(564, 109);
45 0 : verticalLayout = new QVBoxLayout(OpenURIDialog);
46 0 : verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
47 0 : label_2 = new QLabel(OpenURIDialog);
48 0 : label_2->setObjectName(QString::fromUtf8("label_2"));
49 :
50 0 : verticalLayout->addWidget(label_2);
51 :
52 0 : horizontalLayout = new QHBoxLayout();
53 0 : horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
54 0 : label = new QLabel(OpenURIDialog);
55 0 : label->setObjectName(QString::fromUtf8("label"));
56 :
57 0 : horizontalLayout->addWidget(label);
58 :
59 0 : uriEdit = new QValidatedLineEdit(OpenURIDialog);
60 0 : uriEdit->setObjectName(QString::fromUtf8("uriEdit"));
61 :
62 0 : horizontalLayout->addWidget(uriEdit);
63 :
64 0 : selectFileButton = new QPushButton(OpenURIDialog);
65 0 : selectFileButton->setObjectName(QString::fromUtf8("selectFileButton"));
66 0 : selectFileButton->setText(QString::fromUtf8("\342\200\246"));
67 0 : selectFileButton->setAutoDefault(false);
68 :
69 0 : horizontalLayout->addWidget(selectFileButton);
70 :
71 :
72 0 : verticalLayout->addLayout(horizontalLayout);
73 :
74 0 : verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
75 :
76 0 : verticalLayout->addItem(verticalSpacer);
77 :
78 0 : buttonBox = new QDialogButtonBox(OpenURIDialog);
79 0 : buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
80 0 : buttonBox->setOrientation(Qt::Horizontal);
81 0 : buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
82 :
83 0 : verticalLayout->addWidget(buttonBox);
84 :
85 :
86 0 : retranslateUi(OpenURIDialog);
87 0 : QObject::connect(buttonBox, SIGNAL(accepted()), OpenURIDialog, SLOT(accept()));
88 0 : QObject::connect(buttonBox, SIGNAL(rejected()), OpenURIDialog, SLOT(reject()));
89 :
90 0 : QMetaObject::connectSlotsByName(OpenURIDialog);
91 0 : } // setupUi
92 :
93 0 : void retranslateUi(QDialog *OpenURIDialog)
94 : {
95 0 : OpenURIDialog->setWindowTitle(QApplication::translate("OpenURIDialog", "Open URI", 0, QApplication::UnicodeUTF8));
96 0 : label_2->setText(QApplication::translate("OpenURIDialog", "Open payment request from URI or file", 0, QApplication::UnicodeUTF8));
97 0 : label->setText(QApplication::translate("OpenURIDialog", "URI:", 0, QApplication::UnicodeUTF8));
98 : #ifndef QT_NO_TOOLTIP
99 0 : selectFileButton->setToolTip(QApplication::translate("OpenURIDialog", "Select payment request file", 0, QApplication::UnicodeUTF8));
100 : #endif // QT_NO_TOOLTIP
101 0 : } // retranslateUi
102 :
103 : };
104 :
105 : namespace Ui {
106 : class OpenURIDialog: public Ui_OpenURIDialog {};
107 : } // namespace Ui
108 :
109 : QT_END_NAMESPACE
110 :
111 : #endif // UI_OPENURIDIALOG_H
|