SuperTuxKart
online_profile_friends.hpp
1 // SuperTuxKart - a fun racing game with go-kart
2 // Copyright (C) 2013-2015 Glenn De Jonghe
3 //
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 3
7 // of the License, or (at your option) any later version.
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 #ifndef __HEADER_ONLINE_PROFILE_FRIENDS_HPP__
20 #define __HEADER_ONLINE_PROFILE_FRIENDS_HPP__
21 
22 #include <string>
23 #include <irrString.h>
24 
25 #include "guiengine/screen.hpp"
26 #include "guiengine/widgets/list_widget.hpp"
27 #include "states_screens/online/online_profile_base.hpp"
28 
29 
30 namespace GUIEngine { class ButtonWidget; class ListWidget; class TextBoxWidget; class Widget; }
31 
32 
37  public GUIEngine::ScreenSingleton<OnlineProfileFriends>,
39 
40 {
41 private:
43 
46  GUIEngine::ButtonWidget *m_search_button_widget;
47  GUIEngine::TextBoxWidget *m_search_box_widget;
48 
49  bool m_waiting_for_friends;
50 
52  static int m_sort_column;
53 
54  static bool m_sort_desc;
55 
56  static bool m_sort_default;
57 
58  void displayResults();
59  static bool compareFriends(int f1, int f2);
60 public:
62 
64  virtual void loadedFromFile() OVERRIDE;
65 
67  virtual void eventCallback(GUIEngine::Widget* widget,
68  const std::string& name,
69  const int playerID) OVERRIDE;
70 
72  virtual void init() OVERRIDE;
73 
74  virtual void onUpdate(float delta) OVERRIDE;
75  virtual void beforeAddingWidget() OVERRIDE;
76  virtual void onColumnClicked(int column_id, bool sort_desc, bool sort_default) OVERRIDE;
77 
78  // ------------------------------------------------------------------------
80  void refreshFriendsList() {m_waiting_for_friends = true; }
81 };
82 
83 #endif
A text button widget.
Definition: button_widget.hpp:41
Definition: list_widget.hpp:37
A vertical list widget with text entries.
Definition: list_widget.hpp:50
Declares a class to be a singleton.
Definition: screen.hpp:59
A text field widget.
Definition: text_box_widget.hpp:53
Online profile base screen.
Definition: online_profile_base.hpp:37
Online profile overview screen.
Definition: online_profile_friends.hpp:40
OnlineProfileFriends()
Constructor for a display of all friends.
Definition: online_profile_friends.cpp:49
virtual void eventCallback(GUIEngine::Widget *widget, const std::string &name, const int playerID) OVERRIDE
implement callback from parent class GUIEngine::Screen
Definition: online_profile_friends.cpp:105
static int m_sort_column
Which column to use for sorting.
Definition: online_profile_friends.hpp:52
GUIEngine::ListWidget * m_friends_list_widget
Pointer to the various widgets on the screen.
Definition: online_profile_friends.hpp:45
virtual void init() OVERRIDE
implement callback from parent class GUIEngine::Screen
Definition: online_profile_friends.cpp:88
virtual void beforeAddingWidget() OVERRIDE
Callback before widgets are added.
Definition: online_profile_friends.cpp:73
void displayResults()
Displays the friends from a given profile.
Definition: online_profile_friends.cpp:201
void refreshFriendsList()
Triggers a reload of the friend list next time this menu is shown.
Definition: online_profile_friends.hpp:80
virtual void loadedFromFile() OVERRIDE
implement callback from parent class GUIEngine::Screen
Definition: online_profile_friends.cpp:57
virtual void onUpdate(float delta) OVERRIDE
Called each frame to check if results have arrived.
Definition: online_profile_friends.cpp:259
Contains all GUI engine related classes and functions.
Definition: abstract_state_manager.hpp:33