1 /**************************************************************************/
2 /* */
3 /* Copyright (c) Microsoft Corporation. All rights reserved. */
4 /* */
5 /* This software is licensed under the Microsoft Software License */
6 /* Terms for Microsoft Azure RTOS. Full text of the license can be */
7 /* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
8 /* and in the root directory of this software. */
9 /* */
10 /**************************************************************************/
11
12
13 /**************************************************************************/
14 /**************************************************************************/
15 /** */
16 /** GUIX Component */
17 /** */
18 /** Context Management (Context) */
19 /** */
20 /**************************************************************************/
21
22 #define GX_SOURCE_CODE
23
24
25 /* Include necessary system files. */
26
27 #include "gx_api.h"
28 #include "gx_system.h"
29 #include "gx_context.h"
30
31
32 /**************************************************************************/
33 /* */
34 /* FUNCTION RELEASE */
35 /* */
36 /* _gx_context_brush_define PORTABLE C */
37 /* 6.1 */
38 /* AUTHOR */
39 /* */
40 /* Kenneth Maxwell, Microsoft Corporation */
41 /* */
42 /* DESCRIPTION */
43 /* */
44 /* Set the brush of the current display context. */
45 /* */
46 /* INPUT */
47 /* */
48 /* line_color_id Resource ID of line color */
49 /* fill_color_id Resource ID of fill color */
50 /* style Style of brush */
51 /* */
52 /* OUTPUT */
53 /* */
54 /* status Completion status */
55 /* */
56 /* CALLS */
57 /* */
58 /* _gx_context_color_get Retrieve context color */
59 /* _gx_brush_define Define the brush */
60 /* */
61 /* CALLED BY */
62 /* */
63 /* _gx_scrollbar_draw */
64 /* _gx_slider_needle_draw */
65 /* _gx_widget_border_draw */
66 /* */
67 /* RELEASE HISTORY */
68 /* */
69 /* DATE NAME DESCRIPTION */
70 /* */
71 /* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */
72 /* 09-30-2020 Kenneth Maxwell Modified comment(s), */
73 /* resulting in version 6.1 */
74 /* */
75 /**************************************************************************/
_gx_context_brush_define(GX_RESOURCE_ID line_color_id,GX_RESOURCE_ID fill_color_id,UINT style)76 UINT _gx_context_brush_define(GX_RESOURCE_ID line_color_id, GX_RESOURCE_ID fill_color_id, UINT style)
77 {
78 UINT status;
79
80 GX_BRUSH *brush;
81 GX_DRAW_CONTEXT *context = _gx_system_current_draw_context;
82
83 GX_COLOR linecolor;
84 GX_COLOR fillcolor;
85
86 status = _gx_context_color_get(line_color_id, &linecolor);
87
88 if (status == GX_SUCCESS)
89 {
90 status = _gx_context_color_get(fill_color_id, &fillcolor);
91
92 if (status == GX_SUCCESS)
93 {
94 /* Set the brush. */
95 brush = &context -> gx_draw_context_brush;
96 status = _gx_brush_define(brush, linecolor, fillcolor, style);
97 }
98 }
99
100 /* Return status. */
101 return status;
102 }
103
104