further adjustments to the window port interface to pass a pointer to a glyph_info struct which describes not just the glyph number itself, but also the ttychar, the color, the glyphflags, and the symset index. This affects two existing window port calls that get passed glyphs and does the parameter consistently for both of them using the glyph_info struct pointer: print_glyph() add_menu(). The recently added glyphmod parameter is now unnecessary and has been removed.
27 lines
1.2 KiB
C
27 lines
1.2 KiB
C
/* vim:set cin ft=c sw=4 sts=4 ts=8 et ai cino=Ls\:0t0(0 : -*- mode:c;fill-column:80;tab-width:8;c-basic-offset:4;indent-tabs-mode:nil;c-file-style:"k&r" -*-*/
|
|
/* NetHack 3.7 cursdial.h */
|
|
/* Copyright (c) Karl Garrison, 2010. */
|
|
/* NetHack may be freely redistributed. See license for details. */
|
|
|
|
#ifndef CURSDIAL_H
|
|
# define CURSDIAL_H
|
|
|
|
/* Global declarations */
|
|
|
|
void curses_line_input_dialog(const char *prompt, char *answer, int buffer);
|
|
int curses_character_input_dialog(const char *prompt, const char *choices,
|
|
CHAR_P def);
|
|
int curses_ext_cmd(void);
|
|
void curses_create_nhmenu(winid wid, unsigned long);
|
|
void curses_add_nhmenu_item(winid wid, const glyph_info *glyphinfo,
|
|
const ANY_P *identifier, CHAR_P accelerator,
|
|
CHAR_P group_accel, int attr,
|
|
const char *str, unsigned itemflags);
|
|
void curs_menu_set_bottom_heavy(winid);
|
|
void curses_finalize_nhmenu(winid wid, const char *prompt);
|
|
int curses_display_nhmenu(winid wid, int how, MENU_ITEM_P **_selected);
|
|
boolean curses_menu_exists(winid wid);
|
|
void curses_del_menu(winid, boolean);
|
|
|
|
#endif /* CURSDIAL_H */
|