1 /* src/client/draw_wins.h
3 * This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
4 * or any later version. For details on its copyright, license, and warranties,
5 * see the file NOTICE in the root directory of the PlomRogue source package.
7 * Routines for drawing the game's windows' contents.
17 /* Default routines to draw the various windows' standard contents. */
18 extern void draw_win_log(struct Win * win);
19 extern void draw_win_map(struct Win * win);
20 extern void draw_win_info(struct Win * win);
21 extern void draw_win_inventory(struct Win * win);
22 extern void draw_win_global_keys(struct Win * win);
23 extern void draw_win_active_windows_keys(struct Win * win);
24 extern void draw_win_keybindings_global(struct Win * win);
25 extern void draw_win_keybindings_winconf_geometry(struct Win * win);
26 extern void draw_win_keybindings_winconf_keybindings(struct Win * win);
28 /* Routines to draw windows' configuration views. */
29 extern void draw_winconf_keybindings(struct Win * win);
30 extern void draw_winconf_geometry(struct Win * win);