1 /* Copyright Massachusetts Institute of Technology 1985 */
6 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
7 2009, 2010 Free Software Foundation, Inc.
9 This program is free software: you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation, either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * XMenu: MIT Project Athena, X Window system menu package
26 * XMenuFindSelection - Find the first selection in a pane who's
27 * label matches a particular string.
29 * Author: Tony Della Fera, DEC
37 XMenuFindSelection(register XMenu
*menu
, int p_num
, register char *label
)
39 register XMPane
*p_ptr
;
40 register XMSelect
*s_ptr
;
44 * Check for NULL pointers!
47 _XMErrorCode
= XME_ARG_BOUNDS
;
52 * Find the right pane.
54 p_ptr
= _XMGetPanePtr(menu
, p_num
);
55 if (p_ptr
== NULL
) return(XM_FAILURE
);
58 * Find the right selection.
61 s_ptr
= p_ptr
->s_list
->next
;
62 s_ptr
!= p_ptr
->s_list
;
65 if (s_ptr
->label_length
== 0) {
67 _XMErrorCode
= XME_NO_ERROR
;
72 if (strncmp (label
, s_ptr
->label
, s_ptr
->label_length
) == 0) {
73 _XMErrorCode
= XME_NO_ERROR
;
81 * If we get here then we have not found
84 _XMErrorCode
= XME_S_NOT_FOUND
;
88 /* arch-tag: 564a4a95-9ab0-4580-b05f-6970c4b25dd4
89 (do not change this comment) */