/usr/include/qgis/ui_qgsauthmethodplugins.h is in libqgis-dev 2.18.17+dfsg-1.
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 | /********************************************************************************
** Form generated from reading UI file 'qgsauthmethodplugins.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_QGSAUTHMETHODPLUGINS_H
#define UI_QGSAUTHMETHODPLUGINS_H
#include <QtCore/QVariant>
#include <QtGui/QAction>
#include <QtGui/QApplication>
#include <QtGui/QButtonGroup>
#include <QtGui/QDialog>
#include <QtGui/QDialogButtonBox>
#include <QtGui/QHeaderView>
#include <QtGui/QLabel>
#include <QtGui/QTableWidget>
#include <QtGui/QVBoxLayout>
QT_BEGIN_NAMESPACE
class Ui_QgsAuthMethodPlugins
{
public:
QVBoxLayout *verticalLayout;
QLabel *label;
QTableWidget *tblAuthPlugins;
QDialogButtonBox *buttonBox;
void setupUi(QDialog *QgsAuthMethodPlugins)
{
if (QgsAuthMethodPlugins->objectName().isEmpty())
QgsAuthMethodPlugins->setObjectName(QString::fromUtf8("QgsAuthMethodPlugins"));
QgsAuthMethodPlugins->resize(400, 300);
verticalLayout = new QVBoxLayout(QgsAuthMethodPlugins);
verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
verticalLayout->setContentsMargins(6, 6, 6, 6);
label = new QLabel(QgsAuthMethodPlugins);
label->setObjectName(QString::fromUtf8("label"));
verticalLayout->addWidget(label);
tblAuthPlugins = new QTableWidget(QgsAuthMethodPlugins);
tblAuthPlugins->setObjectName(QString::fromUtf8("tblAuthPlugins"));
verticalLayout->addWidget(tblAuthPlugins);
buttonBox = new QDialogButtonBox(QgsAuthMethodPlugins);
buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setStandardButtons(QDialogButtonBox::Close);
verticalLayout->addWidget(buttonBox);
retranslateUi(QgsAuthMethodPlugins);
QMetaObject::connectSlotsByName(QgsAuthMethodPlugins);
} // setupUi
void retranslateUi(QDialog *QgsAuthMethodPlugins)
{
QgsAuthMethodPlugins->setWindowTitle(QApplication::translate("QgsAuthMethodPlugins", "Dialog", 0, QApplication::UnicodeUTF8));
label->setText(QApplication::translate("QgsAuthMethodPlugins", "Installed authentication method plugins", 0, QApplication::UnicodeUTF8));
} // retranslateUi
};
namespace Ui {
class QgsAuthMethodPlugins: public Ui_QgsAuthMethodPlugins {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_QGSAUTHMETHODPLUGINS_H
|