-
Notifications
You must be signed in to change notification settings - Fork 4
/
MainWindow.hpp
65 lines (42 loc) · 1.3 KB
/
MainWindow.hpp
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
#ifndef MAINWINDOW_HPP
#define MAINWINDOW_HPP
#include <QMainWindow>
class ServerDiscovery;
class Server;
class LocalClient;
class QListWidgetItem;
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
void connectToServer();
public slots:
void addContact(QString name);
void addMessage(QString name, QString text);
void addServer(QString address, quint16 port);
void addServerToDiscovery(quint16 port);
private slots:
void createServer();
void participantsOnReceived(const QList<int> &ids, const QStringList &names);
void onTunneledMessageReceived(int idFrom, const QByteArray &message);
void onServerMessageReceived(QString from, QString message);
void on_serverListConnectButton_clicked();
void on_serverListList_itemDoubleClicked(QListWidgetItem *item);
void on_serverListList_itemClicked(QListWidgetItem *item);
void on_serverListRefreshButton_clicked();
void sendMessage();
void onClientConnected();
void on_contacts_customContextMenuRequested(const QPoint &pos);
void sendFile();
private:
Ui::MainWindow *ui;
ServerDiscovery *m_serverDiscovery;
Server *m_server;
LocalClient *m_client;
};
#endif // MAINWINDOW_HPP