639f0fc782e79285fd0452591d5587fa9394d304
[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 MenuManager2 // FIXME: temporary name 
26 {
27 public:
28   static std::vector<Menu*> last_menus;
29   static Menu* previous;
30   static Menu* current_;
31
32 public:
33   /** Pointers to all currently available menus, used to handle repositioning on window resize */
34   static std::list<Menu*>   all_menus;
35
36 public:
37   /** Set the current menu, if pmenu is NULL, hide the current menu */
38   static void set_current(Menu* pmenu);
39
40   static void push_current(Menu* pmenu);
41   static void pop_current();
42
43   static void recalc_pos();
44
45   /** Return the current active menu or NULL if none is active */
46   static Menu* current()
47   {
48     return current_;
49   }
50
51 private:
52   MenuManager2(const MenuManager2&);
53   MenuManager2& operator=(const MenuManager2&);
54 };
55
56 #endif
57
58 /* EOF */