00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #include <QtCore/QVariant>
00011 #include <QtGui/QAction>
00012 #include <QtGui/QApplication>
00013 #include <QtGui/QButtonGroup>
00014 #include <QtGui/QGridLayout>
00015 #include <QtGui/QGroupBox>
00016 #include <QtGui/QHBoxLayout>
00017 #include <QtGui/QHeaderView>
00018 #include <QtGui/QLabel>
00019 #include <QtGui/QSpacerItem>
00020 #include <QtGui/QToolButton>
00021 #include <QtGui/QWidget>
00022
00023 QT_BEGIN_NAMESPACE
00024
00025 class Ui_MainColorForm
00026 {
00027 public:
00028 QGridLayout *gridLayout_2;
00029 QGroupBox *groupBox;
00030 QGridLayout *gridLayout;
00031 QHBoxLayout *horizontalLayout;
00032 QLabel *label;
00033 QToolButton *colorButton;
00034 QSpacerItem *horizontalSpacer;
00035 QLabel *label_2;
00036 QToolButton *backgroundColorButton;
00037
00038 void setupUi(QWidget *MainColorForm)
00039 {
00040 if (MainColorForm->objectName().isEmpty())
00041 MainColorForm->setObjectName(QString::fromUtf8("MainColorForm"));
00042 MainColorForm->resize(314, 96);
00043 gridLayout_2 = new QGridLayout(MainColorForm);
00044 gridLayout_2->setObjectName(QString::fromUtf8("gridLayout_2"));
00045 groupBox = new QGroupBox(MainColorForm);
00046 groupBox->setObjectName(QString::fromUtf8("groupBox"));
00047 gridLayout = new QGridLayout(groupBox);
00048 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
00049 horizontalLayout = new QHBoxLayout();
00050 horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
00051 label = new QLabel(groupBox);
00052 label->setObjectName(QString::fromUtf8("label"));
00053
00054 horizontalLayout->addWidget(label);
00055
00056 colorButton = new QToolButton(groupBox);
00057 colorButton->setObjectName(QString::fromUtf8("colorButton"));
00058
00059 horizontalLayout->addWidget(colorButton);
00060
00061 horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
00062
00063 horizontalLayout->addItem(horizontalSpacer);
00064
00065 label_2 = new QLabel(groupBox);
00066 label_2->setObjectName(QString::fromUtf8("label_2"));
00067
00068 horizontalLayout->addWidget(label_2);
00069
00070 backgroundColorButton = new QToolButton(groupBox);
00071 backgroundColorButton->setObjectName(QString::fromUtf8("backgroundColorButton"));
00072
00073 horizontalLayout->addWidget(backgroundColorButton);
00074
00075
00076 gridLayout->addLayout(horizontalLayout, 0, 0, 1, 1);
00077
00078
00079 gridLayout_2->addWidget(groupBox, 1, 0, 1, 1);
00080
00081
00082 retranslateUi(MainColorForm);
00083
00084 QMetaObject::connectSlotsByName(MainColorForm);
00085 }
00086
00087 void retranslateUi(QWidget *MainColorForm)
00088 {
00089 MainColorForm->setWindowTitle(QApplication::translate("MainColorForm", "Form", 0, QApplication::UnicodeUTF8));
00090 groupBox->setTitle(QApplication::translate("MainColorForm", "Main Color", 0, QApplication::UnicodeUTF8));
00091 label->setText(QApplication::translate("MainColorForm", "Foreground", 0, QApplication::UnicodeUTF8));
00092 #ifndef QT_NO_TOOLTIP
00093 colorButton->setToolTip(QApplication::translate("MainColorForm", "foreground color", 0, QApplication::UnicodeUTF8));
00094 #endif // QT_NO_TOOLTIP
00095 colorButton->setText(QApplication::translate("MainColorForm", "...", 0, QApplication::UnicodeUTF8));
00096 label_2->setText(QApplication::translate("MainColorForm", "Background", 0, QApplication::UnicodeUTF8));
00097 #ifndef QT_NO_TOOLTIP
00098 backgroundColorButton->setToolTip(QApplication::translate("MainColorForm", "background color", 0, QApplication::UnicodeUTF8));
00099 #endif // QT_NO_TOOLTIP
00100 backgroundColorButton->setText(QApplication::translate("MainColorForm", "...", 0, QApplication::UnicodeUTF8));
00101 Q_UNUSED(MainColorForm);
00102 }
00103
00104 };
00105
00106 namespace Ui {
00107 class MainColorForm: public Ui_MainColorForm {};
00108 }
00109
00110 QT_END_NAMESPACE
00111