/usr/include/gofigure2/ui_QNameDescriptionInputDialog.h is in libgofigure-dev 0.9.0-3+b1.
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 116 117 118 119 120 121 122 123 124 125 | /********************************************************************************
** Form generated from reading UI file 'QNameDescriptionInputDialog.ui'
**
** Created by: Qt User Interface Compiler version 4.8.6
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_QNAMEDESCRIPTIONINPUTDIALOG_H
#define UI_QNAMEDESCRIPTIONINPUTDIALOG_H
#include <QtCore/QVariant>
#include <QtGui/QAction>
#include <QtGui/QApplication>
#include <QtGui/QButtonGroup>
#include <QtGui/QDialog>
#include <QtGui/QDialogButtonBox>
#include <QtGui/QFormLayout>
#include <QtGui/QGridLayout>
#include <QtGui/QHeaderView>
#include <QtGui/QLabel>
#include <QtGui/QLineEdit>
#include <QtGui/QVBoxLayout>
QT_BEGIN_NAMESPACE
class Ui_QNameDescriptionInputDialog
{
public:
QGridLayout *gridLayout;
QVBoxLayout *verticalLayout_3;
QVBoxLayout *verticalLayout_2;
QLabel *CommonLabel;
QLabel *EntityLabel;
QFormLayout *formLayout;
QLabel *NameLabel;
QLineEdit *NameLineEdit;
QDialogButtonBox *NameDescriptionButtonBox;
void setupUi(QDialog *QNameDescriptionInputDialog)
{
if (QNameDescriptionInputDialog->objectName().isEmpty())
QNameDescriptionInputDialog->setObjectName(QString::fromUtf8("QNameDescriptionInputDialog"));
QNameDescriptionInputDialog->resize(286, 173);
gridLayout = new QGridLayout(QNameDescriptionInputDialog);
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
verticalLayout_3 = new QVBoxLayout();
verticalLayout_3->setObjectName(QString::fromUtf8("verticalLayout_3"));
verticalLayout_2 = new QVBoxLayout();
verticalLayout_2->setObjectName(QString::fromUtf8("verticalLayout_2"));
CommonLabel = new QLabel(QNameDescriptionInputDialog);
CommonLabel->setObjectName(QString::fromUtf8("CommonLabel"));
QFont font;
font.setBold(true);
font.setItalic(false);
font.setUnderline(false);
font.setWeight(75);
font.setStrikeOut(false);
CommonLabel->setFont(font);
verticalLayout_2->addWidget(CommonLabel);
EntityLabel = new QLabel(QNameDescriptionInputDialog);
EntityLabel->setObjectName(QString::fromUtf8("EntityLabel"));
QFont font1;
font1.setBold(true);
font1.setWeight(75);
EntityLabel->setFont(font1);
verticalLayout_2->addWidget(EntityLabel);
verticalLayout_3->addLayout(verticalLayout_2);
formLayout = new QFormLayout();
formLayout->setObjectName(QString::fromUtf8("formLayout"));
formLayout->setFieldGrowthPolicy(QFormLayout::AllNonFixedFieldsGrow);
NameLabel = new QLabel(QNameDescriptionInputDialog);
NameLabel->setObjectName(QString::fromUtf8("NameLabel"));
formLayout->setWidget(0, QFormLayout::LabelRole, NameLabel);
NameLineEdit = new QLineEdit(QNameDescriptionInputDialog);
NameLineEdit->setObjectName(QString::fromUtf8("NameLineEdit"));
formLayout->setWidget(0, QFormLayout::FieldRole, NameLineEdit);
verticalLayout_3->addLayout(formLayout);
NameDescriptionButtonBox = new QDialogButtonBox(QNameDescriptionInputDialog);
NameDescriptionButtonBox->setObjectName(QString::fromUtf8("NameDescriptionButtonBox"));
NameDescriptionButtonBox->setOrientation(Qt::Horizontal);
NameDescriptionButtonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
verticalLayout_3->addWidget(NameDescriptionButtonBox);
gridLayout->addLayout(verticalLayout_3, 0, 0, 1, 1);
QWidget::setTabOrder(NameLineEdit, NameDescriptionButtonBox);
retranslateUi(QNameDescriptionInputDialog);
QObject::connect(NameDescriptionButtonBox, SIGNAL(rejected()), QNameDescriptionInputDialog, SLOT(reject()));
QMetaObject::connectSlotsByName(QNameDescriptionInputDialog);
} // setupUi
void retranslateUi(QDialog *QNameDescriptionInputDialog)
{
QNameDescriptionInputDialog->setWindowTitle(QApplication::translate("QNameDescriptionInputDialog", "Dialog", 0, QApplication::UnicodeUTF8));
CommonLabel->setText(QApplication::translate("QNameDescriptionInputDialog", "Please enter the name and description of the ", 0, QApplication::UnicodeUTF8));
EntityLabel->setText(QApplication::translate("QNameDescriptionInputDialog", "new bookmark you want to save:", 0, QApplication::UnicodeUTF8));
NameLabel->setText(QApplication::translate("QNameDescriptionInputDialog", "Name:", 0, QApplication::UnicodeUTF8));
} // retranslateUi
};
namespace Ui {
class QNameDescriptionInputDialog: public Ui_QNameDescriptionInputDialog {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_QNAMEDESCRIPTIONINPUTDIALOG_H
|