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 /**   Text Button Management (Button)                                     */
18 /**                                                                       */
19 /**************************************************************************/
20 
21 #define GX_SOURCE_CODE
22 
23 /* Include necessary system files.  */
24 
25 #include "gx_api.h"
26 #include "gx_widget.h"
27 #include "gx_button.h"
28 #include "gx_canvas.h"
29 #include "gx_system.h"
30 #include "gx_context.h"
31 
32 /**************************************************************************/
33 /*                                                                        */
34 /*  FUNCTION                                               RELEASE        */
35 /*                                                                        */
36 /*    _gx_multi_line_text_button_draw                     PORTABLE C      */
37 /*                                                           6.1          */
38 /*  AUTHOR                                                                */
39 /*                                                                        */
40 /*    Kenneth Maxwell, Microsoft Corporation                              */
41 /*                                                                        */
42 /*  DESCRIPTION                                                           */
43 /*                                                                        */
44 /*    This function draws the specified multi-line text button, which is  */
45 /*    special type of button (widget).                                    */
46 /*                                                                        */
47 /*  INPUT                                                                 */
48 /*                                                                        */
49 /*    button                                Button control block          */
50 /*                                                                        */
51 /*  OUTPUT                                                                */
52 /*                                                                        */
53 /*    None                                                                */
54 /*                                                                        */
55 /*  CALLS                                                                 */
56 /*                                                                        */
57 /*   _gx_button_background_draw             Draw button background        */
58 /*   _gx_multi_line_text_button_text_draw   Draw multi-line button text   */
59 /*   _gx_widget_children_draw               Draw children widgets         */
60 /*   _gx_monochrome_driver_disabled_button_line_draw                      */
61 /*                                          Draw a line for disabled      */
62 /*                                            monochrome button           */
63 /*                                                                        */
64 /*  CALLED BY                                                             */
65 /*                                                                        */
66 /*    System and Application Code                                         */
67 /*                                                                        */
68 /*  RELEASE HISTORY                                                       */
69 /*                                                                        */
70 /*    DATE              NAME                      DESCRIPTION             */
71 /*                                                                        */
72 /*  05-19-2020     Kenneth Maxwell          Initial Version 6.0           */
73 /*  09-30-2020     Kenneth Maxwell          Modified comment(s),          */
74 /*                                            resulting in version 6.1    */
75 /*                                                                        */
76 /**************************************************************************/
_gx_multi_line_text_button_draw(GX_MULTI_LINE_TEXT_BUTTON * button)77 VOID  _gx_multi_line_text_button_draw(GX_MULTI_LINE_TEXT_BUTTON *button)
78 {
79 GX_WIDGET *widget = (GX_WIDGET *)button;
80 
81     /* draw the background button */
82     _gx_button_background_draw((GX_BUTTON *)button);
83 
84     /* draw the text lines */
85     _gx_multi_line_text_button_text_draw(button);
86 
87     /* Draw button's children.  */
88     _gx_widget_children_draw(widget);
89 
90     if (!(button -> gx_widget_style & GX_STYLE_ENABLED))
91     {
92         /* Draw a line on the button to show it's disable for mono driver. */
93         _gx_monochrome_driver_disabled_button_line_draw((GX_BUTTON *)button);
94     }
95 }
96 
97