QTfrontend/netudpwidget.h
author nemo
Sun, 26 Dec 2010 00:28:23 -0500
changeset 4686 3682db294dae
parent 3236 4ab3917d7d44
child 4976 088d40d8aba2
permissions -rw-r--r--
remove all screwing about with uLandGraphics - have not found a way to properly handle LandBackTex through despeckling or fill checks that does not result in ugly fire damage or wiped out landbacktex. Would rather some snowflakes lines than that.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
486
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 416
diff changeset
     1
/*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 883
diff changeset
     2
 * Hedgewars, a free turn based strategy game
486
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 416
diff changeset
     3
 * Copyright (c) 2007 Igor Ulyanov <iulyanov@gmail.com>
3236
4ab3917d7d44 Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents: 2948
diff changeset
     4
 * Copyright (c) 2007-2010 Andrey Korotaev <unC0Rr@gmail.com>
486
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 416
diff changeset
     5
 *
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 416
diff changeset
     6
 * This program is free software; you can redistribute it and/or modify
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 416
diff changeset
     7
 * it under the terms of the GNU General Public License as published by
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 416
diff changeset
     8
 * the Free Software Foundation; version 2 of the License
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 416
diff changeset
     9
 *
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 416
diff changeset
    10
 * This program is distributed in the hope that it will be useful,
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 416
diff changeset
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 416
diff changeset
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 416
diff changeset
    13
 * GNU General Public License for more details.
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 416
diff changeset
    14
 *
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 416
diff changeset
    15
 * You should have received a copy of the GNU General Public License
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 416
diff changeset
    16
 * along with this program; if not, write to the Free Software
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 416
diff changeset
    17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 416
diff changeset
    18
 */
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 416
diff changeset
    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
b9db5ff5cfdb Fix some bugs
unc0rr
parents: 486
diff changeset
    23
#include "netserverslist.h"
667
194dc62d1519 UDP server list model
unc0rr
parents: 665
diff changeset
    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
194dc62d1519 UDP server list model
unc0rr
parents: 665
diff changeset
    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
194dc62d1519 UDP server list model
unc0rr
parents: 665
diff changeset
    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
595d8663254d update button for udp servers list
displacer
parents: 413
diff changeset
    35
667
194dc62d1519 UDP server list model
unc0rr
parents: 665
diff changeset
    36
public slots:
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 1066
diff changeset
    37
    void updateList();
667
194dc62d1519 UDP server list model
unc0rr
parents: 665
diff changeset
    38
194dc62d1519 UDP server list model
unc0rr
parents: 665
diff changeset
    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
194dc62d1519 UDP server list model
unc0rr
parents: 665
diff changeset
    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
194dc62d1519 UDP server list model
unc0rr
parents: 665
diff changeset
    45
413
523f1769f2bc udp server detecting experimental version (added files)
displacer
parents:
diff changeset
    46
#endif // _NET_UDPWIDGET_INCLUDED