xenocara/lib/libXt/man/XtPopdown.man

146 lines
4.1 KiB
Groff
Raw Normal View History

2006-11-25 11:01:46 -07:00
.\" Copyright 1993 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.
.\"
.ds tk X Toolkit
.ds xT X Toolkit Intrinsics \- C Language Interface
.ds xI Intrinsics
.ds xW X Toolkit Athena Widgets \- C Language Interface
.ds xL Xlib \- C Language X Interface
.ds xC Inter-Client Communication Conventions Manual
.ds Rn 3
.ds Vn 2.2
.hw XtCallback-Popdown wid-get
.na
.TH XtPopdown __libmansuffix__ __xorgversion__ "XT FUNCTIONS"
.SH NAME
XtPopdown, XtCallbackPopdown \- unmap a pop-up
.SH SYNTAX
2020-01-14 13:48:59 -07:00
#include <X11/Intrinsic.h>
2006-11-25 11:01:46 -07:00
.HP
2012-03-10 09:45:48 -07:00
void XtPopdown(Widget \fIpopup_shell\fP);
2006-11-25 11:01:46 -07:00
.HP
void XtCallbackPopdown(Widget \fIw\fP, XtPointer \fIclient_data\fP, XtPointer
\fIcall_data\fP);
2020-01-14 13:48:59 -07:00
.SH ACTIONS
2006-11-25 11:01:46 -07:00
.HP
2020-01-14 13:48:59 -07:00
void XtMenuPopdown(String \fIshell_name\fP);
2006-11-25 11:01:46 -07:00
.SH ARGUMENTS
.IP \fIcall_data\fP 1i
Specifies the callback data,
which is not used by this procedure.
.IP \fIclient_data\fP 1i
Specifies a pointer to the
2020-01-14 13:48:59 -07:00
.B XtPopdownID
2006-11-25 11:01:46 -07:00
structure.
.IP \fIpopup_shell\fP 1i
2020-01-14 13:48:59 -07:00
Specifies the widget shell to pop down.
2006-11-25 11:01:46 -07:00
.IP \fIshell_name\fP 1i
2020-01-14 13:48:59 -07:00
Specifies the name of the widget shell to pop down.
2006-11-25 11:01:46 -07:00
.IP \fIw\fP 1i
Specifies the widget.
.SH DESCRIPTION
The
2020-01-14 13:48:59 -07:00
.B XtPopdown
2006-11-25 11:01:46 -07:00
function performs the following:
.IP \(bu 5
Calls
2020-01-14 13:48:59 -07:00
.B XtCheckSubclass
2006-11-25 11:01:46 -07:00
.\".ZN XtCheckSubclass(popup_shell, popupShellWidgetClass)
to ensure popup_shell is a subclass of
2020-01-14 13:48:59 -07:00
.BR Shell .
2006-11-25 11:01:46 -07:00
.IP \(bu 5
Checks that popup_shell is currently popped_up;
otherwise, it generates an error.
.IP \(bu 5
Unmaps popup_shell's window.
.IP \(bu 5
If popup_shell's grab_kind is either
2020-01-14 13:48:59 -07:00
.B XtGrabNonexclusive
2006-11-25 11:01:46 -07:00
or
2020-01-14 13:48:59 -07:00
.BR XtGrabExclusive ,
2006-11-25 11:01:46 -07:00
it calls
2020-01-14 13:48:59 -07:00
.BR XtRemoveGrab .
2006-11-25 11:01:46 -07:00
.\".ZN XtRemoveGrab(popup_shell)
.IP \(bu 5
2012-03-10 09:45:48 -07:00
Sets pop-up shell's popped_up field to
2020-01-14 13:48:59 -07:00
.BR False .
2006-11-25 11:01:46 -07:00
.IP \(bu 5
Calls the callback procedures on the shell's popdown_callback list.
.LP
The
2020-01-14 13:48:59 -07:00
.B XtCallbackPopdown
2006-11-25 11:01:46 -07:00
function casts the client data parameter to an
2020-01-14 13:48:59 -07:00
.B XtPopdownID
2006-11-25 11:01:46 -07:00
pointer:
.LP
2020-01-14 13:48:59 -07:00
.RS
.nf
.ft CW
2006-11-25 11:01:46 -07:00
typedef struct {
2013-05-31 09:37:25 -06:00
Widget shell_widget;
Widget enable_widget;
2006-11-25 11:01:46 -07:00
} XtPopdownIDRec, *XtPopdownID;
2020-01-14 13:48:59 -07:00
.ft R
.fi
.RE
2013-05-31 09:37:25 -06:00
.LP
2006-11-25 11:01:46 -07:00
The shell_widget is the pop-up shell to pop down,
and the enable_widget is the widget that was used to pop it up.
.LP
2020-01-14 13:48:59 -07:00
.B XtCallbackPopdown
2006-11-25 11:01:46 -07:00
calls
2020-01-14 13:48:59 -07:00
.B XtPopdown
2012-03-10 09:45:48 -07:00
with the specified shell_widget
2006-11-25 11:01:46 -07:00
and then calls
2020-01-14 13:48:59 -07:00
.B XtSetSensitive
2006-11-25 11:01:46 -07:00
to resensitize the enable_widget.
.LP
If a shell name is not given,
2020-01-14 13:48:59 -07:00
.B XtMenuPopdown
2006-11-25 11:01:46 -07:00
calls
2020-01-14 13:48:59 -07:00
.B XtPopdown
2006-11-25 11:01:46 -07:00
with the widget for which the translation is specified.
If a shell_name is specified in the translation table,
2020-01-14 13:48:59 -07:00
.B XtMenuPopdown
2006-11-25 11:01:46 -07:00
tries to find the shell by looking up the widget tree starting at the
parent of the widget in which it is invoked.
2012-03-10 09:45:48 -07:00
If it finds a shell with the specified name in the pop-up children
of that parent,
it pops down the shell;
2006-11-25 11:01:46 -07:00
otherwise, it moves up the parent chain as needed.
2012-03-10 09:45:48 -07:00
If
2020-01-14 13:48:59 -07:00
.B XtMenuPopdown
2012-03-10 09:45:48 -07:00
gets to the application top-level shell widget
and cannot find a matching shell,
2006-11-25 11:01:46 -07:00
it generates an error.
.SH "SEE ALSO"
2011-09-10 03:36:19 -06:00
XtCreatePopupShell(__libmansuffix__),
XtPopup(__libmansuffix__)
2006-11-25 11:01:46 -07:00
.br
\fI\*(xT\fP
.br
\fI\*(xL\fP