From ac5fc7f293768c7dfa9c37b525871704bdc7f43e Mon Sep 17 00:00:00 2001 From: tpearson Date: Thu, 16 Jun 2011 19:16:00 +0000 Subject: Fix Quanta data files git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1237031 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- .../pages/docbook/kde-doc-template.docbook | 44 +++++++++++----------- 1 file changed, 22 insertions(+), 22 deletions(-) (limited to 'quanta/data/templates/pages/docbook/kde-doc-template.docbook') diff --git a/quanta/data/templates/pages/docbook/kde-doc-template.docbook b/quanta/data/templates/pages/docbook/kde-doc-template.docbook index e9b610fb..65a5773c 100644 --- a/quanta/data/templates/pages/docbook/kde-doc-template.docbook +++ b/quanta/data/templates/pages/docbook/kde-doc-template.docbook @@ -271,7 +271,7 @@ Programming &kmyapplication; plugins is a joy to behold. Just read through the n should consult the docbook reference for further details. The example below was taken from that reference and shortened a bit for readability. --> - + XtUnmanageChildren Xt - Geometry Management @@ -279,10 +279,10 @@ taken from that reference and shortened a bit for readability. --> XtUnmanageChildren -remove a list of tqchildren from a tqparent widget's managed +remove a list of children from a parent widget's managed list. -widgetsremoving -XtUnmanageChildren +widgetsremoving +XtUnmanageChildren @@ -291,16 +291,16 @@ list. 4 March 1996 -void XtUnmanageChildren(tqchildren, num_tqchildren) - WidgetList tqchildren; - Cardinal num_tqchildren; +void XtUnmanageChildren(children, num_children) + WidgetList children; + Cardinal num_children; - + Inputs -tqchildren +children Specifies an array of child widgets. Each child must be of @@ -309,40 +309,40 @@ class RectObj or any subclass thereof. -num_tqchildren +num_children -Specifies the number of elements in tqchildren. +Specifies the number of elements in children. - + Description XtUnmanageChildren() unmaps the specified widgets -and removes them from their tqparent's tqgeometry management. +and removes them from their parent's geometry management. The widgets will disappear from the screen, and (depending -on its tqparent) may no longer have screen space allocated for +on its parent) may no longer have screen space allocated for them. -Each of the widgets in the tqchildren array must have -the same tqparent. +Each of the widgets in the children array must have +the same parent. See the “Algorithm” section below for full details of the widget unmanagement procedure. - + Usage Unmanaging widgets is the usual method for temporarily making them invisible. They can be re-managed with XtManageChildren(). -You can unmap a widget, but leave it under tqgeometry +You can unmap a widget, but leave it under geometry management by calling XtUnmapWidget(). You can destroy a widget's window without destroying the widget by calling XtUnrealizeWidget(). You can destroy a @@ -354,12 +354,12 @@ often more convenient to call XtUnmanageChild() several times than it is to declare and initialize an array of widgets to pass to XtUnmanageChildren(). Calling XtUnmanageChildren() is more efficient, however, -because it only calls the tqparent's change_managed() +because it only calls the parent's change_managed() method once. - + Algorithm XtUnmanageChildren() performs the following: @@ -388,11 +388,11 @@ by unmapping it. - + Structures The WidgetList type is simply an array of widgets: -typedef Widget *WidgetList; +typedef Widget *WidgetList; -- cgit v1.2.1