author | sheepluva |
Thu, 20 Oct 2011 23:25:16 +0200 | |
changeset 6160 | 863d3edf5690 |
parent 6060 | fdfc01419815 |
child 6616 | f77bb02b669f |
permissions | -rw-r--r-- |
486 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
486 | 3 |
* Copyright (c) 2007 Igor Ulyanov <iulyanov@gmail.com> |
4976 | 4 |
* Copyright (c) 2007-2011 Andrey Korotaev <unC0Rr@gmail.com> |
486 | 5 |
* |
6 |
* This program is free software; you can redistribute it and/or modify |
|
7 |
* it under the terms of the GNU General Public License as published by |
|
8 |
* the Free Software Foundation; version 2 of the License |
|
9 |
* |
|
10 |
* This program is distributed in the hope that it will be useful, |
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
13 |
* GNU General Public License for more details. |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License |
|
16 |
* along with this program; if not, write to the Free Software |
|
17 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
18 |
*/ |
|
19 |
||
413
523f1769f2bc
udp server detecting experimental version (added files)
displacer
parents:
diff
changeset
|
20 |
#ifndef _NET_UDPWIDGET_INCLUDED |
523f1769f2bc
udp server detecting experimental version (added files)
displacer
parents:
diff
changeset
|
21 |
#define _NET_UDPWIDGET_INCLUDED |
523f1769f2bc
udp server detecting experimental version (added files)
displacer
parents:
diff
changeset
|
22 |
|
634 | 23 |
#include "netserverslist.h" |
667 | 24 |
|
413
523f1769f2bc
udp server detecting experimental version (added files)
displacer
parents:
diff
changeset
|
25 |
class QUdpSocket; |
523f1769f2bc
udp server detecting experimental version (added files)
displacer
parents:
diff
changeset
|
26 |
|
667 | 27 |
class HWNetUdpModel : public HWNetServersModel |
413
523f1769f2bc
udp server detecting experimental version (added files)
displacer
parents:
diff
changeset
|
28 |
{ |
523f1769f2bc
udp server detecting experimental version (added files)
displacer
parents:
diff
changeset
|
29 |
Q_OBJECT |
523f1769f2bc
udp server detecting experimental version (added files)
displacer
parents:
diff
changeset
|
30 |
|
667 | 31 |
public: |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1066
diff
changeset
|
32 |
HWNetUdpModel(QObject *parent = 0); |
413
523f1769f2bc
udp server detecting experimental version (added files)
displacer
parents:
diff
changeset
|
33 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1066
diff
changeset
|
34 |
QVariant data(const QModelIndex &index, int role) const; |
416 | 35 |
|
667 | 36 |
public slots: |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1066
diff
changeset
|
37 |
void updateList(); |
667 | 38 |
|
39 |
private slots: |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1066
diff
changeset
|
40 |
void onClientRead(); |
413
523f1769f2bc
udp server detecting experimental version (added files)
displacer
parents:
diff
changeset
|
41 |
|
667 | 42 |
private: |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1066
diff
changeset
|
43 |
QUdpSocket* pUdpSocket; |
413
523f1769f2bc
udp server detecting experimental version (added files)
displacer
parents:
diff
changeset
|
44 |
}; |
667 | 45 |
|
413
523f1769f2bc
udp server detecting experimental version (added files)
displacer
parents:
diff
changeset
|
46 |
#endif // _NET_UDPWIDGET_INCLUDED |