diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2019-07-07 19:59:07 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2019-07-07 19:59:07 -0400 |
commit | 24816189ce8f21b77ede96bc1f83f41cf2ffa7fe (patch) | |
tree | e3f18ed5bbbbeadace0a9a9b5e3114cefcc0707b /src/Constraint.c | |
parent | 2b4b0b5104b9f39769f8cd500c57c0bf17994825 (diff) |
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
Diffstat (limited to 'src/Constraint.c')
-rw-r--r-- | src/Constraint.c | 122 |
1 files changed, 65 insertions, 57 deletions
diff --git a/src/Constraint.c b/src/Constraint.c index 92b61b6..fd64963 100644 --- a/src/Constraint.c +++ b/src/Constraint.c @@ -75,67 +75,75 @@ in this Software without prior written authorization from The Open Group. #include "StringDefs.h" static void ConstraintPartInitialize(WidgetClass wc); -externaldef(constraintclassrec) ConstraintClassRec constraintClassRec = { - { /******* CorePart *******/ - /* superclass */ (WidgetClass) &compositeClassRec, - /* class_name */ "Constraint", - /* widget_size */ sizeof(ConstraintRec), - /* class_initialize */ NULL, - /* class_part_initialize*/ ConstraintPartInitialize, - /* class_inited */ FALSE, - /* initialize */ NULL, - /* initialize_hook */ NULL, - /* realize */ XtInheritRealize, - /* actions */ NULL, - /* num_actions */ 0, - /* resources */ NULL, - /* num_resources */ 0, - /* xrm_class */ NULLQUARK, - /* compress_motion */ FALSE, - /* compress_exposure */ TRUE, - /* compress_enterleave */ FALSE, - /* visible_interest */ FALSE, - /* destroy */ NULL, - /* resize */ NULL, - /* expose */ NULL, - /* set_values */ NULL, - /* set_values_hook */ NULL, - /* set_values_almost */ XtInheritSetValuesAlmost, - /* get_values_hook */ NULL, - /* accept_focus */ NULL, - /* version */ XtVersion, - /* callback_offsets */ NULL, - /* tm_table */ NULL, - /* query_geometry */ NULL, - /* display_accelerator */ NULL, - /* extension */ NULL - },{ /**** CompositePart *****/ - /* geometry_handler */ NULL, - /* change_managed */ NULL, - /* insert_child */ XtInheritInsertChild, - /* delete_child */ XtInheritDeleteChild, - /* extension */ NULL - },{ /**** ConstraintPart ****/ - /* resources */ NULL, - /* num_resources */ 0, - /* constraint_size */ 0, - /* initialize */ NULL, - /* destroy */ NULL, - /* set_values */ NULL, - /* extension */ NULL - } -}; -externaldef(constraintwidgetclass) WidgetClass constraintWidgetClass = - (WidgetClass) &constraintClassRec; +externaldef(constraintclassrec) +ConstraintClassRec constraintClassRec = { + { + /******* CorePart *******/ + /* superclass */ (WidgetClass) & compositeClassRec, + /* class_name */ "Constraint", + /* widget_size */ sizeof(ConstraintRec), + /* class_initialize */ NULL, + /* class_part_initialize */ ConstraintPartInitialize, + /* class_inited */ FALSE, + /* initialize */ NULL, + /* initialize_hook */ NULL, + /* realize */ XtInheritRealize, + /* actions */ NULL, + /* num_actions */ 0, + /* resources */ NULL, + /* num_resources */ 0, + /* xrm_class */ NULLQUARK, + /* compress_motion */ FALSE, + /* compress_exposure */ TRUE, + /* compress_enterleave */ FALSE, + /* visible_interest */ FALSE, + /* destroy */ NULL, + /* resize */ NULL, + /* expose */ NULL, + /* set_values */ NULL, + /* set_values_hook */ NULL, + /* set_values_almost */ XtInheritSetValuesAlmost, + /* get_values_hook */ NULL, + /* accept_focus */ NULL, + /* version */ XtVersion, + /* callback_offsets */ NULL, + /* tm_table */ NULL, + /* query_geometry */ NULL, + /* display_accelerator */ NULL, + /* extension */ NULL + } + , { + /**** CompositePart *****/ + /* geometry_handler */ NULL, + /* change_managed */ NULL, + /* insert_child */ XtInheritInsertChild, + /* delete_child */ XtInheritDeleteChild, + /* extension */ NULL + } + , { + /**** ConstraintPart ****/ + /* resources */ NULL, + /* num_resources */ 0, + /* constraint_size */ 0, + /* initialize */ NULL, + /* destroy */ NULL, + /* set_values */ NULL, + /* extension */ NULL + } +}; +externaldef(constraintwidgetclass) +WidgetClass constraintWidgetClass = (WidgetClass) & constraintClassRec; -static void ConstraintPartInitialize(WidgetClass wc) +static void +ConstraintPartInitialize(WidgetClass wc) { - ConstraintWidgetClass cwc = (ConstraintWidgetClass)wc; + ConstraintWidgetClass cwc = (ConstraintWidgetClass) wc; + if (cwc->constraint_class.resources) - _XtCompileResourceList(cwc->constraint_class.resources, - cwc->constraint_class.num_resources); + _XtCompileResourceList(cwc->constraint_class.resources, + cwc->constraint_class.num_resources); - _XtConstraintResDependencies((ConstraintWidgetClass)wc); + _XtConstraintResDependencies((ConstraintWidgetClass) wc); } |