]> git.jsancho.org Git - lugaru.git/blob - Source/Menu.h
License: Update GPLv2+ header to match current FSF recommendation
[lugaru.git] / Source / Menu.h
1 /*
2 Copyright (C) 2003, 2010 - Wolfire Games
3
4 This file is part of Lugaru.
5
6 Lugaru is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 Lugaru is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Lugaru.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #ifndef _MENU_H_
21 #define _MENU_H_
22
23 #include "Game.h"
24
25 namespace Menu
26 {
27 void clearMenu();
28 void addLabel(int id, const string& text, int x, int y, float r = 1, float g = 0, float b = 0);
29 void addButton(int id, const string& text, int x, int y, float r = 1, float g = 0, float b = 0);
30 void addImage(int id, Texture texture, int x, int y, int w, int h, float r = 1, float g = 1, float b = 1);
31 void addButtonImage(int id, Texture texture, int x, int y, int w, int h, float r = 1, float g = 1, float b = 1);
32 void addMapLine(int x, int y, int w, int h, float startsize, float endsize, float r, float g, float b);
33 void addMapMarker(int id, Texture texture, int x, int y, int w, int h, float r, float g, float b);
34 void addMapLabel(int id, const string& text, int x, int y, float r = 1, float g = 0, float b = 0);
35 void setText(int id, const string& text);
36 void setText(int id, const string& text, int x, int y, int w, int h);
37 int getSelected(int mousex, int mousey);
38 void drawItems();
39 }
40
41 #endif