Blame doc/man/man3/XmDropSiteConfigureStackingOrder.3

Packit b099d7
'\" t
Packit b099d7
...\" DropSitC.sgm /main/8 1996/09/08 20:40:57 rws $
Packit b099d7
.de P!
Packit b099d7
.fl
Packit b099d7
\!!1 setgray
Packit b099d7
.fl
Packit b099d7
\\&.\"
Packit b099d7
.fl
Packit b099d7
\!!0 setgray
Packit b099d7
.fl			\" force out current output buffer
Packit b099d7
\!!save /psv exch def currentpoint translate 0 0 moveto
Packit b099d7
\!!/showpage{}def
Packit b099d7
.fl			\" prolog
Packit b099d7
.sy sed -e 's/^/!/' \\$1\" bring in postscript file
Packit b099d7
\!!psv restore
Packit b099d7
.
Packit b099d7
.de pF
Packit b099d7
.ie     ?\\*(f1?? .ds f1 \\n(.f
Packit b099d7
.el .ie ?\\*(f2?? .ds f2 \\n(.f
Packit b099d7
.el .ie ?\\*(f3?? .ds f3 \\n(.f
Packit b099d7
.el .ie ?\\*(f4?? .ds f4 \\n(.f
Packit b099d7
.el .tm ? font overflow
Packit b099d7
.ft \\$1
Packit b099d7
..
Packit b099d7
.de fP
Packit b099d7
.ie     !?\\*(f4?? \{\
Packit b099d7
.	ft \\*(f4
Packit b099d7
.	ds f4\"
Packit b099d7
'	br \}
Packit b099d7
.el .ie !?\\*(f3?? \{\
Packit b099d7
.	ft \\*(f3
Packit b099d7
.	ds f3\"
Packit b099d7
'	br \}
Packit b099d7
.el .ie !?\\*(f2?? \{\
Packit b099d7
.	ft \\*(f2
Packit b099d7
.	ds f2\"
Packit b099d7
'	br \}
Packit b099d7
.el .ie !?\\*(f1?? \{\
Packit b099d7
.	ft \\*(f1
Packit b099d7
.	ds f1\"
Packit b099d7
'	br \}
Packit b099d7
.el .tm ? font underflow
Packit b099d7
..
Packit b099d7
.ds f1\"
Packit b099d7
.ds f2\"
Packit b099d7
.ds f3\"
Packit b099d7
.ds f4\"
Packit b099d7
.ta 8n 16n 24n 32n 40n 48n 56n 64n 72n 
Packit b099d7
.TH "XmDropSiteConfigureStackingOrder" "library call"
Packit b099d7
.SH "NAME"
Packit b099d7
\fBXmDropSiteConfigureStackingOrder\fP \(em A Drag and Drop function that
Packit b099d7
reorders a stack of widgets that are registered drop sites
Packit b099d7
.iX "XmDropSiteConfigureStack\\%ingOrder"
Packit b099d7
.iX "Drag and Drop functions" "XmDropSiteConfigureStack\\%ingOrder"
Packit b099d7
.SH "SYNOPSIS"
Packit b099d7
.PP
Packit b099d7
.nf
Packit b099d7
#include <Xm/DragDrop\&.h>
Packit b099d7
\fBvoid \fBXmDropSiteConfigureStackingOrder\fP\fR(
Packit b099d7
\fBWidget \fBwidget\fR\fR,
Packit b099d7
\fBWidget \fBsibling\fR\fR,
Packit b099d7
\fBCardinal \fBstack_mode\fR\fR);
Packit b099d7
.fi
Packit b099d7
.SH "DESCRIPTION"
Packit b099d7
.PP
Packit b099d7
\fBXmDropSiteConfigureStackingOrder\fP changes the stacking
Packit b099d7
order of the drop site specified by \fIwidget\fP\&. The stacking
Packit b099d7
order controls the manner in which drag-under effects are
Packit b099d7
clipped by overlapping siblings, regardless of whether they are
Packit b099d7
active\&. The stack mode is relative either to the entire stack,
Packit b099d7
or to another drop site within the stack\&. The stack order can
Packit b099d7
be modified only if the drop
Packit b099d7
sites are siblings in both the widget and drop site hierarchy, and
Packit b099d7
the widget parent of the drop sites is registered
Packit b099d7
as a composite drop site\&.
Packit b099d7
.IP "\fIwidget\fP" 10
Packit b099d7
Specifies the drop site to be restacked\&.
Packit b099d7
.IP "\fIsibling\fP" 10
Packit b099d7
Specifies a sibling drop site for stacking operations\&. If specified,
Packit b099d7
then \fIwidget\fP is restacked relative to this drop site\&'s stack position\&.
Packit b099d7
.IP "\fIstack_mode\fP" 10
Packit b099d7
Specifies the new stack position for the specified widget\&.
Packit b099d7
The values are \fBXmABOVE\fP and \fBXmBELOW\fP\&. If a sibling is specified,
Packit b099d7
then \fIwidget\fP is restacked as follows:
Packit b099d7
.RS
Packit b099d7
.IP "\fBXmABOVE\fP" 10
Packit b099d7
The widget is placed just above the sibling\&.
Packit b099d7
.IP "\fBXmBELOW\fP" 10
Packit b099d7
The widget is placed just below the sibling\&.
Packit b099d7
.RE
Packit b099d7
.IP "" 10
Packit b099d7
If the \fIsibling\fP parameter is not specified, then \fIwidget\fP
Packit b099d7
is restacked as follows:
Packit b099d7
.RS
Packit b099d7
.IP "\fBXmABOVE\fP" 10
Packit b099d7
The widget is placed at the top of the stack\&.
Packit b099d7
.IP "\fBXmBELOW\fP" 10
Packit b099d7
The widget is placed at the bottom of the stack\&.
Packit b099d7
.RE
Packit b099d7
.PP
Packit b099d7
For a complete definition of DropSite and its associated resources,
Packit b099d7
see \fBXmDropSite\fP(3)\&.
Packit b099d7
.SH "RELATED"
Packit b099d7
.PP
Packit b099d7
\fBXmDropSite\fP(3),
Packit b099d7
\fBXmDropSiteRetrieve\fP(3), and
Packit b099d7
\fBXmDropSiteQueryStackingOrder\fP(3)\&.
Packit b099d7
...\" created by instant / docbook-to-man, Sun 22 Dec 1996, 20:22