Remove building with NOCRYPTO option
[minix.git] / lib / libmenu / menu_driver.3
blob9f706f867e9303e9141599a801587894c120e635
1 .\"     $NetBSD: menu_driver.3,v 1.8 2003/04/16 13:35:10 wiz Exp $
2 .\"
3 .\" Copyright (c) 1999
4 .\"     Brett Lymn - blymn@baea.com.au, brett_lymn@yahoo.com.au
5 .\"
6 .\" This code is donated to The NetBSD Foundation by the author.
7 .\"
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
10 .\" are met:
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\"    notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\"    notice, this list of conditions and the following disclaimer in the
15 .\"    documentation and/or other materials provided with the distribution.
16 .\" 3. The name of the Author may not be used to endorse or promote
17 .\"    products derived from this software without specific prior written
18 .\"    permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .Dd September 10, 1999
33 .Dt MENU_DRIVER 3
34 .Os
35 .Sh NAME
36 .Nm menu_driver
37 .Nd main menu handling function
38 .Sh LIBRARY
39 .Lb libmenu
40 .Sh SYNOPSIS
41 .In menu.h
42 .Ft int
43 .Fn menu_driver "MENU *menu" "int c"
44 .Sh DESCRIPTION
45 The
46 .Fn menu_driver
47 function is the guts of the menu system.
48 It takes the commands passed
49 by c parameter and performs the requested action on the menu given.
50 The following commands may be given to the menu driver:
51 .Pp
52 .Bl -tag -width REQ_CLEAR_PATTERN -compact
53 .It Command
54 Action
55 .It REQ_LEFT_ITEM
56 Sets the new current item to be the item to the left of the current
57 item.
58 .It REQ_RIGHT_ITEM
59 Sets the new current item to be the item to the rights of the current
60 item.
61 .It REQ_UP_ITEM
62 Sets the new current item to be the item above the current item.
63 .It REQ_DOWN_ITEM
64 Sets the new current item to be the item below the current item.
65 .It REQ_SCR_ULINE
66 Scroll the menu one line towards the bottom of the menu window.
67 The new current item becomes the item immediately above the current item.
68 .It REQ_SCR_DLINE
69 Scroll the menu one line towards the top of the menu window.
70 The new current item becomes the item immediately below the current item.
71 .It REQ_SCR_DPAGE
72 Scroll the menu one page towards the bottom of the menu window.
73 .It REQ_SCR_UPAGE
74 Scroll the menu one page towards the top of the menu window.
75 .It REQ_FIRST_ITEM
76 Set the current item to be the first item in the menu.
77 .It REQ_LAST_ITEM
78 Set the current item to be the last item in the menu.
79 .It REQ_NEXT_ITEM
80 Set the new current item to be the next item in the item array after
81 the current item.
82 .It REQ_PREV_ITEM
83 Set the new current item to be the item before the current item in the
84 items array.
85 .It REQ_TOGGLE_ITEM
86 If the item is selectable then toggle the item's value.
87 .It REQ_CLEAR_PATTERN
88 Clear all the characters currently in the menu's pattern buffer.
89 .It REQ_BACK_PATTERN
90 Remove the last character from the pattern buffer.
91 .It REQ_NEXT_MATCH
92 Attempt to find the next item that matches the pattern buffer.
93 .It REQ_PREV_MATCH
94 Attempt to find the previous item that matches the pattern buffer.
95 .El
97 .Fn menu_driver
98 is passed a command that is greater than MAX_COMMAND then the command
99 passed is assumed to be a user defined command and
100 .Fn menu_driver
101 returns E_UNKNOWN_COMMAND.
102 Otherwise if the command is a printable
103 character then the character represented by the command is placed at
104 the end of the pattern buffer and an attempt is made to match the
105 pattern buffer against the items in the menu.
106 .Sh RETURN VALUES
107 The functions return one of the following error values:
109 .Bl -tag -width E_UNKNOWN_COMMAND -compact
110 .It Er E_OK
111 The function was successful.
112 .It Er E_SYSTEM_ERROR
113 There was a system error during the call.
114 .It Er E_BAD_ARGUMENT
115 One or more of the arguments passed to the function was incorrect.
116 .It Er E_NOT_POSTED
117 The menu is not posted.
118 .It Er E_UNKNOWN_COMMAND
119 The menu driver does not recognize the request passed to it.
120 .It Er E_NO_MATCH
121 The character search failed to find a match.
122 .It Er E_NOT_CONNECTED
123 The item is not connected to a menu.
124 .It Er E_REQUEST_DENIED
125 The menu driver could not process the request.
127 .Sh SEE ALSO
128 .Xr curses 3 ,
129 .Xr menus 3
130 .Sh NOTES
131 The header
132 .Pa \*[Lt]menu.h\*[Gt]
133 automatically includes both
134 .Pa \*[Lt]curses.h\*[Gt]
136 .Pa \*[Lt]eti.h\*[Gt] .