source: BAORadio/libindi/libindi/ui_liste.h @ 692

Last change on this file since 692 was 692, checked in by frichard, 12 years ago
File size: 2.2 KB
Line 
1/********************************************************************************
2** Form generated from reading UI file 'liste.ui'
3**
4** Created
5**      by: Qt User Interface Compiler version 4.7.4
6**
7** WARNING! All changes made in this file will be lost when recompiling UI file!
8********************************************************************************/
9
10#ifndef UI_LISTE_H
11#define UI_LISTE_H
12
13#include <QtCore/QVariant>
14#include <QtGui/QAction>
15#include <QtGui/QApplication>
16#include <QtGui/QButtonGroup>
17#include <QtGui/QDialog>
18#include <QtGui/QDialogButtonBox>
19#include <QtGui/QHeaderView>
20#include <QtGui/QListWidget>
21#include <QtGui/QPushButton>
22
23QT_BEGIN_NAMESPACE
24
25class Ui_Liste
26{
27public:
28    QDialogButtonBox *buttonBox;
29    QListWidget *listWidget;
30    QPushButton *pushButton;
31
32    void setupUi(QDialog *Liste)
33    {
34        if (Liste->objectName().isEmpty())
35            Liste->setObjectName(QString::fromUtf8("Liste"));
36        Liste->resize(400, 276);
37        buttonBox = new QDialogButtonBox(Liste);
38        buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
39        buttonBox->setGeometry(QRect(90, 230, 191, 32));
40        buttonBox->setOrientation(Qt::Horizontal);
41        buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
42        listWidget = new QListWidget(Liste);
43        listWidget->setObjectName(QString::fromUtf8("listWidget"));
44        listWidget->setGeometry(QRect(30, 20, 256, 192));
45        pushButton = new QPushButton(Liste);
46        pushButton->setObjectName(QString::fromUtf8("pushButton"));
47        pushButton->setGeometry(QRect(300, 50, 85, 27));
48
49        retranslateUi(Liste);
50        QObject::connect(buttonBox, SIGNAL(accepted()), Liste, SLOT(accept()));
51        QObject::connect(buttonBox, SIGNAL(rejected()), Liste, SLOT(reject()));
52
53        QMetaObject::connectSlotsByName(Liste);
54    } // setupUi
55
56    void retranslateUi(QDialog *Liste)
57    {
58        Liste->setWindowTitle(QApplication::translate("Liste", "Liste des alignements", 0, QApplication::UnicodeUTF8));
59        pushButton->setText(QApplication::translate("Liste", "Supprimer", 0, QApplication::UnicodeUTF8));
60    } // retranslateUi
61
62};
63
64namespace Ui {
65    class Liste: public Ui_Liste {};
66} // namespace Ui
67
68QT_END_NAMESPACE
69
70#endif // UI_LISTE_H
Note: See TracBrowser for help on using the repository browser.