GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: gx_single_line_text_input_style_remove.c Lines: 10 10 100.0 %
Date: 2024-12-05 08:52:37 Branches: 8 8 100.0 %

Line Branch Exec Source
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 Input Management (Single 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_single_line_text_input.h"
30
31
/**************************************************************************/
32
/*                                                                        */
33
/*  FUNCTION                                               RELEASE        */
34
/*                                                                        */
35
/*    _gx_single_line_text_input_style_remove             PORTABLE C      */
36
/*                                                           6.1          */
37
/*  AUTHOR                                                                */
38
/*                                                                        */
39
/*    Kenneth Maxwell, Microsoft Corporation                              */
40
/*                                                                        */
41
/*  DESCRIPTION                                                           */
42
/*                                                                        */
43
/*    This service removes styles from a single line text input widget.   */
44
/*                                                                        */
45
/*  INPUT                                                                 */
46
/*                                                                        */
47
/*    text_input                            Single-line text input widget */
48
/*                                           control block                */
49
/*    style                                 Styles to remove              */
50
/*                                                                        */
51
/*  OUTPUT                                                                */
52
/*                                                                        */
53
/*    status                                Completion status             */
54
/*                                                                        */
55
/*  CALLS                                                                 */
56
/*                                                                        */
57
/*    status                                Completion status             */
58
/*                                                                        */
59
/*  CALLED BY                                                             */
60
/*                                                                        */
61
/*    Application Code                                                    */
62
/*                                                                        */
63
/*  RELEASE HISTORY                                                       */
64
/*                                                                        */
65
/*    DATE              NAME                      DESCRIPTION             */
66
/*                                                                        */
67
/*  05-19-2020     Kenneth Maxwell          Initial Version 6.0           */
68
/*  09-30-2020     Kenneth Maxwell          Modified comment(s),          */
69
/*                                            resulting in version 6.1    */
70
/*                                                                        */
71
/**************************************************************************/
72
49
UINT _gx_single_line_text_input_style_remove(GX_SINGLE_LINE_TEXT_INPUT *text_input, ULONG style)
73
{
74
UINT status;
75
76
49
    status = _gx_widget_style_remove((GX_WIDGET *)text_input, style);
77
78
49
    if ((text_input -> gx_widget_status & GX_STATUS_VISIBLE) &&
79
44
        (style & GX_STYLE_CURSOR_BLINK))
80
    {
81
        /* Stop timer. */
82
31
        _gx_system_timer_stop((GX_WIDGET *)text_input, ID_TEXT_INPUT_TIMER);
83
84
31
        text_input -> gx_widget_status |= GX_STATUS_CURSOR_DRAW;
85
    }
86
87
49
    if ((style & GX_STYLE_CURSOR_ALWAYS) &&
88
3
        (_gx_system_focus_owner != (GX_WIDGET *)text_input))
89
    {
90
2
        text_input -> gx_widget_status &= (ULONG)(~GX_STATUS_CURSOR_SHOW);
91
    }
92
93
49
    return status;
94
}
95