10e3d5408SPeter Wemm /****************************************************************************
2*21817992SBaptiste Daroussin * Copyright 2018-2020,2021 Thomas E. Dickey *
3e1865124SBaptiste Daroussin * Copyright 1998-2012,2016 Free Software Foundation, Inc. *
40e3d5408SPeter Wemm * *
50e3d5408SPeter Wemm * Permission is hereby granted, free of charge, to any person obtaining a *
60e3d5408SPeter Wemm * copy of this software and associated documentation files (the *
70e3d5408SPeter Wemm * "Software"), to deal in the Software without restriction, including *
80e3d5408SPeter Wemm * without limitation the rights to use, copy, modify, merge, publish, *
90e3d5408SPeter Wemm * distribute, distribute with modifications, sublicense, and/or sell *
100e3d5408SPeter Wemm * copies of the Software, and to permit persons to whom the Software is *
110e3d5408SPeter Wemm * furnished to do so, subject to the following conditions: *
120e3d5408SPeter Wemm * *
130e3d5408SPeter Wemm * The above copyright notice and this permission notice shall be included *
140e3d5408SPeter Wemm * in all copies or substantial portions of the Software. *
150e3d5408SPeter Wemm * *
160e3d5408SPeter Wemm * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
170e3d5408SPeter Wemm * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
180e3d5408SPeter Wemm * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
190e3d5408SPeter Wemm * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
200e3d5408SPeter Wemm * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
210e3d5408SPeter Wemm * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
220e3d5408SPeter Wemm * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
230e3d5408SPeter Wemm * *
240e3d5408SPeter Wemm * Except as contained in this notice, the name(s) of the above copyright *
250e3d5408SPeter Wemm * holders shall not be used in advertising or otherwise to promote the *
260e3d5408SPeter Wemm * sale, use or other dealings in this Software without prior written *
270e3d5408SPeter Wemm * authorization. *
280e3d5408SPeter Wemm ****************************************************************************/
290e3d5408SPeter Wemm
300e3d5408SPeter Wemm /****************************************************************************
314a1a9510SRong-En Fan * Author: Juergen Pfeifer, 1995,1997 *
320e3d5408SPeter Wemm ****************************************************************************/
330e3d5408SPeter Wemm
340e3d5408SPeter Wemm #include "form.priv.h"
350e3d5408SPeter Wemm
36*21817992SBaptiste Daroussin MODULE_ID("$Id: fld_ftchoice.c,v 1.18 2021/06/17 21:26:02 tom Exp $")
370e3d5408SPeter Wemm
380e3d5408SPeter Wemm /*---------------------------------------------------------------------------
390e3d5408SPeter Wemm | Facility : libnform
400e3d5408SPeter Wemm | Function : int set_fieldtype_choice(
410e3d5408SPeter Wemm | FIELDTYPE *typ,
420e3d5408SPeter Wemm | bool (* const next_choice)(FIELD *,const void *),
430e3d5408SPeter Wemm | bool (* const prev_choice)(FIELD *,const void *))
440e3d5408SPeter Wemm |
450e3d5408SPeter Wemm | Description : Define implementation of enumeration requests.
460e3d5408SPeter Wemm |
470e3d5408SPeter Wemm | Return Values : E_OK - success
480e3d5408SPeter Wemm | E_BAD_ARGUMENT - invalid arguments
490e3d5408SPeter Wemm +--------------------------------------------------------------------------*/
FORM_EXPORT(int)507a656419SBaptiste Daroussin FORM_EXPORT(int)
514a1a9510SRong-En Fan set_fieldtype_choice(FIELDTYPE *typ,
520e3d5408SPeter Wemm bool (*const next_choice) (FIELD *, const void *),
530e3d5408SPeter Wemm bool (*const prev_choice) (FIELD *, const void *))
540e3d5408SPeter Wemm {
55aae38d10SBaptiste Daroussin TR_FUNC_BFR(2);
56aae38d10SBaptiste Daroussin
57aae38d10SBaptiste Daroussin T((T_CALLED("set_fieldtype_choice(%p,%s,%s)"),
58aae38d10SBaptiste Daroussin (void *)typ,
59aae38d10SBaptiste Daroussin TR_FUNC_ARG(0, next_choice),
60aae38d10SBaptiste Daroussin TR_FUNC_ARG(1, prev_choice)));
614a1a9510SRong-En Fan
620e3d5408SPeter Wemm if (!typ || !next_choice || !prev_choice)
630e3d5408SPeter Wemm RETURN(E_BAD_ARGUMENT);
640e3d5408SPeter Wemm
6573f0a83dSXin LI SetStatus(typ, _HAS_CHOICE);
6606bfebdeSXin LI #if NCURSES_INTEROP_FUNCS
6706bfebdeSXin LI typ->enum_next.onext = next_choice;
6806bfebdeSXin LI typ->enum_prev.oprev = prev_choice;
6906bfebdeSXin LI #else
700e3d5408SPeter Wemm typ->next = next_choice;
710e3d5408SPeter Wemm typ->prev = prev_choice;
7206bfebdeSXin LI #endif
730e3d5408SPeter Wemm RETURN(E_OK);
740e3d5408SPeter Wemm }
750e3d5408SPeter Wemm
760e3d5408SPeter Wemm /* fld_ftchoice.c ends here */
77