serverlistcolumn.h
1 //------------------------------------------------------------------------------
2 // serverlistcolumn.h
3 //------------------------------------------------------------------------------
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
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., 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 <QtContainerFwd>
27 #include <QObject>
28 
29 class QStandardItem;
30 
32 {
33  public:
34  int columnId;
35  int width;
36  bool bHidden;
37  bool bResizable;
38  Qt::SortOrder defaultSortOrder;
39 };
40 
41 namespace ServerListColumnId
42 {
43  enum ColumnId
44  {
45  IDPort,
46  IDPlayers,
47  IDPing,
48  IDServerName,
49  IDAddress,
50  IDIwad,
51  IDMap,
52  IDWads,
53  IDGametype,
54  IDHiddenGroup,
55  IDHiddenServerPointer,
56 
57  NUM_SERVERLIST_COLUMNS
58  };
59 }
60 
61 class ServerListColumns : public QObject
62 {
63  Q_OBJECT
64 
65  public:
66  static ServerListColumn columns[];
67 
68  static QString columnLabel(int columnId);
69  static void generateColumnHeaderLabels(QStringList& outputLabels);
70  static void generateListOfCells(QList<QStandardItem*>& outputList);
71 
72  static bool isColumnVital(int columnId);
73 
75 };
76 
77 #endif