20080916
[gdash.git] / src / sdl_ui.h
blob60621d274b2f9821aa33774c2093785ad336de49
1 /*
2 * Copyright (c) 2007, 2008 Czirkos Zoltan <cirix@fw.hu>
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 #ifndef _GD_SDL_UI_H
17 #define _GD_SDL_UI_H
19 char *gd_select_file(const char *title, const char *start_dir, const char *glob);
20 void gd_settings_menu();
21 void gd_show_highscore(Cave *highlight_cave, int highlight_line);
22 void gd_help(const char **strings);
24 void gd_error_console();
25 void gd_show_error(GdErrorMessage *error);
27 char *gd_input_string(const char *title, const char *current);
29 void gd_about();
30 void gd_show_license();
32 void gd_title_line(const char *text);
33 void gd_status_line(const char *text);
35 void gd_install_theme();
37 #endif