X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fgui%2Fmenu.hpp;h=66e5f774c36849dba096f1415a4615a4a2b1e986;hb=08813a74da6ac1fd045a105e4e8105f1d7f716f0;hp=66033c180314b8bb2eacbfb2e1f83ecfd6267598;hpb=e09d690e2b475c23709f8eff6053c350065eeaff;p=supertux.git diff --git a/src/gui/menu.hpp b/src/gui/menu.hpp index 66033c180..66e5f774c 100644 --- a/src/gui/menu.hpp +++ b/src/gui/menu.hpp @@ -1,12 +1,10 @@ -// $Id$ -// // SuperTux // Copyright (C) 2006 Matthias Braun // -// This program is free software; you can redistribute it and/or -// modify it under the terms of the GNU General Public License -// as published by the Free Software Foundation; either version 2 -// of the License, or (at your option) any later version. +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -14,25 +12,17 @@ // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +// along with this program. If not, see . -#ifndef SUPERTUX_MENU_H -#define SUPERTUX_MENU_H +#ifndef HEADER_SUPERTUX_GUI_MENU_HPP +#define HEADER_SUPERTUX_GUI_MENU_HPP -#include #include #include -#include -#include -#include -#include - #include -#include "video/surface.hpp" +#include "gui/mousecursor.hpp" #include "video/font.hpp" -#include "mousecursor.hpp" bool confirm_dialog(Surface* background, std::string text); @@ -48,7 +38,7 @@ enum MenuItemKind { MN_CONTROLFIELD, MN_STRINGSELECT, MN_LABEL, - MN_HL, /* horizontal line */ + MN_HL /* horizontal line */ }; class Menu; @@ -80,13 +70,12 @@ public: std::string get_input_with_symbol(bool active_item); // returns the text with an input symbol private: - /// copy-construction not allowed - MenuItem(const MenuItem& ) { assert(false); } - /// assignment not allowed - void operator= (const MenuItem& ) { assert(false); } - /// keyboard key or joystick button bool input_flickering; + +private: + MenuItem(const MenuItem&); + MenuItem& operator=(const MenuItem&); }; class Menu @@ -112,7 +101,6 @@ public: static void push_current(Menu* pmenu); static void pop_current(); - static void recalc_pos(); /** Return the current active menu or NULL if none is active */ @@ -222,3 +210,5 @@ private: }; #endif + +/* EOF */