00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef UI_LOGINSCREEN_H
00011 #define UI_LOGINSCREEN_H
00012
00013 #include <QtCore/QVariant>
00014 #include <QtGui/QAction>
00015 #include <QtGui/QApplication>
00016 #include <QtGui/QButtonGroup>
00017 #include <QtGui/QCheckBox>
00018 #include <QtGui/QHBoxLayout>
00019 #include <QtGui/QHeaderView>
00020 #include <QtGui/QLabel>
00021 #include <QtGui/QLineEdit>
00022 #include <QtGui/QPushButton>
00023 #include <QtGui/QVBoxLayout>
00024 #include <QtGui/QWidget>
00025
00026 QT_BEGIN_NAMESPACE
00027
00028 class Ui_loginscreenClass
00029 {
00030 public:
00031 QVBoxLayout *verticalLayout_2;
00032 QLabel *loginLabel;
00033 QHBoxLayout *horizontalLayout;
00034 QLabel *label;
00035 QLineEdit *userField;
00036 QHBoxLayout *horizontalLayout_2;
00037 QLabel *label_2;
00038 QLineEdit *passField;
00039 QPushButton *loginButton;
00040 QCheckBox *checkRemember;
00041 QLabel *loginStatusLabel;
00042 QPushButton *backButton;
00043
00044 void setupUi(QWidget *loginscreenClass)
00045 {
00046 if (loginscreenClass->objectName().isEmpty())
00047 loginscreenClass->setObjectName(QString::fromUtf8("loginscreenClass"));
00048 loginscreenClass->resize(360, 640);
00049 verticalLayout_2 = new QVBoxLayout(loginscreenClass);
00050 verticalLayout_2->setSpacing(4);
00051 verticalLayout_2->setContentsMargins(0, 0, 0, 0);
00052 verticalLayout_2->setObjectName(QString::fromUtf8("verticalLayout_2"));
00053 loginLabel = new QLabel(loginscreenClass);
00054 loginLabel->setObjectName(QString::fromUtf8("loginLabel"));
00055 loginLabel->setMaximumSize(QSize(16777215, 30));
00056 QFont font;
00057 font.setPointSize(10);
00058 font.setBold(true);
00059 font.setWeight(75);
00060 loginLabel->setFont(font);
00061
00062 verticalLayout_2->addWidget(loginLabel);
00063
00064 horizontalLayout = new QHBoxLayout();
00065 horizontalLayout->setSpacing(4);
00066 horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
00067 label = new QLabel(loginscreenClass);
00068 label->setObjectName(QString::fromUtf8("label"));
00069
00070 horizontalLayout->addWidget(label);
00071
00072 userField = new QLineEdit(loginscreenClass);
00073 userField->setObjectName(QString::fromUtf8("userField"));
00074
00075 horizontalLayout->addWidget(userField);
00076
00077
00078 verticalLayout_2->addLayout(horizontalLayout);
00079
00080 horizontalLayout_2 = new QHBoxLayout();
00081 horizontalLayout_2->setSpacing(4);
00082 horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
00083 label_2 = new QLabel(loginscreenClass);
00084 label_2->setObjectName(QString::fromUtf8("label_2"));
00085
00086 horizontalLayout_2->addWidget(label_2);
00087
00088 passField = new QLineEdit(loginscreenClass);
00089 passField->setObjectName(QString::fromUtf8("passField"));
00090 passField->setEchoMode(QLineEdit::Password);
00091
00092 horizontalLayout_2->addWidget(passField);
00093
00094
00095 verticalLayout_2->addLayout(horizontalLayout_2);
00096
00097 loginButton = new QPushButton(loginscreenClass);
00098 loginButton->setObjectName(QString::fromUtf8("loginButton"));
00099
00100 verticalLayout_2->addWidget(loginButton);
00101
00102 checkRemember = new QCheckBox(loginscreenClass);
00103 checkRemember->setObjectName(QString::fromUtf8("checkRemember"));
00104
00105 verticalLayout_2->addWidget(checkRemember);
00106
00107 loginStatusLabel = new QLabel(loginscreenClass);
00108 loginStatusLabel->setObjectName(QString::fromUtf8("loginStatusLabel"));
00109 QFont font1;
00110 font1.setPointSize(6);
00111 loginStatusLabel->setFont(font1);
00112 loginStatusLabel->setWordWrap(true);
00113
00114 verticalLayout_2->addWidget(loginStatusLabel);
00115
00116 backButton = new QPushButton(loginscreenClass);
00117 backButton->setObjectName(QString::fromUtf8("backButton"));
00118
00119 verticalLayout_2->addWidget(backButton);
00120
00121
00122 retranslateUi(loginscreenClass);
00123
00124 QMetaObject::connectSlotsByName(loginscreenClass);
00125 }
00126
00127 void retranslateUi(QWidget *loginscreenClass)
00128 {
00129 loginscreenClass->setWindowTitle(QApplication::translate("loginscreenClass", "loginscreen", 0, QApplication::UnicodeUTF8));
00130 loginLabel->setText(QApplication::translate("loginscreenClass", "PrivL : Login to ipoki.com", 0, QApplication::UnicodeUTF8));
00131 label->setText(QApplication::translate("loginscreenClass", "Username", 0, QApplication::UnicodeUTF8));
00132 userField->setStyleSheet(QString());
00133 label_2->setText(QApplication::translate("loginscreenClass", "Password", 0, QApplication::UnicodeUTF8));
00134 passField->setStyleSheet(QString());
00135 loginButton->setStyleSheet(QString());
00136 loginButton->setText(QApplication::translate("loginscreenClass", "Login", 0, QApplication::UnicodeUTF8));
00137 checkRemember->setText(QApplication::translate("loginscreenClass", "Remember me", 0, QApplication::UnicodeUTF8));
00138 loginStatusLabel->setText(QString());
00139 backButton->setText(QApplication::translate("loginscreenClass", "Back", 0, QApplication::UnicodeUTF8));
00140 }
00141
00142 };
00143
00144 namespace Ui {
00145 class loginscreenClass: public Ui_loginscreenClass {};
00146 }
00147
00148 QT_END_NAMESPACE
00149
00150 #endif // UI_LOGINSCREEN_H