1 /***************************************************************************
2 * Copyright (c) 2024 Microsoft Corporation
3 *
4 * This program and the accompanying materials are made available under the
5 * terms of the MIT License which is available at
6 * https://opensource.org/licenses/MIT.
7 *
8 * SPDX-License-Identifier: MIT
9 **************************************************************************/
10
11
12 /**************************************************************************/
13 /**************************************************************************/
14 /** */
15 /** GUIX Component */
16 /** */
17 /** Widget Management (Widget) */
18 /** */
19 /**************************************************************************/
20
21 #define GX_SOURCE_CODE
22
23
24 /* Include necessary system files. */
25
26 #include "gx_api.h"
27 #include "gx_widget.h"
28
29
30 /**************************************************************************/
31 /* */
32 /* FUNCTION RELEASE */
33 /* */
34 /* _gx_widget_children_event_process PORTABLE C */
35 /* 6.1 */
36 /* AUTHOR */
37 /* */
38 /* Kenneth Maxwell, Microsoft Corporation */
39 /* */
40 /* DESCRIPTION */
41 /* */
42 /* This function propagates widget events to the children of the */
43 /* specified widget. */
44 /* */
45 /* INPUT */
46 /* */
47 /* widget Widget control block */
48 /* event_ptr Incoming event to process */
49 /* */
50 /* OUTPUT */
51 /* */
52 /* None */
53 /* */
54 /* CALLS */
55 /* */
56 /* [gx_widget_event_process_function] Child widget event processing */
57 /* */
58 /* CALLED BY */
59 /* */
60 /* GUIX Internal Code */
61 /* */
62 /* RELEASE HISTORY */
63 /* */
64 /* DATE NAME DESCRIPTION */
65 /* */
66 /* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */
67 /* 09-30-2020 Kenneth Maxwell Modified comment(s), */
68 /* resulting in version 6.1 */
69 /* */
70 /**************************************************************************/
_gx_widget_children_event_process(GX_WIDGET * widget,GX_EVENT * event_ptr)71 VOID _gx_widget_children_event_process(GX_WIDGET *widget, GX_EVENT *event_ptr)
72 {
73
74 GX_WIDGET *child;
75
76
77 /* Pickup the first child of the widget. */
78 child = widget -> gx_widget_first_child;
79
80 /* Loop to send event to all children of widget. */
81 while (child)
82 {
83
84 /* Call widget's event processing. */
85 child -> gx_widget_event_process_function(child, event_ptr);
86
87 /* Move to next child widget. */
88 child = child -> gx_widget_next;
89 }
90 }
91
92