serverlistcolumn.h
1 //------------------------------------------------------------------------------
2 // serverlistcolumn.h
3 //------------------------------------------------------------------------------
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Lesser General Public
7 // License as published by the Free Software Foundation; either
8 // version 2.1 of the License, or (at your option) any later version.
9 //
10 // This library 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 GNU
13 // Lesser General Public License for more details.
14 //
15 // You should have received a copy of the GNU Lesser General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 // 02110-1301 USA
19 //
20 //------------------------------------------------------------------------------
21 // Copyright (C) 2010 "Zalewa" <zalewapl@gmail.com>
22 //------------------------------------------------------------------------------
23 #ifndef __SERVER_LIST_COLUMN_H_
24 #define __SERVER_LIST_COLUMN_H_
25 
26 #include <QObject>
27 #include <QtContainerFwd>
28 
29 class QStandardItem;
30 
32 {
33  const int columnId;
34  const int width;
35  const bool bHidden;
36  const bool bResizable;
37  const Qt::SortOrder defaultSortOrder;
38 };
39 
40 namespace ServerListColumnId
41 {
42 enum ColumnId
43 {
44  IDPort,
45  IDPlayers,
46  IDPing,
47  IDServerName,
48  IDAddress,
49  IDIwad,
50  IDMap,
51  IDWads,
52  IDGametype,
53  IDHiddenGroup,
54  IDHiddenServerPointer,
55 
56  NUM_SERVERLIST_COLUMNS
57 };
58 }
59 
60 class ServerListColumns : public QObject
61 {
62  Q_OBJECT
63 
64 public:
65  static const ServerListColumn columns[];
66 
67  static QString columnLabel(int columnId);
68  static QStringList generateColumnHeaderLabels();
69  static QList<QStandardItem *> generateListOfCells();
70 
71  static bool isColumnVital(int columnId);
72 
73  inline static bool isPictureColumn(int columnId)
74  {
75  return columnId == ServerListColumnId::IDPort ||
76  columnId == ServerListColumnId::IDPlayers;
77  }
78 
80 };
81 
82 #endif