view oldXMenu/SetSel.c @ 72616:1c7de7b9540b

(rcirc-keywords): New variable. (rcirc-bright-nicks, rcirc-dim-nicks): New variables. (rcirc-bright-nick-regexp, rcirc-dim-nick-regexp): Remove variables. (rcirc-responses-no-activity): New function. (rcirc-handler-generic): Check for responses in above. (rcirc-process-command): Add ?: character to arguments of raw server commands. (rcirc-format-response-string): Use `rcirc-bright-nicks' and `rcirc-dim-nicks'. (rcirc-gray-toggle): Remove unused variable. (rcirc-print): Remove some tracking logic, which is moved into markup functions. (rcirc-activity-types): Was `rcirc-activity-type', now a list of types. (rcirc-activity-string): Look for 'keyword in activity-types. (rcirc-window-configuration-change): Don't erase overlay-arrow unnecessarily. (rcirc-add-or-remove): New function. (rcirc-cmd-ignore): Use it. (rcirc-message-leader): Remove unused function. (rcicr-cmd-bright, rcirc-cmd-dim, rcirc-cmd-keyword): New commands. (rcirc-add-face): New function. (rcirc-facify): Use rcirc-add-face. (rcirc-url-regexp): Add parens. (rcirc-map-regexp): Remove function. (rcirc-mangle-regexp): Remove function. (rcirc-markup-text-functions): New variable. (rcirc-markup-text): New function (replaces `rcirc-mangle-text'). (rcirc-markup-body-text, rcirc-markup-attributes) (rcirc-markup-my-nick, rcirc-markup-urls, rcirc-markup-keywords) (rcirc-markup-bright-nicks): New markup handler functions. (rcirc-nick-in-message-full-line): New face. (rcirc-track-nick): Rename from `rcirc-mode-line-nick'. (rcirc-track-keyword, rcirc-url, rcirc-keyword): New faces.
author Eli Zaretskii <eliz@gnu.org>
date Sat, 02 Sep 2006 21:25:11 +0000
parents e8a3fb527b77
children ce127a46b1ca d04d8ccb3c41 c5406394f567
line wrap: on
line source

#include "copyright.h"

/* Copyright    Massachusetts Institute of Technology    1985	*/
/* Copyright (C) 2002, 2003, 2004, 2005,
                 2006 Free Software Foundation, Inc.  */

/*
 * XMenu:	MIT Project Athena, X Window system menu package
 *
 *	XMenuSetSelection - Set a menu selection to be active or inactive.
 *
 *	Author:		Tony Della Fera, DEC
 *			August, 1985
 *
 */

#include "XMenuInt.h"

int
XMenuSetSelection(menu, p_num, s_num, active)
    register XMenu *menu;	/* Menu object to be modified. */
    register int p_num;		/* Pane number to be modified. */
    register int s_num;		/* Selection number to modified. */
    int active;			/* Make selection active? */
{
    register XMPane *p_ptr;	/* XMPane pointer. */
    register XMSelect *s_ptr;	/* XMSelect pointer. */

    /*
     * Find the right pane.
     */
    p_ptr = _XMGetPanePtr(menu, p_num);
    if (p_ptr == NULL) return(XM_FAILURE);

    /*
     * Find the right selection.
     */
    s_ptr = _XMGetSelectionPtr(p_ptr, s_num);
    if (s_ptr == NULL) return(XM_FAILURE);

    /*
     * Set its active switch.
     */
    s_ptr->active = active;

    /*
     * Return the selection number just set.
     */
    _XMErrorCode = XME_NO_ERROR;
    return(s_num);
}

/* arch-tag: 79198ae0-c5a4-4d31-adb0-5747f833f56a
   (do not change this comment) */