diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2019-03-29 21:47:33 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2019-04-16 18:45:50 -0400 |
commit | d9afa0ca6e677b446ce43f2f189c08cfe87f68f3 (patch) | |
tree | bea0b5acfceadf9a2c783c3c8405aa37bcad2f23 /specs/CH07.xml | |
parent | 1dd873e7bf2239b338d2b8c35607139c0d3d6e84 (diff) |
whitespace-fixes, plus convert examples to standard C
Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
Diffstat (limited to 'specs/CH07.xml')
-rw-r--r-- | specs/CH07.xml | 49 |
1 files changed, 24 insertions, 25 deletions
diff --git a/specs/CH07.xml b/specs/CH07.xml index dbb9185..46ef7f6 100644 --- a/specs/CH07.xml +++ b/specs/CH07.xml @@ -2852,10 +2852,10 @@ initialized to one of the following values: </para> <literallayout > -#define XtExposeNoCompress ((XtEnum)False) -#define XtExposeCompressSeries ((XtEnum)True) -#define XtExposeCompressMultiple <implementation-defined> -#define XtExposeCompressMaximal <implementation-defined> +#define XtExposeNoCompress ((XtEnum)False) +#define XtExposeCompressSeries ((XtEnum)True) +#define XtExposeCompressMultiple <implementation-defined> +#define XtExposeCompressMaximal <implementation-defined> </literallayout> <para> @@ -3142,9 +3142,9 @@ you could write a single display routine in Label that uses display state fields like </para> <literallayout > -Boolean invert; -Boolean highlight; -Dimension highlight_width; +Boolean invert; +Boolean highlight; +Dimension highlight_width; </literallayout> <para> Label would have <emphasis remap='I'>invert</emphasis> and <emphasis remap='I'>highlight</emphasis> always @@ -4736,11 +4736,11 @@ They require the application context or process to be locked before the application can safely call them directly, for example: </para> <literallayout > - ... - XtAppLock(app_context); - XtCvtStringToPixel(dpy, args, num_args, fromVal, toVal, closure_ret); - XtAppUnlock(app_context); - ... + ... + XtAppLock(app_context); + XtCvtStringToPixel(dpy, args, num_args, fromVal, toVal, closure_ret); + XtAppUnlock(app_context); + ... </literallayout> <para> When the application relies upon @@ -4758,14 +4758,13 @@ widget internal data. For example: </para> <literallayout > #include <X11/CoreP.h> -Boolean BeingDestroyed (widget) - Widget widget; +Boolean BeingDestroyed (Widget widget) { - Boolean ret; - XtAppLock(XtWidgetToApplicationContext(widget)); - ret = widget->core.being_destroyed; - XtAppUnlock(XtWidgetToApplicationContext(widget)); - return ret; + Boolean ret; + XtAppLock(XtWidgetToApplicationContext(widget)); + ret = widget->core.being_destroyed; + XtAppUnlock(XtWidgetToApplicationContext(widget)); + return ret; } </literallayout> <para> @@ -4773,12 +4772,12 @@ A client that wishes to atomically call two or more Intrinsics functions must lock the application context. For example: </para> <literallayout > - ... - XtAppLock(XtWidgetToApplicationContext(widget)); - XtUnmanageChild (widget1); - XtManageChild (widget2); - XtAppUnlock(XtWidgetToApplicationContext(widget)); - ... + ... + XtAppLock(XtWidgetToApplicationContext(widget)); + XtUnmanageChild (widget1); + XtManageChild (widget2); + XtAppUnlock(XtWidgetToApplicationContext(widget)); + ... </literallayout> <sect3 id="Locking_the_Application_Context"> <title>Locking the Application Context</title> |