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/QDialog>
00015 #include <QtGui/QDialogButtonBox>
00016 #include <QtGui/QGridLayout>
00017 #include <QtGui/QHeaderView>
00018 #include <QtGui/QScrollArea>
00019 #include <QtGui/QVBoxLayout>
00020 #include <QtGui/QWidget>
00021
00022 QT_BEGIN_NAMESPACE
00023
00024 class Ui_ColorDialog
00025 {
00026 public:
00027 QGridLayout *gridLayout;
00028 QScrollArea *scrollArea;
00029 QWidget *scrollAreaWidgetContents;
00030 QGridLayout *gridLayout_2;
00031 QWidget *area;
00032 QVBoxLayout *verticalLayout;
00033 QDialogButtonBox *buttonBox;
00034
00035 void setupUi(QDialog *ColorDialog)
00036 {
00037 if (ColorDialog->objectName().isEmpty())
00038 ColorDialog->setObjectName(QString::fromUtf8("ColorDialog"));
00039 ColorDialog->resize(570, 359);
00040 gridLayout = new QGridLayout(ColorDialog);
00041 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
00042 scrollArea = new QScrollArea(ColorDialog);
00043 scrollArea->setObjectName(QString::fromUtf8("scrollArea"));
00044 scrollArea->setWidgetResizable(true);
00045 scrollAreaWidgetContents = new QWidget();
00046 scrollAreaWidgetContents->setObjectName(QString::fromUtf8("scrollAreaWidgetContents"));
00047 scrollAreaWidgetContents->setGeometry(QRect(0, 0, 548, 297));
00048 gridLayout_2 = new QGridLayout(scrollAreaWidgetContents);
00049 gridLayout_2->setObjectName(QString::fromUtf8("gridLayout_2"));
00050 area = new QWidget(scrollAreaWidgetContents);
00051 area->setObjectName(QString::fromUtf8("area"));
00052 verticalLayout = new QVBoxLayout(area);
00053 verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
00054
00055 gridLayout_2->addWidget(area, 0, 0, 1, 1);
00056
00057 scrollArea->setWidget(scrollAreaWidgetContents);
00058
00059 gridLayout->addWidget(scrollArea, 0, 0, 1, 1);
00060
00061 buttonBox = new QDialogButtonBox(ColorDialog);
00062 buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
00063 buttonBox->setOrientation(Qt::Horizontal);
00064 buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
00065
00066 gridLayout->addWidget(buttonBox, 1, 0, 1, 1);
00067
00068
00069 retranslateUi(ColorDialog);
00070 QObject::connect(buttonBox, SIGNAL(accepted()), ColorDialog, SLOT(accept()));
00071 QObject::connect(buttonBox, SIGNAL(rejected()), ColorDialog, SLOT(reject()));
00072
00073 QMetaObject::connectSlotsByName(ColorDialog);
00074 }
00075
00076 void retranslateUi(QDialog *ColorDialog)
00077 {
00078 ColorDialog->setWindowTitle(QApplication::translate("ColorDialog", "Highlighting Colors", 0, QApplication::UnicodeUTF8));
00079 Q_UNUSED(ColorDialog);
00080 }
00081
00082 };
00083
00084 namespace Ui {
00085 class ColorDialog: public Ui_ColorDialog {};
00086 }
00087
00088 QT_END_NAMESPACE
00089