Cleaned up some function names in MenuManager
[supertux.git] / src / gui / menu_manager.hpp
1 //  SuperTux
2 //  Copyright (C) 2009 Ingo Ruhnke <grumbel@gmx.de>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (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, see <http://www.gnu.org/licenses/>.
16
17 #ifndef HEADER_SUPERTUX_GUI_MENU_MANAGER_HPP
18 #define HEADER_SUPERTUX_GUI_MENU_MANAGER_HPP
19
20 #include <vector>
21 #include <list>
22
23 class Menu;
24
25 class MenuManager
26 {
27 private:
28   static MenuManager* s_instance;
29 public:
30   static MenuManager& instance();
31
32 public:
33   std::vector<Menu*> m_last_menus;
34   std::list<Menu*> m_all_menus;
35
36   /** Used only for transition effects */
37   Menu* m_previous;
38
39   Menu* m_current;
40
41   friend class Menu;
42
43 public:
44   MenuManager();
45   ~MenuManager();
46
47   /** Set the current menu, if pmenu is NULL, hide the current menu */
48   void set_current(Menu* pmenu);
49
50   void push_current(Menu* pmenu);
51   void pop_current();
52
53   void recalc_pos();
54
55   /** Return the current active menu or NULL if none is active */
56   Menu* current() const
57   {
58     return m_current;
59   }
60
61   bool is_active() const
62   {
63     return m_current != nullptr;
64   }
65
66 private:
67   MenuManager(const MenuManager&);
68   MenuManager& operator=(const MenuManager&);
69 };
70
71 #endif
72
73 /* EOF */