Advertisement
Guest User

CircuitX

a guest
Oct 16th, 2009
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 4.13 KB | None | 0 0
  1. /********************************************************************************
  2. ** Form generated from reading ui file 'qtwit.ui'
  3. **
  4. ** Created: Fri Oct 16 11:37:17 2009
  5. **      by: Qt User Interface Compiler version 4.5.2
  6. **
  7. ** WARNING! All changes made in this file will be lost when recompiling ui file!
  8. ********************************************************************************/
  9.  
  10. #ifndef UI_QTWIT_H
  11. #define UI_QTWIT_H
  12.  
  13. #include <QtCore/QVariant>
  14. #include <QtGui/QAction>
  15. #include <QtGui/QApplication>
  16. #include <QtGui/QButtonGroup>
  17. #include <QtGui/QHeaderView>
  18. #include <QtGui/QLabel>
  19. #include <QtGui/QMainWindow>
  20. #include <QtGui/QPushButton>
  21. #include <QtGui/QStatusBar>
  22. #include <QtGui/QWidget>
  23. #include "klineedit.h"
  24.  
  25. QT_BEGIN_NAMESPACE
  26.  
  27. class Ui_qTwit
  28. {
  29. public:
  30.     QWidget *qTwit_2;
  31.     KLineEdit *status_edit;
  32.     QPushButton *pushButton_update;
  33.     QPushButton *pushButton_cancel;
  34.     QLabel *label;
  35.     KLineEdit *user_edit;
  36.     KLineEdit *pass_edit;
  37.     QLabel *label_2;
  38.     QLabel *label_3;
  39.     QStatusBar *statusbar;
  40.  
  41.     void setupUi(QMainWindow *qTwit)
  42.     {
  43.         if (qTwit->objectName().isEmpty())
  44.             qTwit->setObjectName(QString::fromUtf8("qTwit"));
  45.         qTwit->resize(623, 250);
  46.         qTwit->setMinimumSize(QSize(623, 250));
  47.         qTwit->setMaximumSize(QSize(623, 250));
  48.         QIcon icon;
  49.         icon.addFile(QString::fromUtf8("../twitter.jpg"), QSize(), QIcon::Normal, QIcon::Off);
  50.         qTwit->setWindowIcon(icon);
  51.         qTwit_2 = new QWidget(qTwit);
  52.         qTwit_2->setObjectName(QString::fromUtf8("qTwit_2"));
  53.         status_edit = new KLineEdit(qTwit_2);
  54.         status_edit->setObjectName(QString::fromUtf8("status_edit"));
  55.         status_edit->setGeometry(QRect(24, 140, 571, 31));
  56.         pushButton_update = new QPushButton(qTwit_2);
  57.         pushButton_update->setObjectName(QString::fromUtf8("pushButton_update"));
  58.         pushButton_update->setGeometry(QRect(210, 180, 105, 31));
  59.         pushButton_cancel = new QPushButton(qTwit_2);
  60.         pushButton_cancel->setObjectName(QString::fromUtf8("pushButton_cancel"));
  61.         pushButton_cancel->setGeometry(QRect(320, 180, 105, 31));
  62.         label = new QLabel(qTwit_2);
  63.         label->setObjectName(QString::fromUtf8("label"));
  64.         label->setGeometry(QRect(240, 110, 161, 21));
  65.         user_edit = new KLineEdit(qTwit_2);
  66.         user_edit->setObjectName(QString::fromUtf8("user_edit"));
  67.         user_edit->setGeometry(QRect(140, 50, 165, 31));
  68.         pass_edit = new KLineEdit(qTwit_2);
  69.         pass_edit->setObjectName(QString::fromUtf8("pass_edit"));
  70.         pass_edit->setGeometry(QRect(320, 50, 165, 31));
  71.         pass_edit->setPasswordMode(true);
  72.         label_2 = new QLabel(qTwit_2);
  73.         label_2->setObjectName(QString::fromUtf8("label_2"));
  74.         label_2->setGeometry(QRect(180, 30, 81, 21));
  75.         label_3 = new QLabel(qTwit_2);
  76.         label_3->setObjectName(QString::fromUtf8("label_3"));
  77.         label_3->setGeometry(QRect(360, 30, 81, 21));
  78.         qTwit->setCentralWidget(qTwit_2);
  79.         statusbar = new QStatusBar(qTwit);
  80.         statusbar->setObjectName(QString::fromUtf8("statusbar"));
  81.         qTwit->setStatusBar(statusbar);
  82.  
  83.         retranslateUi(qTwit);
  84.  
  85.         QMetaObject::connectSlotsByName(qTwit);
  86.     } // setupUi
  87.  
  88.     void retranslateUi(QMainWindow *qTwit)
  89.     {
  90.         qTwit->setWindowTitle(QApplication::translate("qTwit", "qTwit", 0, QApplication::UnicodeUTF8));
  91.         pushButton_update->setText(QApplication::translate("qTwit", "Update", 0, QApplication::UnicodeUTF8));
  92.         pushButton_cancel->setText(QApplication::translate("qTwit", "Cancel", 0, QApplication::UnicodeUTF8));
  93.         label->setText(QApplication::translate("qTwit", "What are you doing?", 0, QApplication::UnicodeUTF8));
  94.         label_2->setText(QApplication::translate("qTwit", "Username:", 0, QApplication::UnicodeUTF8));
  95.         label_3->setText(QApplication::translate("qTwit", "Password:", 0, QApplication::UnicodeUTF8));
  96.         Q_UNUSED(qTwit);
  97.     } // retranslateUi
  98.  
  99. };
  100.  
  101. namespace Ui {
  102.     class qTwit: public Ui_qTwit {};
  103. } // namespace Ui
  104.  
  105. QT_END_NAMESPACE
  106.  
  107. #endif // UI_QTWIT_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement