Line data Source code
1 : /********************************************************************************
2 : ** Form generated from reading UI file 'editaddressdialog.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_EDITADDRESSDIALOG_H
10 : #define UI_EDITADDRESSDIALOG_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/QFormLayout>
19 : #include <QtGui/QHeaderView>
20 : #include <QtGui/QLabel>
21 : #include <QtGui/QLineEdit>
22 : #include <QtGui/QVBoxLayout>
23 : #include "qvalidatedlineedit.h"
24 :
25 : QT_BEGIN_NAMESPACE
26 :
27 : class Ui_EditAddressDialog
28 : {
29 : public:
30 : QVBoxLayout *verticalLayout;
31 : QFormLayout *formLayout;
32 : QLabel *label;
33 : QLineEdit *labelEdit;
34 : QLabel *label_2;
35 : QValidatedLineEdit *addressEdit;
36 : QDialogButtonBox *buttonBox;
37 :
38 0 : void setupUi(QDialog *EditAddressDialog)
39 : {
40 0 : if (EditAddressDialog->objectName().isEmpty())
41 0 : EditAddressDialog->setObjectName(QString::fromUtf8("EditAddressDialog"));
42 0 : EditAddressDialog->resize(457, 126);
43 0 : verticalLayout = new QVBoxLayout(EditAddressDialog);
44 0 : verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
45 0 : formLayout = new QFormLayout();
46 0 : formLayout->setObjectName(QString::fromUtf8("formLayout"));
47 0 : formLayout->setFieldGrowthPolicy(QFormLayout::AllNonFixedFieldsGrow);
48 0 : label = new QLabel(EditAddressDialog);
49 0 : label->setObjectName(QString::fromUtf8("label"));
50 :
51 0 : formLayout->setWidget(0, QFormLayout::LabelRole, label);
52 :
53 0 : labelEdit = new QLineEdit(EditAddressDialog);
54 0 : labelEdit->setObjectName(QString::fromUtf8("labelEdit"));
55 :
56 0 : formLayout->setWidget(0, QFormLayout::FieldRole, labelEdit);
57 :
58 0 : label_2 = new QLabel(EditAddressDialog);
59 0 : label_2->setObjectName(QString::fromUtf8("label_2"));
60 :
61 0 : formLayout->setWidget(1, QFormLayout::LabelRole, label_2);
62 :
63 0 : addressEdit = new QValidatedLineEdit(EditAddressDialog);
64 0 : addressEdit->setObjectName(QString::fromUtf8("addressEdit"));
65 :
66 0 : formLayout->setWidget(1, QFormLayout::FieldRole, addressEdit);
67 :
68 :
69 0 : verticalLayout->addLayout(formLayout);
70 :
71 0 : buttonBox = new QDialogButtonBox(EditAddressDialog);
72 0 : buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
73 0 : buttonBox->setOrientation(Qt::Horizontal);
74 0 : buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
75 :
76 0 : verticalLayout->addWidget(buttonBox);
77 :
78 : #ifndef QT_NO_SHORTCUT
79 0 : label->setBuddy(labelEdit);
80 0 : label_2->setBuddy(addressEdit);
81 : #endif // QT_NO_SHORTCUT
82 :
83 0 : retranslateUi(EditAddressDialog);
84 0 : QObject::connect(buttonBox, SIGNAL(accepted()), EditAddressDialog, SLOT(accept()));
85 0 : QObject::connect(buttonBox, SIGNAL(rejected()), EditAddressDialog, SLOT(reject()));
86 :
87 0 : QMetaObject::connectSlotsByName(EditAddressDialog);
88 0 : } // setupUi
89 :
90 0 : void retranslateUi(QDialog *EditAddressDialog)
91 : {
92 0 : EditAddressDialog->setWindowTitle(QApplication::translate("EditAddressDialog", "Edit Address", 0, QApplication::UnicodeUTF8));
93 0 : label->setText(QApplication::translate("EditAddressDialog", "&Label", 0, QApplication::UnicodeUTF8));
94 : #ifndef QT_NO_TOOLTIP
95 0 : labelEdit->setToolTip(QApplication::translate("EditAddressDialog", "The label associated with this address list entry", 0, QApplication::UnicodeUTF8));
96 : #endif // QT_NO_TOOLTIP
97 0 : label_2->setText(QApplication::translate("EditAddressDialog", "&Address", 0, QApplication::UnicodeUTF8));
98 : #ifndef QT_NO_TOOLTIP
99 0 : addressEdit->setToolTip(QApplication::translate("EditAddressDialog", "The address associated with this address list entry. This can only be modified for sending addresses.", 0, QApplication::UnicodeUTF8));
100 : #endif // QT_NO_TOOLTIP
101 0 : } // retranslateUi
102 :
103 : };
104 :
105 : namespace Ui {
106 : class EditAddressDialog: public Ui_EditAddressDialog {};
107 : } // namespace Ui
108 :
109 : QT_END_NAMESPACE
110 :
111 : #endif // UI_EDITADDRESSDIALOG_H
|