supertux
profile_name_menu.hpp
1 // SuperTux
2 // Copyright (C) 2022 Vankata453
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_SUPERTUX_PROFILE_NAME_MENU_HPP
18 #define HEADER_SUPERTUX_SUPERTUX_PROFILE_NAME_MENU_HPP
19 
20 #include "gui/menu.hpp"
21 
22 class Profile;
23 
24 class ProfileNameMenu final : public Menu
25 {
26 public:
27  ProfileNameMenu(Profile* profile = nullptr);
28 
29  void menu_action(MenuItem& item) override;
30 
31 private:
32  Profile* m_profile;
33  std::string m_profile_name;
34 
35 private:
36  ProfileNameMenu(const ProfileNameMenu&) = delete;
37  ProfileNameMenu& operator=(const ProfileNameMenu&) = delete;
38 };
39 
40 #endif
41 
42 /* EOF */
43 
Definition: menu_item.hpp:23
Definition: menu.hpp:55
Contains general data about a profile, which preserves savegames.
Definition: profile.hpp:26
Definition: profile_name_menu.hpp:24
void menu_action(MenuItem &item) override
Definition: profile_name_menu.cpp:49