X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fgui%2Fmenu.hpp;h=66e5f774c36849dba096f1415a4615a4a2b1e986;hb=08813a74da6ac1fd045a105e4e8105f1d7f716f0;hp=6aaeb3ff8f8e8d66b98107196a14f0296c56dea9;hpb=675a7dc47a1f8efc33d2138b327c62f3cbcb0a79;p=supertux.git diff --git a/src/gui/menu.hpp b/src/gui/menu.hpp index 6aaeb3ff8..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,11 +38,11 @@ enum MenuItemKind { MN_CONTROLFIELD, MN_STRINGSELECT, MN_LABEL, - MN_HL, /* horizontal line */ + MN_HL /* horizontal line */ }; class Menu; - + class MenuItem { public: @@ -80,17 +70,21 @@ 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 { + static Color default_color; + static Color active_color; + static Color inactive_color; + static Color label_color; + static Color field_color; private: static std::vector last_menus; @@ -107,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 */ @@ -149,12 +142,6 @@ private: bool close; public: - static Font* default_font; - static Font* active_font; - static Font* inactive_font; - static Font* label_font; - static Font* field_font; - std::vector items; Menu(); @@ -223,3 +210,5 @@ private: }; #endif + +/* EOF */