1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
'\" t
.\" $OpenBSD: menu.3tbl,v 1.1 1997/12/14 23:19:31 millert Exp $
.\" Id: menu.3x,v 1.10 1997/12/14 01:45:52 tom Exp $
.TH menu 3 ""
.SH NAME
\fBmenu\fR - curses extension for programming menus
.SH SYNOPSIS
\fB#include <menu.h>\fR
.br
.SH DESCRIPTION
The \fBmenu\fR library provides terminal-independent facilities for composing
menu systems on character-cell terminals. The library includes: item routines,
which create and modify menu items; and menu routines, which group items into
menus, display menus on the screen, and handle interaction with the user.
The \fBmenu\fR library uses the \fBcurses\fR libraries, and a curses
initialization routine such as \fBinitscr\fR must be called before using any of
these functions. To use the \fBmenu\fR library, link with the options
\fB-lmenu -lcurses\fR.
.SS Current Default Values for Item Attributes
The \fBmenu\fR library maintains a default value for item attributes. You can
get or set this default by calling the appropriate \fBget_\fR or \fBset_\fR
routine with a \fBNULL\fR item pointer. Changing this default with a
\fBset_\fR function affects future item creations, but does not change the
rendering of items already created.
.SS Routine Name Index
The following table lists each \fBmenu\fR routine and the name of
the manual page on which it is described.
.TS
l l .
\fBcurses\fR Routine Name Manual Page Name
=
current_item \fBmitem_current\fR(3)
free_item \fBmitem_new\fR(3)
free_menu \fBmenu_new\fR(3)
item_count \fBmenu_items\fR(3)
item_description \fBmitem_name\fR(3)
item_index \fBmitem_current\fR(3)
item_init \fBmenu_hook\fR(3)
item_name \fBmitem_name\fR(3)
item_opts \fBmitem_opts\fR(3)
item_opts_off \fBmitem_opts\fR(3)
item_opts_on \fBmitem_opts\fR(3)
item_term \fBmenu_hook\fR(3)
item_userptr \fBmitem_userptr\fR(3)
item_value \fBmitem_value\fR(3)
item_visible \fBmitem_visible\fR(3)
menu_back \fBmenu_attribs\fR(3)
menu_driver \fBmenu_driver\fR(3)
menu_fore \fBmenu_attribs\fR(3)
menu_format \fBmenu_format\fR(3)
menu_grey \fBmenu_attribs\fR(3)
menu_init \fBmenu_hook\fR(3)
menu_items \fBmenu_items\fR(3)
menu_mark \fBmenu_mark\fR(3)
menu_opts \fBmenu_opts\fR(3)
menu_opts_off \fBmenu_opts\fR(3)
menu_opts_on \fBmenu_opts\fR(3)
menu_pad \fBmenu_attribs\fR(3)
menu_pattern \fBmenu_pattern\fR(3)
menu_request_by_name \fBmenu_requestname\fR(3)
menu_request_name \fBmenu_requestname\fR(3)
menu_spacing \fBmenu_spacing\fR(3)
menu_sub \fBmenu_win\fR(3)
menu_term \fBmenu_hook\fR(3)
menu_userptr \fBmenu_userptr\fR(3)
menu_win \fBmenu_win\fR(3)
new_item \fBmitem_new\fR(3)
new_menu \fBmenu_new\fR(3)
pos_menu_cursor \fBmenu_cursor\fR(3)
post_menu \fBmenu_post\fR(3)
scale_menu \fBmenu_win\fR(3)
set_current_item \fBmitem_current\fR(3)
set_item_init \fBmenu_hook\fR(3)
set_item_opts \fBmitem_opts\fR(3)
set_item_term \fBmenu_hook\fR(3)
set_item_userptr \fBmitem_userptr\fR(3)
set_item_value \fBmitem_value\fR(3)
set_menu_back \fBmenu_attribs\fR(3)
set_menu_fore \fBmenu_attribs\fR(3)
set_menu_format \fBmenu_format\fR(3)
set_menu_grey \fBmenu_attribs\fR(3)
set_menu_init \fBmenu_hook\fR(3)
set_menu_items \fBmenu_items\fR(3)
set_menu_mark \fBmenu_mark\fR(3)
set_menu_opts \fBmitem_opts\fR(3)
set_menu_pad \fBmenu_attribs\fR(3)
set_menu_pattern \fBmenu_pattern\fR(3)
set_menu_spacing \fBmenu_spacing\fR(3)
set_menu_sub \fBmenu_win\fR(3)
set_menu_term \fBmenu_hook\fR(3)
set_menu_userptr \fBmenu_userptr\fR(3)
set_menu_win \fBmenu_win\fR(3)
set_top_row \fBmitem_current\fR(3)
top_row \fBmitem_current\fR(3)
unpost_menu \fBmenu_post\fR(3)
.TE
.SH RETURN VALUE
Routines that return pointers return \fBNULL\fR on error. Routines that return
an integer return one of the following error codes:
.TP 5
\fBE_OK\fR
The routine succeeded.
.TP 5
\fBE_SYSTEM_ERROR\fR
System error occurred (see \fBerrno\fR).
.TP 5
\fBE_BAD_ARGUMENT\fR
Routine detected an incorrect or out-of-range argument.
.TP 5
\fBE_POSTED\fR
The menu is already posted.
.TP 5
\fBE_BAD_STATE\fR
Routine was called from an initialization or termination function.
.TP 5
\fBE_NO_ROOM\fR
Menu is too large for its window.
.TP 5
\fBE_NOT_POSTED\fR
The menu has not been posted.
.TP 5
\fBE_UNKNOWN_COMMAND\fR
The menu driver code saw an unknown request code.
.TP 5
\fBE_NO_MATCH\fR
Character failed to match.
.TP 5
\fBE_NOT_SELECTABLE\fR
The designated item cannot be selected.
.TP 5
\fBE_NOT_CONNECTED\fR
No items are connected to the menu.
.TP 5
\fBE_REQUEST_DENIED\fR
The menu driver could not process the request.
.SH SEE ALSO
\fBcurses\fR(3) and 3 pages whose names begin "menu_" for detailed
descriptions of the entry points.
.SH NOTES
The header file \fB<menu.h>\fR automatically includes the header files
\fB<curses.h>\fR and \fB<eti.h>\fR.
In your library list, libmenu.a should be before libcurses.a; that is,
you want to say `-lmenu -lcurses', not the other way around (which would
give you a link error using GNU \fBld\fR(1) and many other linkers).
.SH PORTABILITY
These routines emulate the System V menu library. They were not supported on
Version 7 or BSD versions.
.SH AUTHORS
Juergen Pfeifer. Manual pages and adaptation for ncurses by Eric
S. Raymond.
.\"#
.\"# The following sets edit modes for GNU EMACS
.\"# Local Variables:
.\"# mode:nroff
.\"# fill-column:79
.\"# End:
|