home · contact · privacy
Client: Further simplify display of available keybindings.
[plomrogue] / src / client / draw_wins.h
1 /* src/client/draw_wins.h
2  *
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.
6  *
7  * Routines for drawing the game's windows' contents.
8  */
9
10 #ifndef DRAW_WINS_H
11 #define DRAW_WINS_H
12
13 struct Win;
14
15
16
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_active_windows_keys(struct Win * win);
23 extern void draw_win_keybindings_global(struct Win * win);
24 extern void draw_win_keybindings_winconf_geometry(struct Win * win);
25 extern void draw_win_keybindings_winconf_keybindings(struct Win * win);
26
27 /* Routines to draw windows' configuration views. */
28 extern void draw_winconf_keybindings(struct Win * win);
29 extern void draw_winconf_geometry(struct Win * win);
30
31
32
33 #endif