summaryrefslogtreecommitdiffstats
path: root/src/server/sessionnamewindow/sessionnamewindow.cpp
blob: 74aa05dcece831b3834d44221176773b539c448d (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
/*
 # 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/
 # -----------------------------------------------------------------------------
 */

#include "sessionnamewindow.h"
#include "ui_sessionnamewindow.h"
#include "../serverapp/serverapp.h"
#include "../numerickeyboard/numerickeyboard.h"
#include "../../shared/util.h"

#include <QCloseEvent>

SessionNameWindow::SessionNameWindow(QWidget *parent)
		: QDialog(parent)
		, ui(new Ui::SessionName)
{
	ui->setupUi(this);
	connect(ui->bboxOkCancel, &QDialogButtonBox::accepted,  this, &SessionNameWindow::onOkClicked);
	connect(ui->bboxOkCancel, &QDialogButtonBox::rejected, this, &SessionNameWindow::close);
	connect(ui->cmdRandom, &QPushButton::clicked, this, &SessionNameWindow::onGenerateRandomName);

	/* add a virtual numeric keyboard */
	auto *keyboard = new NumericKeyboard();
	ui->keyboard_placeholder->addWidget(keyboard);
	connect(keyboard, &NumericKeyboard::digitTyped, this, &SessionNameWindow::onDigitTyped);
	connect(keyboard, &NumericKeyboard::digitDelete, this, &SessionNameWindow::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(slxrand() % 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));
}