/usr/include/qgis/ui_qgssublayersdialogbase.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 | /********************************************************************************
** Form generated from reading UI file 'qgssublayersdialogbase.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_QGSSUBLAYERSDIALOGBASE_H
#define UI_QGSSUBLAYERSDIALOGBASE_H
#include <QtCore/QVariant>
#include <QtGui/QAction>
#include <QtGui/QApplication>
#include <QtGui/QButtonGroup>
#include <QtGui/QDialog>
#include <QtGui/QDialogButtonBox>
#include <QtGui/QGridLayout>
#include <QtGui/QHeaderView>
#include <QtGui/QTreeWidget>
QT_BEGIN_NAMESPACE
class Ui_QgsSublayersDialogBase
{
public:
QGridLayout *gridLayout;
QTreeWidget *layersTable;
QDialogButtonBox *buttonBox;
void setupUi(QDialog *QgsSublayersDialogBase)
{
if (QgsSublayersDialogBase->objectName().isEmpty())
QgsSublayersDialogBase->setObjectName(QString::fromUtf8("QgsSublayersDialogBase"));
QgsSublayersDialogBase->resize(584, 236);
gridLayout = new QGridLayout(QgsSublayersDialogBase);
gridLayout->setSpacing(6);
gridLayout->setContentsMargins(9, 9, 9, 9);
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
layersTable = new QTreeWidget(QgsSublayersDialogBase);
layersTable->setObjectName(QString::fromUtf8("layersTable"));
layersTable->setSelectionMode(QAbstractItemView::ExtendedSelection);
layersTable->setSelectionBehavior(QAbstractItemView::SelectRows);
gridLayout->addWidget(layersTable, 0, 0, 1, 1);
buttonBox = new QDialogButtonBox(QgsSublayersDialogBase);
buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
gridLayout->addWidget(buttonBox, 2, 0, 1, 1);
retranslateUi(QgsSublayersDialogBase);
QObject::connect(buttonBox, SIGNAL(accepted()), QgsSublayersDialogBase, SLOT(accept()));
QObject::connect(buttonBox, SIGNAL(rejected()), QgsSublayersDialogBase, SLOT(reject()));
QMetaObject::connectSlotsByName(QgsSublayersDialogBase);
} // setupUi
void retranslateUi(QDialog *QgsSublayersDialogBase)
{
QgsSublayersDialogBase->setWindowTitle(QApplication::translate("QgsSublayersDialogBase", "Select layers to load", 0, QApplication::UnicodeUTF8));
QTreeWidgetItem *___qtreewidgetitem = layersTable->headerItem();
___qtreewidgetitem->setText(0, QApplication::translate("QgsSublayersDialogBase", "1", 0, QApplication::UnicodeUTF8));
} // retranslateUi
};
namespace Ui {
class QgsSublayersDialogBase: public Ui_QgsSublayersDialogBase {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_QGSSUBLAYERSDIALOGBASE_H
|