Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 4ec25c745a659d99b0dd9029e421fba6 > files > 70

libneXtaw0-devel-0.15.1-5mdv2008.1.i586.rpm

/*
 * $Id: TraversalP.h,v 1.2 2000/10/12 14:55:20 ulric Exp $
 */

/*

Copyright (c) 1999  X Consortium

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Except as contained in this notice, the name of the X Consortium shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from the X Consortium.

*/

#ifndef	XawTraversalP_h
#define	XawTraversalP_h

#include "Traversal.h"



	/* Class method which may be added to any widget class that
	 * will accept focus.  Accepts focus any time the widget
	 * is sensitive and otherwise eligible.
	 */

extern	Boolean	XawAcceptFocus(
#if NeedFunctionPrototypes
    Widget, Time *
#endif
);



	/* Action procedures which should be called by any class which
	 * wishes to participate in the keyboard traversal protocol.
	 *
	 * Procedures are:
	 *
	 *	Next		transfer focus to next eligible widget
	 *	Previous	transfer focus to previous eligible widget
	 *	Home		transfer focus to first eligible widget
	 *	End		transfer focus to last eligible widget
	 *	Take		transfer focus to this widget.
	 *	NextGroup	transfer focus to next in this local group
	 *	PreviousGroup	transfer focus to previous in this local group
	 *	HomeGroup	transfer focus to first in this local group
	 *	EndGroup	transfer focus to last in this local group
	 *	EnterWindow	react to enter-window
	 *	LeaveWindow	react to leave-window
	 *
	 * A "local group" is similar to the Motif "tab group".  Local
	 * groups are all widgets under a single manager widget.  Typically,
	 * arrow keys would navigate within a local group, whereas tab keys
	 * would navigate globally.
	 *
	 * If XawFocusPolicy is XawFocusPointer, this action proc ignores
	 * all keyboard traversal operations; thus creating the old
	 * behavior.
	 *
	 * Actions taken by EnterWindow and LeaveWindow depend on the
	 * XawFocusPolicy resource:
	 *	XawFocusPointer:	Sets focus window to PointerRoot
	 *	XawFocusKey:		Sets focus window to PointerRoot
	 *	XawFocusSet:		leaves focus unchanged.
	 */

extern	void	XawFocusNextAction(
#if NeedFunctionPrototypes
    Widget w,
    XEvent *event,
    String *params,
    Cardinal *num_params
#endif
);

extern	void	XawFocusPreviousAction(
#if NeedFunctionPrototypes
    Widget w,
    XEvent *event,
    String *params,
    Cardinal *num_params
#endif
);

extern	void	XawFocusHomeAction(
#if NeedFunctionPrototypes
    Widget w,
    XEvent *event,
    String *params,
    Cardinal *num_params
#endif
);

extern	void	XawFocusEndAction(
#if NeedFunctionPrototypes
    Widget w,
    XEvent *event,
    String *params,
    Cardinal *num_params
#endif
);

extern	void	XawFocusTakeAction(
#if NeedFunctionPrototypes
    Widget w,
    XEvent *event,
    String *params,
    Cardinal *num_params
#endif
);

extern	void	XawFocusNextGroupAction(
#if NeedFunctionPrototypes
    Widget w,
    XEvent *event,
    String *params,
    Cardinal *num_params
#endif
);

extern	void	XawFocusPreviousGroupAction(
#if NeedFunctionPrototypes
    Widget w,
    XEvent *event,
    String *params,
    Cardinal *num_params
#endif
);

extern	void	XawFocusHomeGroupAction(
#if NeedFunctionPrototypes
    Widget w,
    XEvent *event,
    String *params,
    Cardinal *num_params
#endif
);

extern	void	XawFocusEndGroupAction(
#if NeedFunctionPrototypes
    Widget w,
    XEvent *event,
    String *params,
    Cardinal *num_params
#endif
);

extern	void	XawFocusEnterWindowAction(
#if NeedFunctionPrototypes
    Widget w,
    XEvent *event,
    String *params,
    Cardinal *num_params
#endif
);

extern	void	XawFocusLeaveWindowAction(
#if NeedFunctionPrototypes
    Widget w,
    XEvent *event,
    String *params,
    Cardinal *num_params
#endif
);


	/* internal only; called by XawInitializeWidgetSet: */

extern	void	XawRegisterFocusConverter() ;

#endif	/* XawTraversalP_h */