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 /** Multi Line Text Input Managment (Multi Line Text Input) */ 18 /** */ 19 /**************************************************************************/ 20 21 #define GX_SOURCE_CODE 22 23 24 /* Include necessary system files. */ 25 26 #include "gx_api.h" 27 #include "gx_system.h" 28 #include "gx_widget.h" 29 #include "gx_multi_line_text_input.h" 30 31 /**************************************************************************/ 32 /* */ 33 /* FUNCTION RELEASE */ 34 /* */ 35 /* _gx_multi_line_text_input_style_add PORTABLE C */ 36 /* 6.1 */ 37 /* AUTHOR */ 38 /* */ 39 /* Kenneth Maxwell, Microsoft Corporation */ 40 /* */ 41 /* DESCRIPTION */ 42 /* */ 43 /* This function adds styles to a multi-line text input widget. */ 44 /* */ 45 /* INPUT */ 46 /* */ 47 /* text_input Multi-line text input widget */ 48 /* control block */ 49 /* style styles to add */ 50 /* */ 51 /* OUTPUT */ 52 /* */ 53 /* status Completion status */ 54 /* */ 55 /* CALLS */ 56 /* */ 57 /* _gx_system_timer_start Allocate a free timer and */ 58 /* activates it */ 59 /* */ 60 /* CALLED BY */ 61 /* */ 62 /* Application Code */ 63 /* */ 64 /* RELEASE HISTORY */ 65 /* */ 66 /* DATE NAME DESCRIPTION */ 67 /* */ 68 /* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ 69 /* 09-30-2020 Kenneth Maxwell Modified comment(s), */ 70 /* resulting in version 6.1 */ 71 /* */ 72 /**************************************************************************/ _gx_multi_line_text_input_style_add(GX_MULTI_LINE_TEXT_INPUT * text_input,ULONG style)73UINT _gx_multi_line_text_input_style_add(GX_MULTI_LINE_TEXT_INPUT *text_input, ULONG style) 74 { 75 UINT status; 76 GX_VALUE blink_interval; 77 78 status = _gx_widget_style_add((GX_WIDGET *)text_input, style); 79 80 if (text_input -> gx_widget_style & GX_STYLE_CURSOR_ALWAYS) 81 { 82 text_input -> gx_widget_status |= (GX_STATUS_CURSOR_SHOW | GX_STATUS_CURSOR_DRAW); 83 84 if ((text_input -> gx_widget_status & GX_STATUS_VISIBLE) && 85 (text_input -> gx_widget_style & GX_STYLE_CURSOR_BLINK)) 86 { 87 blink_interval = text_input -> gx_multi_line_text_input_cursor_instance.gx_text_input_cursor_blink_interval; 88 89 /* Start the timer. */ 90 _gx_system_timer_start((GX_WIDGET *)text_input, ID_TEXT_INPUT_TIMER, (UINT)blink_interval, (UINT)blink_interval); 91 } 92 } 93 94 return status; 95 } 96 97