|
1 /* |
|
2 * Hedgewars, a free turn based strategy game |
|
3 * Copyright (c) 2007-2011 Andrey Korotaev <unC0Rr@gmail.com> |
|
4 * |
|
5 * This program is free software; you can redistribute it and/or modify |
|
6 * it under the terms of the GNU General Public License as published by |
|
7 * the Free Software Foundation; version 2 of the License |
|
8 * |
|
9 * This program is distributed in the hope that it will be useful, |
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 * GNU General Public License for more details. |
|
13 * |
|
14 * You should have received a copy of the GNU General Public License |
|
15 * along with this program; if not, write to the Free Software |
|
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 */ |
|
18 |
|
19 #include <QUdpSocket> |
|
20 #include <QListWidget> |
|
21 |
|
22 #include "netserverslist.h" |
|
23 |
|
24 HWNetServersModel::HWNetServersModel(QObject* parent) : |
|
25 QAbstractTableModel(parent) |
|
26 { |
|
27 |
|
28 } |
|
29 |
|
30 void HWNetServersModel::updateList() |
|
31 { |
|
32 |
|
33 } |
|
34 |
|
35 QVariant HWNetServersModel::headerData(int section, |
|
36 Qt::Orientation orientation, int role) const |
|
37 { |
|
38 if (role != Qt::DisplayRole) |
|
39 return QVariant(); |
|
40 |
|
41 if (orientation == Qt::Horizontal) |
|
42 { |
|
43 switch (section) |
|
44 { |
|
45 case 0: return tr("Title"); |
|
46 case 1: return tr("IP"); |
|
47 case 2: return tr("Port"); |
|
48 default: return QVariant(); |
|
49 } |
|
50 } else |
|
51 return QString("%1").arg(section + 1); |
|
52 } |
|
53 |
|
54 int HWNetServersModel::rowCount(const QModelIndex &parent) const |
|
55 { |
|
56 if (parent.isValid()) |
|
57 return 0; |
|
58 else |
|
59 return games.size(); |
|
60 } |
|
61 |
|
62 int HWNetServersModel::columnCount(const QModelIndex & parent) const |
|
63 { |
|
64 if (parent.isValid()) |
|
65 return 0; |
|
66 else |
|
67 return 3; |
|
68 } |