first_start_settings_dialog_base.h

00001 #ifndef FIRST_START_SETTINGS_DIALOG_BASE_H
00002 #define FIRST_START_SETTINGS_DIALOG_BASE_H
00003 
00004 #include <QtCore/QVariant>
00005 #include <QtGui/QAction>
00006 #include <QtGui/QApplication>
00007 #include <QtGui/QButtonGroup>
00008 #include <QtGui/QDialog>
00009 #include <QtGui/QFrame>
00010 #include <QtGui/QGridLayout>
00011 #include <QtGui/QHBoxLayout>
00012 #include <QtGui/QLabel>
00013 #include <QtGui/QLineEdit>
00014 #include <QtGui/QPushButton>
00015 #include <QtGui/QSpacerItem>
00016 
00017 class Ui_FirstStartSettingsDialogBase
00018 {
00019 public:
00020     QGridLayout *gridLayout;
00021     QSpacerItem *spacerItem;
00022     QLineEdit *algorithm_path_line_edit_;
00023     QLineEdit *algorithm_config_path_line_edit_;
00024     QPushButton *select_algorithm_config_path_push_button_;
00025     QPushButton *select_algorithm_path_push_button_;
00026     QLabel *algorithm_path_label_;
00027     QLabel *algorithm_config_path_label_;
00028     QLabel *label;
00029     QFrame *line;
00030     QHBoxLayout *hboxLayout;
00031     QSpacerItem *spacerItem1;
00032     QPushButton *ok_button;
00033     QPushButton *cancel_button;
00034 
00035     void setupUi(QDialog *FirstStartSettingsDialogBase)
00036     {
00037     FirstStartSettingsDialogBase->setObjectName(QString::fromUtf8("FirstStartSettingsDialogBase"));
00038     FirstStartSettingsDialogBase->resize(QSize(400, 300).expandedTo(FirstStartSettingsDialogBase->minimumSizeHint()));
00039     gridLayout = new QGridLayout(FirstStartSettingsDialogBase);
00040     gridLayout->setSpacing(6);
00041     gridLayout->setMargin(9);
00042     gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
00043     spacerItem = new QSpacerItem(382, 61, QSizePolicy::Minimum, QSizePolicy::Expanding);
00044 
00045     gridLayout->addItem(spacerItem, 6, 0, 1, 2);
00046 
00047     algorithm_path_line_edit_ = new QLineEdit(FirstStartSettingsDialogBase);
00048     algorithm_path_line_edit_->setObjectName(QString::fromUtf8("algorithm_path_line_edit_"));
00049 
00050     gridLayout->addWidget(algorithm_path_line_edit_, 5, 0, 1, 1);
00051 
00052     algorithm_config_path_line_edit_ = new QLineEdit(FirstStartSettingsDialogBase);
00053     algorithm_config_path_line_edit_->setObjectName(QString::fromUtf8("algorithm_config_path_line_edit_"));
00054 
00055     gridLayout->addWidget(algorithm_config_path_line_edit_, 3, 0, 1, 1);
00056 
00057     select_algorithm_config_path_push_button_ = new QPushButton(FirstStartSettingsDialogBase);
00058     select_algorithm_config_path_push_button_->setObjectName(QString::fromUtf8("select_algorithm_config_path_push_button_"));
00059     select_algorithm_config_path_push_button_->setMaximumSize(QSize(30, 30));
00060 
00061     gridLayout->addWidget(select_algorithm_config_path_push_button_, 3, 1, 1, 1);
00062 
00063     select_algorithm_path_push_button_ = new QPushButton(FirstStartSettingsDialogBase);
00064     select_algorithm_path_push_button_->setObjectName(QString::fromUtf8("select_algorithm_path_push_button_"));
00065     select_algorithm_path_push_button_->setMaximumSize(QSize(30, 30));
00066 
00067     gridLayout->addWidget(select_algorithm_path_push_button_, 5, 1, 1, 1);
00068 
00069     algorithm_path_label_ = new QLabel(FirstStartSettingsDialogBase);
00070     algorithm_path_label_->setObjectName(QString::fromUtf8("algorithm_path_label_"));
00071 
00072     gridLayout->addWidget(algorithm_path_label_, 4, 0, 1, 1);
00073 
00074     algorithm_config_path_label_ = new QLabel(FirstStartSettingsDialogBase);
00075     algorithm_config_path_label_->setObjectName(QString::fromUtf8("algorithm_config_path_label_"));
00076 
00077     gridLayout->addWidget(algorithm_config_path_label_, 2, 0, 1, 1);
00078 
00079     label = new QLabel(FirstStartSettingsDialogBase);
00080     label->setObjectName(QString::fromUtf8("label"));
00081     QFont font;
00082     font.setFamily(QString::fromUtf8("Sans Serif"));
00083     font.setPointSize(13);
00084     font.setBold(true);
00085     font.setItalic(false);
00086     font.setUnderline(false);
00087     font.setWeight(75);
00088     font.setStrikeOut(false);
00089     label->setFont(font);
00090     label->setTextFormat(Qt::AutoText);
00091 
00092     gridLayout->addWidget(label, 0, 0, 1, 2);
00093 
00094     line = new QFrame(FirstStartSettingsDialogBase);
00095     line->setObjectName(QString::fromUtf8("line"));
00096     line->setFrameShape(QFrame::HLine);
00097 
00098     gridLayout->addWidget(line, 1, 0, 1, 2);
00099 
00100     hboxLayout = new QHBoxLayout();
00101     hboxLayout->setSpacing(6);
00102     hboxLayout->setMargin(0);
00103     hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
00104     spacerItem1 = new QSpacerItem(131, 31, QSizePolicy::Expanding, QSizePolicy::Minimum);
00105 
00106     hboxLayout->addItem(spacerItem1);
00107 
00108     ok_button = new QPushButton(FirstStartSettingsDialogBase);
00109     ok_button->setObjectName(QString::fromUtf8("ok_button"));
00110 
00111     hboxLayout->addWidget(ok_button);
00112 
00113     cancel_button = new QPushButton(FirstStartSettingsDialogBase);
00114     cancel_button->setObjectName(QString::fromUtf8("cancel_button"));
00115 
00116     hboxLayout->addWidget(cancel_button);
00117 
00118 
00119     gridLayout->addLayout(hboxLayout, 7, 0, 1, 2);
00120 
00121     retranslateUi(FirstStartSettingsDialogBase);
00122     QObject::connect(ok_button, SIGNAL(clicked()), FirstStartSettingsDialogBase, SLOT(accept()));
00123     QObject::connect(cancel_button, SIGNAL(clicked()), FirstStartSettingsDialogBase, SLOT(reject()));
00124 
00125     QMetaObject::connectSlotsByName(FirstStartSettingsDialogBase);
00126     } // setupUi
00127 
00128     void retranslateUi(QDialog *FirstStartSettingsDialogBase)
00129     {
00130     FirstStartSettingsDialogBase->setWindowTitle(QApplication::translate("FirstStartSettingsDialogBase", "iMEDgine", 0, QApplication::UnicodeUTF8));
00131     select_algorithm_config_path_push_button_->setText(QApplication::translate("FirstStartSettingsDialogBase", "", 0, QApplication::UnicodeUTF8));
00132     select_algorithm_path_push_button_->setText(QApplication::translate("FirstStartSettingsDialogBase", "", 0, QApplication::UnicodeUTF8));
00133     algorithm_path_label_->setText(QApplication::translate("FirstStartSettingsDialogBase", "Algorithm Path:", 0, QApplication::UnicodeUTF8));
00134     algorithm_config_path_label_->setText(QApplication::translate("FirstStartSettingsDialogBase", "Algorithm Configuration File:", 0, QApplication::UnicodeUTF8));
00135     label->setText(QApplication::translate("FirstStartSettingsDialogBase", "iMEDgine", 0, QApplication::UnicodeUTF8));
00136     ok_button->setText(QApplication::translate("FirstStartSettingsDialogBase", "OK", 0, QApplication::UnicodeUTF8));
00137     cancel_button->setText(QApplication::translate("FirstStartSettingsDialogBase", "Cancel", 0, QApplication::UnicodeUTF8));
00138     Q_UNUSED(FirstStartSettingsDialogBase);
00139     } // retranslateUi
00140 
00141 };
00142 
00143 namespace Ui {
00144     class FirstStartSettingsDialogBase: public Ui_FirstStartSettingsDialogBase {};
00145 } // namespace Ui
00146 
00147 #endif // FIRST_START_SETTINGS_DIALOG_BASE_H

Generated on Sun Aug 13 18:19:40 2006 for iMEDgine by  doxygen 1.4.6