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
|
/********************************************************************************
** Form generated from reading ui file 'fontform.ui'
**
** Created: Thu Oct 8 21:52:13 2009
** by: Qt User Interface Compiler version 4.5.2
**
** WARNING! All changes made in this file will be lost when recompiling ui file!
********************************************************************************/
#ifndef FONTFORM_H
#define FONTFORM_H
#include <QtCore/QVariant>
#include <QtGui/QAction>
#include <QtGui/QApplication>
#include <QtGui/QButtonGroup>
#include <QtGui/QDialog>
#include <QtGui/QDialogButtonBox>
#include <QtGui/QGroupBox>
#include <QtGui/QHeaderView>
#include <QtGui/QLabel>
#include <QtGui/QListWidget>
QT_BEGIN_NAMESPACE
class Ui_FixedFontDialog
{
public:
QDialogButtonBox *buttonBox;
QLabel *label;
QListWidget *namelist;
QLabel *label_2;
QListWidget *sizelist;
QGroupBox *groupBox;
QLabel *sample;
void setupUi(QDialog *FixedFontDialog)
{
if (FixedFontDialog->objectName().isEmpty())
FixedFontDialog->setObjectName(QString::fromUtf8("FixedFontDialog"));
FixedFontDialog->resize(376, 311);
FixedFontDialog->setModal(true);
buttonBox = new QDialogButtonBox(FixedFontDialog);
buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setGeometry(QRect(40, 270, 321, 32));
buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok);
label = new QLabel(FixedFontDialog);
label->setObjectName(QString::fromUtf8("label"));
label->setGeometry(QRect(10, 10, 56, 18));
namelist = new QListWidget(FixedFontDialog);
namelist->setObjectName(QString::fromUtf8("namelist"));
namelist->setGeometry(QRect(10, 30, 251, 121));
label_2 = new QLabel(FixedFontDialog);
label_2->setObjectName(QString::fromUtf8("label_2"));
label_2->setGeometry(QRect(270, 10, 56, 18));
sizelist = new QListWidget(FixedFontDialog);
sizelist->setObjectName(QString::fromUtf8("sizelist"));
sizelist->setGeometry(QRect(270, 30, 94, 121));
groupBox = new QGroupBox(FixedFontDialog);
groupBox->setObjectName(QString::fromUtf8("groupBox"));
groupBox->setGeometry(QRect(10, 160, 351, 101));
sample = new QLabel(groupBox);
sample->setObjectName(QString::fromUtf8("sample"));
sample->setGeometry(QRect(20, 30, 311, 31));
sample->setAutoFillBackground(false);
sample->setAlignment(Qt::AlignCenter);
retranslateUi(FixedFontDialog);
QObject::connect(buttonBox, SIGNAL(accepted()), FixedFontDialog, SLOT(accept()));
QObject::connect(buttonBox, SIGNAL(rejected()), FixedFontDialog, SLOT(reject()));
QMetaObject::connectSlotsByName(FixedFontDialog);
} // setupUi
void retranslateUi(QDialog *FixedFontDialog)
{
FixedFontDialog->setWindowTitle(QApplication::translate("FixedFontDialog", "Select Font", 0, QApplication::UnicodeUTF8));
label->setText(QApplication::translate("FixedFontDialog", "Font", 0, QApplication::UnicodeUTF8));
label_2->setText(QApplication::translate("FixedFontDialog", "Size", 0, QApplication::UnicodeUTF8));
groupBox->setTitle(QApplication::translate("FixedFontDialog", "Sample", 0, QApplication::UnicodeUTF8));
sample->setText(QApplication::translate("FixedFontDialog", "AaBbZz123", 0, QApplication::UnicodeUTF8));
Q_UNUSED(FixedFontDialog);
} // retranslateUi
};
namespace Ui {
class FixedFontDialog: public Ui_FixedFontDialog {};
} // namespace Ui
QT_END_NAMESPACE
#endif // FONTFORM_H
|