/usr/include/qgis/ui_qgscredentialdialog.h is in libqgis-dev 2.8.6+dfsg-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 | /********************************************************************************
** Form generated from reading UI file 'qgscredentialdialog.ui'
**
** Created by: Qt User Interface Compiler version 4.8.7
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_QGSCREDENTIALDIALOG_H
#define UI_QGSCREDENTIALDIALOG_H
#include <QtCore/QVariant>
#include <QtGui/QAction>
#include <QtGui/QApplication>
#include <QtGui/QButtonGroup>
#include <QtGui/QDialog>
#include <QtGui/QDialogButtonBox>
#include <QtGui/QFormLayout>
#include <QtGui/QHeaderView>
#include <QtGui/QLabel>
#include <QtGui/QLineEdit>
QT_BEGIN_NAMESPACE
class Ui_QgsCredentialDialog
{
public:
QFormLayout *formLayout;
QLabel *label;
QLineEdit *leUsername;
QLabel *label_2;
QLineEdit *lePassword;
QDialogButtonBox *buttonBox;
QLabel *labelRealm;
QLabel *labelMessage;
QLabel *label_3;
void setupUi(QDialog *QgsCredentialDialog)
{
if (QgsCredentialDialog->objectName().isEmpty())
QgsCredentialDialog->setObjectName(QString::fromUtf8("QgsCredentialDialog"));
QgsCredentialDialog->resize(365, 156);
formLayout = new QFormLayout(QgsCredentialDialog);
formLayout->setObjectName(QString::fromUtf8("formLayout"));
formLayout->setFieldGrowthPolicy(QFormLayout::ExpandingFieldsGrow);
label = new QLabel(QgsCredentialDialog);
label->setObjectName(QString::fromUtf8("label"));
formLayout->setWidget(2, QFormLayout::LabelRole, label);
leUsername = new QLineEdit(QgsCredentialDialog);
leUsername->setObjectName(QString::fromUtf8("leUsername"));
formLayout->setWidget(2, QFormLayout::FieldRole, leUsername);
label_2 = new QLabel(QgsCredentialDialog);
label_2->setObjectName(QString::fromUtf8("label_2"));
formLayout->setWidget(3, QFormLayout::LabelRole, label_2);
lePassword = new QLineEdit(QgsCredentialDialog);
lePassword->setObjectName(QString::fromUtf8("lePassword"));
lePassword->setEchoMode(QLineEdit::Password);
formLayout->setWidget(3, QFormLayout::FieldRole, lePassword);
buttonBox = new QDialogButtonBox(QgsCredentialDialog);
buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
formLayout->setWidget(5, QFormLayout::SpanningRole, buttonBox);
labelRealm = new QLabel(QgsCredentialDialog);
labelRealm->setObjectName(QString::fromUtf8("labelRealm"));
formLayout->setWidget(1, QFormLayout::FieldRole, labelRealm);
labelMessage = new QLabel(QgsCredentialDialog);
labelMessage->setObjectName(QString::fromUtf8("labelMessage"));
formLayout->setWidget(4, QFormLayout::SpanningRole, labelMessage);
label_3 = new QLabel(QgsCredentialDialog);
label_3->setObjectName(QString::fromUtf8("label_3"));
formLayout->setWidget(1, QFormLayout::LabelRole, label_3);
retranslateUi(QgsCredentialDialog);
QObject::connect(buttonBox, SIGNAL(accepted()), QgsCredentialDialog, SLOT(accept()));
QObject::connect(buttonBox, SIGNAL(rejected()), QgsCredentialDialog, SLOT(reject()));
QMetaObject::connectSlotsByName(QgsCredentialDialog);
} // setupUi
void retranslateUi(QDialog *QgsCredentialDialog)
{
QgsCredentialDialog->setWindowTitle(QApplication::translate("QgsCredentialDialog", "Enter Credentials", 0, QApplication::UnicodeUTF8));
label->setText(QApplication::translate("QgsCredentialDialog", "Username", 0, QApplication::UnicodeUTF8));
label_2->setText(QApplication::translate("QgsCredentialDialog", "Password", 0, QApplication::UnicodeUTF8));
labelRealm->setText(QApplication::translate("QgsCredentialDialog", "TextLabel", 0, QApplication::UnicodeUTF8));
labelMessage->setText(QApplication::translate("QgsCredentialDialog", "TextLabel", 0, QApplication::UnicodeUTF8));
label_3->setText(QApplication::translate("QgsCredentialDialog", "Realm", 0, QApplication::UnicodeUTF8));
} // retranslateUi
};
namespace Ui {
class QgsCredentialDialog: public Ui_QgsCredentialDialog {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_QGSCREDENTIALDIALOG_H
|