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
|
/********************************************************************************
** Form generated from reading ui file 'synlightconf.ui'
**
** Created: Thu Oct 8 21:52:14 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 SYNLIGHTCONF_H
#define SYNLIGHTCONF_H
#include <QtCore/QVariant>
#include <QtGui/QAction>
#include <QtGui/QApplication>
#include <QtGui/QButtonGroup>
#include <QtGui/QCheckBox>
#include <QtGui/QDialog>
#include <QtGui/QDialogButtonBox>
#include <QtGui/QHeaderView>
#include <QtGui/QLabel>
#include <QtGui/QPushButton>
QT_BEGIN_NAMESPACE
class Ui_FMSynLightConf
{
public:
QPushButton *keywordButton;
QPushButton *commentsButton;
QPushButton *stringsButton;
QPushButton *untermStringButton;
QLabel *keywordLabel;
QLabel *commentsLabel;
QLabel *stringsLabel;
QLabel *untermStringsLabel;
QCheckBox *enableCB;
QDialogButtonBox *buttonBox;
void setupUi(QDialog *FMSynLightConf)
{
if (FMSynLightConf->objectName().isEmpty())
FMSynLightConf->setObjectName(QString::fromUtf8("FMSynLightConf"));
FMSynLightConf->resize(303, 296);
keywordButton = new QPushButton(FMSynLightConf);
keywordButton->setObjectName(QString::fromUtf8("keywordButton"));
keywordButton->setGeometry(QRect(240, 60, 21, 21));
commentsButton = new QPushButton(FMSynLightConf);
commentsButton->setObjectName(QString::fromUtf8("commentsButton"));
commentsButton->setGeometry(QRect(240, 100, 21, 21));
stringsButton = new QPushButton(FMSynLightConf);
stringsButton->setObjectName(QString::fromUtf8("stringsButton"));
stringsButton->setGeometry(QRect(240, 150, 21, 21));
untermStringButton = new QPushButton(FMSynLightConf);
untermStringButton->setObjectName(QString::fromUtf8("untermStringButton"));
untermStringButton->setGeometry(QRect(240, 200, 21, 21));
keywordLabel = new QLabel(FMSynLightConf);
keywordLabel->setObjectName(QString::fromUtf8("keywordLabel"));
keywordLabel->setGeometry(QRect(30, 60, 191, 21));
keywordLabel->setAutoFillBackground(true);
commentsLabel = new QLabel(FMSynLightConf);
commentsLabel->setObjectName(QString::fromUtf8("commentsLabel"));
commentsLabel->setGeometry(QRect(30, 100, 191, 21));
commentsLabel->setAutoFillBackground(true);
stringsLabel = new QLabel(FMSynLightConf);
stringsLabel->setObjectName(QString::fromUtf8("stringsLabel"));
stringsLabel->setGeometry(QRect(30, 150, 191, 21));
stringsLabel->setAutoFillBackground(true);
untermStringsLabel = new QLabel(FMSynLightConf);
untermStringsLabel->setObjectName(QString::fromUtf8("untermStringsLabel"));
untermStringsLabel->setGeometry(QRect(30, 200, 191, 21));
untermStringsLabel->setAutoFillBackground(true);
enableCB = new QCheckBox(FMSynLightConf);
enableCB->setObjectName(QString::fromUtf8("enableCB"));
enableCB->setGeometry(QRect(30, 20, 231, 21));
buttonBox = new QDialogButtonBox(FMSynLightConf);
buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setGeometry(QRect(30, 240, 241, 32));
buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok);
retranslateUi(FMSynLightConf);
QObject::connect(buttonBox, SIGNAL(accepted()), FMSynLightConf, SLOT(accept()));
QObject::connect(buttonBox, SIGNAL(rejected()), FMSynLightConf, SLOT(reject()));
QMetaObject::connectSlotsByName(FMSynLightConf);
} // setupUi
void retranslateUi(QDialog *FMSynLightConf)
{
FMSynLightConf->setWindowTitle(QApplication::translate("FMSynLightConf", "Syntax Highlighting", 0, QApplication::UnicodeUTF8));
keywordButton->setText(QApplication::translate("FMSynLightConf", "...", 0, QApplication::UnicodeUTF8));
commentsButton->setText(QApplication::translate("FMSynLightConf", "...", 0, QApplication::UnicodeUTF8));
stringsButton->setText(QApplication::translate("FMSynLightConf", "...", 0, QApplication::UnicodeUTF8));
untermStringButton->setText(QApplication::translate("FMSynLightConf", "...", 0, QApplication::UnicodeUTF8));
keywordLabel->setText(QApplication::translate("FMSynLightConf", "Keyword (e.g., for, while, end)", 0, QApplication::UnicodeUTF8));
commentsLabel->setText(QApplication::translate("FMSynLightConf", "Comments", 0, QApplication::UnicodeUTF8));
stringsLabel->setText(QApplication::translate("FMSynLightConf", "Strings", 0, QApplication::UnicodeUTF8));
untermStringsLabel->setText(QApplication::translate("FMSynLightConf", "Unterminated Strings", 0, QApplication::UnicodeUTF8));
enableCB->setText(QApplication::translate("FMSynLightConf", "Enable Syntax Highlighting", 0, QApplication::UnicodeUTF8));
Q_UNUSED(FMSynLightConf);
} // retranslateUi
};
namespace Ui {
class FMSynLightConf: public Ui_FMSynLightConf {};
} // namespace Ui
QT_END_NAMESPACE
#endif // SYNLIGHTCONF_H
|