blob: 57cfc536750fb276238c872f0c26a27a8a1971f0 [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301.\"***************************************************************************
Steve Kondikae271bc2015-11-15 02:50:53 +01002.\" Copyright (c) 1998-2006,2010 Free Software Foundation, Inc. *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303.\" *
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.\"
Steve Kondikae271bc2015-11-15 02:50:53 +010029.\" $Id: mitem_value.3x,v 1.10 2010/12/04 18:40:45 tom Exp $
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053030.TH mitem_value 3X ""
31.SH NAME
Steve Kondikae271bc2015-11-15 02:50:53 +010032\fBmitem_value\fR \- set and get menu item values
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053033.SH SYNOPSIS
34\fB#include <menu.h>\fR
35.br
36int set_item_value(ITEM *item, bool value);
37.br
38bool item_value(const ITEM *item);
39.br
40.SH DESCRIPTION
41If you turn off the menu option \fBO_ONEVALUE\fR (e.g., with
42\fBset_menu_opts\fR or \fBmenu_opts_off\fR; see \fBmenu_opts\fR(3X)), the menu
43becomes multi-valued; that is, more than one item may simultaneously be
44selected.
45.PP
46In a multi_valued menu, you can used \fBset_item_value\fR to select the
47given menu item (second argument \fBTRUE\fR) or deselect it (second argument
48\fBFALSE\fR).
49.SH RETURN VALUE
50The function \fBset_item_value\fR returns one of the following:
51.TP 5
52.B E_OK
53The routine succeeded.
54.TP 5
55.B E_SYSTEM_ERROR
56System error occurred (see \fBerrno\fR).
57.TP 5
58.B E_REQUEST_DENIED
59The menu driver could not process the request.
60.SH SEE ALSO
61\fBcurses\fR(3X), \fBmenu\fR(3X).
62.SH NOTES
63The header file \fB<menu.h>\fR automatically includes the header file
64\fB<curses.h>\fR.
65.SH PORTABILITY
66These routines emulate the System V menu library. They were not supported on
67Version 7 or BSD versions.
68.SH AUTHORS
69Juergen Pfeifer. Manual pages and adaptation for new curses by Eric
70S. Raymond.