Accueil > > > MiniChat/Client/ui_statut.h
QL-CHATROOM V 1.0
MiniChat/Client/ui_statut.h
Informations sur ce code source
Qualité ChatRoom v 1.0
Une application de chat, genre salon de chat avec un administrateur.
Programmer par C++, bibliothèque Qt architecture client/serveur.
Les sockets sont échangés entre les clients et le serveur par le protocole réseau T
Fichier : MiniChat/Client/ui_statut.h
Nombre de lignes : 100 lignes
Afficher ce fichier en plein écran
- /********************************************************************************
- ** Form generated from reading UI file 'statut.ui'
- **
- ** Created: Fri 2. Mar 12:35:11 2012
- ** by: Qt User Interface Compiler version 4.7.4
- **
- ** WARNING! All changes made in this file will be lost when recompiling UI file!
- ********************************************************************************/
-
- #ifndef UI_STATUT_H
- #define UI_STATUT_H
-
- #include <QtCore/QVariant>
- #include <QtGui/QAction>
- #include <QtGui/QApplication>
- #include <QtGui/QButtonGroup>
- #include <QtGui/QComboBox>
- #include <QtGui/QDialog>
- #include <QtGui/QDialogButtonBox>
- #include <QtGui/QFormLayout>
- #include <QtGui/QGridLayout>
- #include <QtGui/QHeaderView>
- #include <QtGui/QLabel>
- #include <QtGui/QSpacerItem>
-
- QT_BEGIN_NAMESPACE
-
- class Ui_Dialog
- {
- public:
- QGridLayout *gridLayout;
- QFormLayout *formLayout;
- QLabel *label;
- QComboBox *comboBox;
- QSpacerItem *verticalSpacer;
- QDialogButtonBox *buttonBox;
-
- void setupUi(QDialog *Dialog)
- {
- if (Dialog->objectName().isEmpty())
- Dialog->setObjectName(QString::fromUtf8("Dialog"));
- Dialog->resize(213, 104);
- gridLayout = new QGridLayout(Dialog);
- gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
- formLayout = new QFormLayout();
- formLayout->setObjectName(QString::fromUtf8("formLayout"));
- label = new QLabel(Dialog);
- label->setObjectName(QString::fromUtf8("label"));
-
- formLayout->setWidget(0, QFormLayout::LabelRole, label);
-
- comboBox = new QComboBox(Dialog);
- comboBox->setObjectName(QString::fromUtf8("comboBox"));
-
- formLayout->setWidget(0, QFormLayout::FieldRole, comboBox);
-
-
- gridLayout->addLayout(formLayout, 0, 0, 1, 1);
-
- verticalSpacer = new QSpacerItem(20, 26, QSizePolicy::Minimum, QSizePolicy::Expanding);
-
- gridLayout->addItem(verticalSpacer, 1, 0, 1, 1);
-
- buttonBox = new QDialogButtonBox(Dialog);
- buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
- buttonBox->setOrientation(Qt::Horizontal);
- buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
-
- gridLayout->addWidget(buttonBox, 2, 0, 1, 1);
-
-
- retranslateUi(Dialog);
- QObject::connect(buttonBox, SIGNAL(accepted()), Dialog, SLOT(accept()));
- QObject::connect(buttonBox, SIGNAL(rejected()), Dialog, SLOT(reject()));
-
- QMetaObject::connectSlotsByName(Dialog);
- } // setupUi
-
- void retranslateUi(QDialog *Dialog)
- {
- Dialog->setWindowTitle(QApplication::translate("Dialog", "Votre Statut", 0, QApplication::UnicodeUTF8));
- label->setText(QApplication::translate("Dialog", "Votre Statut :", 0, QApplication::UnicodeUTF8));
- comboBox->clear();
- comboBox->insertItems(0, QStringList()
- << QApplication::translate("Dialog", "Disponible", 0, QApplication::UnicodeUTF8)
- << QApplication::translate("Dialog", "Occup\303\251", 0, QApplication::UnicodeUTF8)
- << QApplication::translate("Dialog", "Hors Ligne", 0, QApplication::UnicodeUTF8)
- );
- } // retranslateUi
-
- };
-
- namespace Ui {
- class Dialog: public Ui_Dialog {};
- } // namespace Ui
-
- QT_END_NAMESPACE
-
- #endif // UI_STATUT_H
|