d7f93c21de4b84df0e06c2f2e69dddc19e621cad
[supertux.git] / src / profile_menu.cpp
1 //  SuperTux
2 //  Copyright (C) 2008 Ingo Ruhnke <grumbel@gmx.de>
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 2
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 #include <sstream>
19 #include "gettext.hpp"
20 #include "gui/menu.hpp"
21
22 enum ProfileMenuIDs {
23   
24 };
25
26 class ProfileMenu : public Menu
27 {
28 public:
29   ProfileMenu() {
30     add_label(_("Select Profile"));
31     add_hl();
32     for(int i = 0; i < 5; ++i)
33       {
34         std::ostringstream out;
35         out << "Profile " << i+1;
36         add_entry(i, out.str());
37       }
38
39     add_hl();
40     add_back(_("Back"));
41   }
42  
43 };
44
45 Menu* profile_menu = 0;
46
47 Menu* get_profile_menu()
48 {
49   //static ProfileMenu menu;
50   profile_menu = new ProfileMenu();
51   return profile_menu;
52 }
53
54 void free_profile_menu()
55 {
56   delete profile_menu;
57   profile_menu = 0;
58 }
59
60 /* EOF */