blob: 5366040c18af024407a1157bcd58dd4004156626 [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301.\"***************************************************************************
2.\" Copyright (c) 1998-2007,2008 Free Software Foundation, Inc. *
3.\" *
4.\" Permission is hereby granted, free of charge, to any person obtaining a *
5.\" copy of this software and associated documentation files (the *
6.\" "Software"), to deal in the Software without restriction, including *
7.\" without limitation the rights to use, copy, modify, merge, publish, *
8.\" distribute, distribute with modifications, sublicense, and/or sell *
9.\" copies of the Software, and to permit persons to whom the Software is *
10.\" furnished to do so, subject to the following conditions: *
11.\" *
12.\" The above copyright notice and this permission notice shall be included *
13.\" in all copies or substantial portions of the Software. *
14.\" *
15.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
16.\" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
17.\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
18.\" IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
19.\" DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
20.\" OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
21.\" THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
22.\" *
23.\" Except as contained in this notice, the name(s) of the above copyright *
24.\" holders shall not be used in advertising or otherwise to promote the *
25.\" sale, use or other dealings in this Software without prior written *
26.\" authorization. *
27.\"***************************************************************************
28.\"
29.\" $Id: menu_driver.3x,v 1.15 2008/06/21 21:55:30 tom Exp $
30.TH menu_driver 3X ""
31.SH NAME
32\fBmenu_driver\fR - command-processing loop of the menu system
33.SH SYNOPSIS
34\fB#include <menu.h>\fR
35.br
36int menu_driver(MENU *menu, int c);
37.br
38.SH DESCRIPTION
39Once a menu has been posted (displayed), you should funnel input events to it
40through \fBmenu_driver\fR. This routine has three major input cases:
41.TP 3
42-
43The input is a form navigation request.
44Navigation request codes are constants defined in \fB<form.h>\fP,
45which are distinct from the key- and character codes returned by \fBwgetch\fP.
46.TP 3
47-
48The input is a printable character.
49Printable characters (which must be positive, less than 256) are
50checked according to the program's locale settings.
51.TP 3
52-
53The input is the KEY_MOUSE special key associated with an mouse event.
54.PP
55The menu driver requests are as follows:
56.TP 5
57REQ_LEFT_ITEM
58Move left to an item.
59.TP 5
60REQ_RIGHT_ITEM
61Move right to an item.
62.TP 5
63REQ_UP_ITEM
64Move up to an item.
65.TP 5
66REQ_DOWN_ITEM
67Move down to an item.
68.TP 5
69REQ_SCR_ULINE
70Scroll up a line.
71.TP 5
72REQ_SCR_DLINE
73Scroll down a line.
74.TP 5
75REQ_SCR_DPAGE
76Scroll down a page.
77.TP 5
78REQ_SCR_UPAGE
79Scroll up a page.
80.TP 5
81REQ_FIRST_ITEM
82Move to the first item.
83.TP 5
84REQ_LAST_ITEM
85Move to the last item.
86.TP 5
87REQ_NEXT_ITEM
88Move to the next item.
89.TP 5
90REQ_PREV_ITEM
91Move to the previous item.
92.TP 5
93REQ_TOGGLE_ITEM
94Select/deselect an item.
95.TP 5
96REQ_CLEAR_PATTERN
97Clear the menu pattern buffer.
98.TP 5
99REQ_BACK_PATTERN
100Delete the previous character from the pattern buffer.
101.TP 5
102REQ_NEXT_MATCH
103Move to the next item matching the pattern match.
104.TP 5
105REQ_PREV_MATCH
106Move to the previous item matching the pattern match.
107.PP
108If the second argument is a printable character, the code appends
109it to the pattern buffer and attempts to move to the next item matching
110the new pattern. If there is no such match, \fBmenu_driver\fR returns
111\fBE_NO_MATCH\fR and deletes the appended character from the buffer.
112.PP
113If the second argument is one of the above pre-defined requests, the
114corresponding action is performed.
115.SS MOUSE HANDLING
116.PP
117If the second argument is the KEY_MOUSE special key, the associated
118mouse event is translated into one of the above pre-defined requests.
119Currently only clicks in the user window (e.g. inside the menu display
120area or the decoration window) are handled.
121.PP
122If you click above the display region of the menu:
123.RS
124.TP
125a REQ_SCR_ULINE is generated for a single click,
126.TP
127a REQ_SCR_UPAGE is generated for a double-click and
128.TP
129a REQ_FIRST_ITEM is generated for a triple-click.
130.RE
131.PP
132If you click below the display region of the menu:
133.RS
134.TP
135a REQ_SCR_DLINE is generated for a single click,
136.TP
137a REQ_SCR_DPAGE is generated for a double-click and
138.TP
139a REQ_LAST_ITEM is generated for a triple-click.
140.RE
141.PP
142If you click at an item inside the display area of the menu:
143.RS
144.TP 3
145-
146the menu cursor is positioned to that item.
147.TP 3
148-
149If you double-click an item a REQ_TOGGLE_ITEM
150is generated and \fBE_UNKNOWN_COMMAND\fR is returned.
151This return value makes sense,
152because a double click usually means that an item-specific action should
153be returned.
154It is exactly the purpose of this return value to signal that an
155application specific command should be executed.
156.TP 3
157-
158If a translation
159into a request was done, \fBmenu_driver\fR returns the result of this request.
160.RE
161.PP
162If you clicked outside the user window or the mouse event could not be translated
163into a menu request an \fBE_REQUEST_DENIED\fR is returned.
164.SS APPLICATION-DEFINED COMMANDS
165.PP
166If the second argument is neither printable nor one of the above
167pre-defined menu requests or KEY_MOUSE, the drive assumes it is an application-specific
168command and returns \fBE_UNKNOWN_COMMAND\fR. Application-defined commands
169should be defined relative to \fBMAX_COMMAND\fR, the maximum value of these
170pre-defined requests.
171.SH RETURN VALUE
172\fBmenu_driver\fR return one of the following error codes:
173.TP 5
174.B E_OK
175The routine succeeded.
176.TP 5
177.B E_SYSTEM_ERROR
178System error occurred (see \fBerrno\fR).
179.TP 5
180.B E_BAD_ARGUMENT
181Routine detected an incorrect or out-of-range argument.
182.TP 5
183.B E_BAD_STATE
184Routine was called from an initialization or termination function.
185.TP 5
186.B E_NOT_POSTED
187The menu has not been posted.
188.TP 5
189.B E_UNKNOWN_COMMAND
190The menu driver code saw an unknown request code.
191.TP 5
192.B E_NO_MATCH
193Character failed to match.
194.TP 5
195.B E_REQUEST_DENIED
196The menu driver could not process the request.
197.SH SEE ALSO
198\fBcurses\fR(3X),
199\fBmenu\fR(3X),
200\fBwgetch\fR(3X).
201.SH NOTES
202The header file \fB<menu.h>\fR automatically includes the header files
203\fB<curses.h>\fR.
204.SH PORTABILITY
205These routines emulate the System V menu library. They were not supported on
206Version 7 or BSD versions. The support for mouse events is ncurses specific.
207.SH AUTHORS
208Juergen Pfeifer. Manual pages and adaptation for new curses by Eric
209S. Raymond.
210.\"#
211.\"# The following sets edit modes for GNU EMACS
212.\"# Local Variables:
213.\"# mode:nroff
214.\"# fill-column:79
215.\"# End: