-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathonline.cpp
More file actions
39 lines (32 loc) · 780 Bytes
/
Copy pathonline.cpp
File metadata and controls
39 lines (32 loc) · 780 Bytes
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
#include "online.h"
// #include "ui_online.h"
Online::Online(MainBoard *parent) :
QDialog(parent)//, ui(new Ui::Online)
{
/* this->parent = parent;
ui->setupUi(this);
connect(ui->btnConnect, SIGNAL(clicked()), this, SLOT(ipConnect()));
connect(ui->btnStartServer, SIGNAL(clicked()), this, SLOT(startServer()));
*/}
void Online::ipConnect()
{
/*QString ip = ui->ipTarget->text();
QRegExp rx("([0-9]{1,3})(\\.[0-9]{1,3}){3}");
if (!rx.exactMatch(ip)) {
QMessageBox::information(this, tr("Chess Server"),
tr("Invalid ip address"));
return;
}
parent->ipConnect(ip);
*/
close();
}
void Online::startServer()
{
//parent->startServer();
close();
}
Online::~Online()
{
// delete ui;
}