/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. * * SPDX-License-Identifier: MIT **************************************************************************/ /**************************************************************************/ /**************************************************************************/ /** */ /** GUIX Component */ /** */ /** Widget Management (Widget) */ /** */ /**************************************************************************/ #define GX_SOURCE_CODE /* Include necessary system files. */ #include "gx_api.h" #include "gx_widget.h" /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _gx_widget_border_width_get PORTABLE C */ /* 6.1 */ /* AUTHOR */ /* */ /* Kenneth Maxwell, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This service gets the widget border width. */ /* */ /* INPUT */ /* */ /* widget Pointer to widget */ /* return_width Pointer to destination for */ /* widget border width */ /* */ /* OUTPUT */ /* */ /* status Completion status */ /* */ /* CALLS */ /* */ /* None */ /* */ /* CALLED BY */ /* */ /* Application Code */ /* GUIX draw functions */ /* */ /* RELEASE HISTORY */ /* */ /* DATE NAME DESCRIPTION */ /* */ /* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ /* 09-30-2020 Kenneth Maxwell Modified comment(s), */ /* resulting in version 6.1 */ /* */ /**************************************************************************/ UINT _gx_widget_border_width_get(GX_WIDGET *widget, GX_VALUE *return_width) { switch (widget -> gx_widget_style & GX_STYLE_BORDER_MASK) { case GX_STYLE_BORDER_RAISED: case GX_STYLE_BORDER_RECESSED: *return_width = 2; break; case GX_STYLE_BORDER_THIN: *return_width = 1; break; case GX_STYLE_BORDER_THICK: *return_width = 5; break; case GX_STYLE_BORDER_NONE: default: *return_width = 0; break; } return(GX_SUCCESS); }