summaryrefslogtreecommitdiff
path: root/man/XtManageChildren.man
diff options
context:
space:
mode:
authorWalter Harms <wharms@bfs.de>2019-04-02 22:50:51 +0200
committerWalter Harms <wharms@bfs.de>2019-04-02 22:50:51 +0200
commit7caf7f47d473e92cf0fc36bf03720765916c17be (patch)
treefc94f08c87a1c4a8655bf9e0afa463322887cf89 /man/XtManageChildren.man
parent3b5b654d5b539364a2f19b5206a79fb2e13f810f (diff)
downloadxorg-lib-libXt-7caf7f47d473e92cf0fc36bf03720765916c17be.tar.gz
replace .ZN with .BR
By replacing we do two things: 1. this fixes the troff behavier 2. this moves us closer to std. man pages 3. after this patch the macro ZN can be deleted Signed-off-by: Walter Harms <wharms@bfs.de>
Diffstat (limited to 'man/XtManageChildren.man')
-rw-r--r--man/XtManageChildren.man70
1 files changed, 35 insertions, 35 deletions
diff --git a/man/XtManageChildren.man b/man/XtManageChildren.man
index a81c849..c467274 100644
--- a/man/XtManageChildren.man
+++ b/man/XtManageChildren.man
@@ -101,16 +101,16 @@ Specifies the post unmanage, pre manage hook procedure to invoke.
Specifies the client data to be passed to the hook procedure.
.SH DESCRIPTION
The
-.ZN XtManageChildren
+.BR XtManageChildren
function performs the following:
.IP \(bu 5
Issues an error if the children do not all have the same parent or
if the parent is not a subclass of
-.ZN compositeWidgetClass .
+.BR compositeWidgetClass .
.IP \(bu 5
Returns immediately if the common parent is being destroyed;
otherwise, for each unique child on the list,
-.ZN XtManageChildren
+.BR XtManageChildren
ignores the child if it already is managed or is being destroyed
and marks it if not.
.IP \(bu 5
@@ -121,21 +121,21 @@ it makes some of the newly managed children viewable:
Calls the change_managed routine of the widgets' parent.
.IP \- 5
Calls
-.ZN XtRealizeWidget
+.BR XtRealizeWidget
on each previously unmanaged child that is unrealized.
.IP \- 5
Maps each previously unmanaged child that has map_when_managed
-.ZN True .
+.BR True .
.RE
.LP
Managing children is independent of the ordering of children and
independent of creating and deleting children.
The layout routine of the parent
should consider children whose managed field is
-.ZN True
+.BR True
and should ignore all other children.
Note that some composite widgets, especially fixed boxes, call
-.ZN XtManageChild
+.BR XtManageChild
from their insert_child procedure.
.LP
If the parent widget is realized,
@@ -143,29 +143,29 @@ its change_managed procedure is called to notify it
that its set of managed children has changed.
The parent can reposition and resize any of its children.
It moves each child as needed by calling
-.ZN XtMoveWidget ,
+.BR XtMoveWidget ,
which first updates the x and y fields and then calls
-.ZN XMoveWindow
+.BR XMoveWindow
if the widget is realized.
.LP
The
-.ZN XtManageChild
+.BR XtManageChild
function constructs a
-.ZN WidgetList
+.BR WidgetList
of length one and calls
-.ZN XtManageChildren .
+.BR XtManageChildren .
.LP
The
-.ZN XtUnmanageChildren
+.BR XtUnmanageChildren
function performs the following:
.IP \(bu 5
Issues an error if the children do not all have the same parent
or if the parent is not a subclass of
-.ZN compositeWidgetClass .
+.BR compositeWidgetClass .
.IP \(bu 5
Returns immediately if the common parent is being destroyed;
otherwise, for each unique child on the list,
-.ZN XtUnmanageChildren
+.BR XtUnmanageChildren
performs the following:
.RS
.IP \- 5
@@ -180,19 +180,19 @@ Calls the change_managed routine of the widgets' parent
after all children have been marked
if the parent is realized.
.LP
-.ZN XtUnmanageChildren
+.BR XtUnmanageChildren
does not destroy the children widgets.
Removing widgets from a parent's managed set is often a temporary banishment,
and, some time later, you may manage the children again.
.LP
The
-.ZN XtUnmanageChild
+.BR XtUnmanageChild
function constructs a widget list
of length one and calls
-.ZN XtUnmanageChildren .
+.BR XtUnmanageChildren .
.LP
The
-.ZN XtChangeManagedSet
+.BR XtChangeManagedSet
function performs the following:
.IP \(bu 5
Issues an error if the widgets specified in the \fImanage_children\fP
@@ -202,40 +202,40 @@ if that parent is not a subclass of compositeWidgetClass.
Returns immediately if the common parent is being destroyed.
.IP \(bu 5
If no
-.ZN CompositeClassExtension
+.BR CompositeClassExtension
is defined, or a
-.ZN CompositeClassExtension
+.BR CompositeClassExtension
is defined but with an \fIallows_change_managed_set\fP field with a
value of
-.ZN False ,
+.BR False ,
and
-.ZN XtChangeManagedSet
+.BR XtChangeManagedSet
was invoked with a non-NULL \fIdo_change_proc\fP procedure
then
-.ZN XtChangeManagedSet
+.BR XtChangeManagedSet
performs the following:
.RS
.IP \- 5
Calls
-.ZN XtUnmanageChildren
+.BR XtUnmanageChildren
(\fIunmanage_children\fP, \fInum_unmanage_children\fP).
.IP \- 5
Calls the \fIdo_change_proc\fP specified.
.IP \- 5
Calls
-.ZN XtManageChildren
+.BR XtManageChildren
(\fImanage_children\fP, \fInum_manage_children\fP) and then returns
immediately.
.RE
.IP \(bu 5
Otherwise, if a
-.ZN CompositeClassExtension
+.BR CompositeClassExtension
is defined with an \fIallows_change_managed_set\fP field with a value of
-.ZN True ,
+.BR True ,
or if no
-.ZN CompositeClassExtension
+.BR CompositeClassExtension
is defined, and
-.ZN XtChangeManagedSet was invoked with a NULL
+.BR XtChangeManagedSet was invoked with a NULL
\fIdo_change_proc\fP procedure, then the following is
performed:
.RS
@@ -259,20 +259,20 @@ of the newly managed children are made viewable by:
.RS
.IP \- 5
Calling
-.ZN XtRealizeWidget
+.BR XtRealizeWidget
on each of the previously unmanaged child that is unrealized.
.IP \- 5
Mapping each previously unmanaged child that has \fImap_when_managed\fP
-.ZN True .
+.BR True .
.RE
.LP
The
-.ZN XtIsManaged
+.BR XtIsManaged
function returns
-.ZN True
+.BR True
if the specified widget is of class RectObj or any subclass thereof and
is managed, or
-.ZN False
+.BR False
otherwise.
.SH "SEE ALSO"
XtMapWidget(__libmansuffix__),