summaryrefslogtreecommitdiff
path: root/lib/libmenu/menu_driver.3
blob: e33588f7187e6d83f16f382d53510a092448f103 (plain)
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
.\"	$NetBSD: menu_driver.3,v 1.2 1999/11/24 12:43:16 kleink Exp $
.\"
.\" Copyright (c) 1999
.\"	Brett Lymn - blymn@baea.com.au, brett_lymn@yahoo.com.au
.\"
.\" This code is donated to The NetBSD Foundation by the author.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\"    notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\"    notice, this list of conditions and the following disclaimer in the
.\"    documentation and/or other materials provided with the distribution.
.\" 3. The name of the Author may not be used to endorse or promote
.\"    products derived from this software without specific prior written
.\"    permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.Dd September, 1999
.Dt MENU_DRIVER 3
.Os BSD 4
.Sh NAME
.Nm menu_driver
.Nd menu library
.Sh LIBRARY
.Lb libmenu
.Sh SYNOPSIS
.Fd #include <menu.h>
.Ft int
.Fn menu_driver "MENU *menu" "int c"
.Sh DESCRIPTION
The
.Fn menu_driver
function is the guts of the menu system.  It takes the commands passed
by c parameter and performs the requested action on the menu given.
The following commands may be given to the menu driver:
.Pp
.ta 20
.nf
Command			Action
.Pp
REQ_LEFT_ITEM		Sets the new current item to be the item to
			the left of the current item.
REQ_RIGHT_ITEM		Sets the new current item to be the item to
			the rights of the current item.
REQ_UP_ITEM		Sets the new current item to be the item above
			the current item.
REQ_DOWN_ITEM		Sets the new current item to be the item below
			the current item.
REQ_SCR_ULINE		Scroll the menu one line towards the bottom of
			the menu window.  The new current item becomes the
			item immediately above the current item.
REQ_SCR_DLINE		Scroll the menu one line towards the top of
			the menu window.  The new current item becomes
			the item immediately below the current item.
REQ_SCR_DPAGE		Scroll the menu one page towards the bottom of
			the menu window.
REQ_SCR_UPAGE		Scroll the menu one page towards the top of
			the menu window.
REQ_FIRST_ITEM		Set the current item to be the first item in
			the menu.
REQ_LAST_ITEM		Set the current item to be the last item in
			the menu.
REQ_NEXT_ITEM		Set the new current item to be the next item
			in the item array after the current item.
REQ_PREV_ITEM		Set the new current item to be the item before
			the current item in the items array.
REQ_TOGGLE_ITEM		If the item is selectable then toggle the
			item's value.
REQ_CLEAR_PATTERN	Clear all the characters currently in the
			menu's pattern buffer.
REQ_BACK_PATTERN	Remove the last character from the pattern
			buffer.
REQ_NEXT_MATCH		Attempt to find the next item that matches the
			pattern buffer.
REQ_PREV_MATCH		Attempt to find the previous item that matches
			the pattern buffer.
.fi
.ft 1
.br
.ne 8
If 
.Fn menu_driver
is passed a command that is greater than MAX_COMMAND then the command
passed is assumed to be a user defined command and 
.Fn menu_driver
returns E_UNKNOWN_COMMAND.  Otherwise if the command is a printable
character then the character represented by the command is placed at
the end of the pattern buffer and an attempt is made to match the
pattern buffer against the items in the menu.
.Sh RETURN VALUES
The functions return one of the following error values:
.Pp
.ta 20
.nf
E_OK			The function was successful
E_SYSTEM_ERROR		There was a system error during the call.
E_BAD_ARGUMENT		One or more of the arguments passed to the function
			was incorrect.
E_NOT_POSTED		The menu is not posted
E_UNKNOWN_COMMAND	The menu driver does not recognise the request
			passed to it.
E_NO_MATCH		The character search failed to find a match.
E_NOT_CONNECTED		The item is not connected to a menu.
E_REQUEST_DENIED	The menu driver could not process the request.
.fi
.ft 1
.br
.ne 8
.Sh SEE ALSO
.Xr curses 3 ,
.Xr menus 3
.Sh NOTES
The header
.Xr <menus.h>
automatically includes both
.Xr <curses.h>
and
.Xr <eti.h>