#ifndef WORKSHEET_H
#define WORKSHEET_H

#include <QtCore/QVariant>
#include <QtGui/QAction>
#include <QtGui/QApplication>
#include <QtGui/QButtonGroup>
#include <QtGui/QHBoxLayout>
#include <QtGui/QLabel>
#include <QtGui/QLineEdit>
#include <QtGui/QMainWindow>
#include <QtGui/QPushButton>
#include <QtGui/QSpacerItem>
#include <QtGui/QTableWidget>
#include <QtGui/QVBoxLayout>
#include <QtGui/QWidget>

class Ui_MainWindowWorksheet
{
public:
    QWidget *centralWidget;
    QVBoxLayout *vboxLayout;
    QHBoxLayout *hboxLayout;
    QLabel *label;
    QLineEdit *lineEditRequete;
    QPushButton *pushButtonOK;
    QTableWidget *tableWidgetResultat;
    QHBoxLayout *hboxLayout1;
    QSpacerItem *spacerItem;
    QPushButton *pushButtonConnexion;
    QPushButton *pushButtonImprimer;
    QPushButton *pushButtonQuitter;

    void setupUi(QMainWindow *MainWindowWorksheet)
    {
    MainWindowWorksheet->setObjectName(QString::fromUtf8("MainWindowWorksheet"));
    MainWindowWorksheet->resize(QSize(642, 596).expandedTo(MainWindowWorksheet->minimumSizeHint()));
    centralWidget = new QWidget(MainWindowWorksheet);
    centralWidget->setObjectName(QString::fromUtf8("centralWidget"));
    vboxLayout = new QVBoxLayout(centralWidget);
    vboxLayout->setSpacing(6);
    vboxLayout->setMargin(8);
    vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
    hboxLayout = new QHBoxLayout();
    hboxLayout->setSpacing(6);
    hboxLayout->setMargin(0);
    hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
    label = new QLabel(centralWidget);
    label->setObjectName(QString::fromUtf8("label"));

    hboxLayout->addWidget(label);

    lineEditRequete = new QLineEdit(centralWidget);
    lineEditRequete->setObjectName(QString::fromUtf8("lineEditRequete"));

    hboxLayout->addWidget(lineEditRequete);

    pushButtonOK = new QPushButton(centralWidget);
    pushButtonOK->setObjectName(QString::fromUtf8("pushButtonOK"));

    hboxLayout->addWidget(pushButtonOK);


    vboxLayout->addLayout(hboxLayout);

    tableWidgetResultat = new QTableWidget(centralWidget);
    tableWidgetResultat->setObjectName(QString::fromUtf8("tableWidgetResultat"));

    vboxLayout->addWidget(tableWidgetResultat);

    hboxLayout1 = new QHBoxLayout();
    hboxLayout1->setSpacing(6);
    hboxLayout1->setMargin(0);
    hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
    spacerItem = new QSpacerItem(131, 31, QSizePolicy::Expanding, QSizePolicy::Minimum);

    hboxLayout1->addItem(spacerItem);

    pushButtonConnexion = new QPushButton(centralWidget);
    pushButtonConnexion->setObjectName(QString::fromUtf8("pushButtonConnexion"));

    hboxLayout1->addWidget(pushButtonConnexion);

    pushButtonImprimer = new QPushButton(centralWidget);
    pushButtonImprimer->setObjectName(QString::fromUtf8("pushButtonImprimer"));

    hboxLayout1->addWidget(pushButtonImprimer);

    pushButtonQuitter = new QPushButton(centralWidget);
    pushButtonQuitter->setObjectName(QString::fromUtf8("pushButtonQuitter"));

    hboxLayout1->addWidget(pushButtonQuitter);


    vboxLayout->addLayout(hboxLayout1);

    MainWindowWorksheet->setCentralWidget(centralWidget);
    retranslateUi(MainWindowWorksheet);

    QMetaObject::connectSlotsByName(MainWindowWorksheet);
    } // setupUi

    void retranslateUi(QMainWindow *MainWindowWorksheet)
    {
    MainWindowWorksheet->setWindowTitle(QApplication::translate("MainWindowWorksheet", "Sql Worksheet by BtsInfoGap", 0, QApplication::UnicodeUTF8));
    label->setText(QApplication::translate("MainWindowWorksheet", "<html><head><meta name=\"qrichtext\" content=\"1\" /></head><body style=\" white-space: pre-wrap; font-family:Sans Serif; font-weight:400; font-style:normal; text-decoration:none;\"><p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">Requete : </p></body></html>", 0, QApplication::UnicodeUTF8));
    pushButtonOK->setText(QApplication::translate("MainWindowWorksheet", "OK", 0, QApplication::UnicodeUTF8));
    pushButtonConnexion->setText(QApplication::translate("MainWindowWorksheet", "&Connexion", 0, QApplication::UnicodeUTF8));
    pushButtonImprimer->setText(QApplication::translate("MainWindowWorksheet", "&Imprimer", 0, QApplication::UnicodeUTF8));
    pushButtonQuitter->setText(QApplication::translate("MainWindowWorksheet", "&Quitter", 0, QApplication::UnicodeUTF8));
    Q_UNUSED(MainWindowWorksheet);
    } // retranslateUi

};

namespace Ui {
    class MainWindowWorksheet: public Ui_MainWindowWorksheet {};
} // namespace Ui

#endif // WORKSHEET_H
