summaryrefslogtreecommitdiffstats
path: root/src/server/sessionnamewindow/sessionnamewindow.cpp
blob: 5671c39fdde0367aff8cef94629ba6134de07394 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
 # 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 <QtWidgets>
#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));
}