/* # Copyright (c) 2009 - OpenSLX Project, Computer Center University of Freiburg # # This program is free software distributed under the GPL version 2. # See http://openslx.org/COPYING # # If you have any feedback please consult http://openslx.org/feedback and # send your suggestions, praise, or complaints to feedback@openslx.org # # General information about OpenSLX can be found at http://openslx.org/ # ----------------------------------------------------------------------------- # mainWindow.cpp This is the Main class for the pvsManager. The GUI is contructed here. # ----------------------------------------------------------------------------- */ #include #include "sessionnamewindow.h" #include "../serverapp/serverapp.h" #include "../numerickeyboard/numerickeyboard.h" #include "ui_sessionname.h" SessionNameWindow::SessionNameWindow(QWidget *parent) : QDialog(parent), ui(new Ui::SessionName) { ui->setupUi(this); connect(ui->bboxOkCancel, SIGNAL(accepted()), this, SLOT(onOkClicked())); connect(ui->bboxOkCancel, SIGNAL(rejected()), this, SLOT(close())); connect(ui->cmdRandom, SIGNAL(clicked(bool)), this, SLOT(onGenerateRandomName())); /* add a virtual numeric keyboard */ NumericKeyboard *keyboard = new NumericKeyboard(); ui->keyboard_placeholder->addWidget(keyboard); connect(keyboard, SIGNAL(digitTyped(int)), this, SLOT(onDigitTyped(int))); connect(keyboard, SIGNAL(digitDelete()), this, SLOT(onDigitDelete())); } SessionNameWindow::~SessionNameWindow() { delete ui; } void SessionNameWindow::show(const QString& name) { ui->lineEditName->setText(name); ui->lineEditName->setFocus(); this->showNormal(); } /* * Overridden methods */ void SessionNameWindow::closeEvent(QCloseEvent *e) { e->ignore(); this->hide(); } /* * Slots */ void SessionNameWindow::onOkClicked() { serverApp->setSessionName(ui->lineEditName->text()); emit updateSessionName(); this->hide(); } void SessionNameWindow::onGenerateRandomName() { ui->lineEditName->setText(QString::number(qrand() % 9000 + 1000)); } /** deletes the last digit of the saved sessionname */ void SessionNameWindow::onDigitDelete() { QString text = ui->lineEditName->text(); ui->lineEditName->setText(text.left(text.length() - 1)); } /** appends the digit to the session name */ void SessionNameWindow::onDigitTyped(int i) { QString text = ui->lineEditName->text(); ui->lineEditName->setText(text + QString::number(i)); }