1 #ifndef PlaybackListFilterValues_H_INCLUDED
2 #define PlaybackListFilterValues_H_INCLUDED
3 
4 #include <wx/string.h>
5 
6 struct PlaybackListFilterValues
7 {
8     // checkboxes
9         bool map_show;
10         bool mod_show;
11 
12     //text fields
13         wxString map;
14         wxString mod;
15         wxString filesize;
16         wxString duration;
17     //choices
18         wxString player_num;
19 
20 
21     //modifiers
22         wxString player_mode;
23         wxString filesize_mode;
24         wxString duration_mode;
25 };
26 
27 #endif // PlaybackListFilterValues_H_INCLUDED
28 
29 /**
30     This file is part of SpringLobby,
31     Copyright (C) 2007-2011
32 
33     SpringLobby is free software: you can redistribute it and/or modify
34     it under the terms of the GNU General Public License version 2 as published by
35     the Free Software Foundation.
36 
37     SpringLobby is distributed in the hope that it will be useful,
38     but WITHOUT ANY WARRANTY; without even the implied warranty of
39     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
40     GNU General Public License for more details.
41 
42     You should have received a copy of the GNU General Public License
43     along with SpringLobby.  If not, see <http://www.gnu.org/licenses/>.
44 **/
45 
46