diff options
Diffstat (limited to 'Swift')
-rw-r--r-- | Swift/QtUI/QtLoginWindow.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Swift/QtUI/QtLoginWindow.cpp b/Swift/QtUI/QtLoginWindow.cpp index e84e316..4daa658 100644 --- a/Swift/QtUI/QtLoginWindow.cpp +++ b/Swift/QtUI/QtLoginWindow.cpp @@ -42,10 +42,19 @@ QtLoginWindow::QtLoginWindow() : QMainWindow() { layout->addWidget(logo); layout->addStretch(); + QLabel* jidLabel = new QLabel(this); + jidLabel->setText("<font size='-1'>User address</font>"); + layout->addWidget(jidLabel); + username_ = new QComboBox(this); username_->setEditable(true); layout->addWidget(username_); + QLabel* passwordLabel = new QLabel(); + passwordLabel->setText("<font size='-1'>Password</font>"); + layout->addWidget(passwordLabel); + + QWidget* w = new QWidget(this); w->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding)); layout->addWidget(w); |