diff --git a/common/inc/gx_api.h b/common/inc/gx_api.h index 32592cb4..d8a2cf2e 100644 --- a/common/inc/gx_api.h +++ b/common/inc/gx_api.h @@ -24,7 +24,7 @@ /* APPLICATION INTERFACE DEFINITION RELEASE */ /* */ /* gx_api.h PORTABLE C */ -/* 6.1.11 */ +/* 6.1.12 */ /* AUTHOR */ /* */ /* Kenneth Maxwell, Microsoft Corporation */ @@ -92,6 +92,10 @@ /* added new animation flag */ /* GX_ANIMATION_BLOCK_MOVE, */ /* resulting in version 6.1.11 */ +/* 07-29-2022 Kenneth Maxwell Modified comment(s), */ +/* added new style */ +/* GX_STYLE_REPEAT_SELECT, */ +/* resulting in version 6.1.12 */ /* */ /**************************************************************************/ @@ -115,7 +119,7 @@ extern "C" { #define AZURE_RTOS_GUIX #define GUIX_MAJOR_VERSION 6 #define GUIX_MINOR_VERSION 1 -#define GUIX_PATCH_VERSION 11 +#define GUIX_PATCH_VERSION 12 /* The following symbols are defined for backward compatibility reasons.*/ #define __PRODUCT_GUIX__ @@ -799,6 +803,7 @@ typedef struct GX_STRING_STRUCT #define GX_STYLE_CENTER_SELECTED 0x00000010UL #define GX_STYLE_WRAP 0x00000020UL #define GX_STYLE_FLICKABLE 0x00000040UL +#define GX_STYLE_REPEAT_SELECT 0x00000080UL /* Define Icon, Pixelmap button and Icon button alignment flags. */ diff --git a/common/src/gx_display_driver_32argb_pixelmap_draw.c b/common/src/gx_display_driver_32argb_pixelmap_draw.c index 8f76bf0c..30e7a08b 100644 --- a/common/src/gx_display_driver_32argb_pixelmap_draw.c +++ b/common/src/gx_display_driver_32argb_pixelmap_draw.c @@ -123,7 +123,7 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_32xrgb_pixelmap_compressed_alpha_write */ /* PORTABLE C */ -/* 6.1 */ +/* 6.1.12 */ /* AUTHOR */ /* */ /* Kenneth Maxwell, Microsoft Corporation */ @@ -161,6 +161,8 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ /* 09-30-2020 Kenneth Maxwell Modified comment(s), */ /* resulting in version 6.1 */ +/* 07-29-2022 Kenneth Maxwell Modified comment(s), */ +/* resulting in version 6.1.12 */ /* */ /**************************************************************************/ static VOID _gx_display_driver_32argb_pixelmap_compressed_alpha_write(GX_DRAW_CONTEXT *context, @@ -205,7 +207,7 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; } /* now we are on the first visible row, copy pixels until we get - to the enf of the last visible row + to the end of the last visible row */ while (yval <= clip -> gx_rectangle_bottom) diff --git a/common/src/gx_horizontal_list_event_process.c b/common/src/gx_horizontal_list_event_process.c index e4413b66..495a4359 100644 --- a/common/src/gx_horizontal_list_event_process.c +++ b/common/src/gx_horizontal_list_event_process.c @@ -37,7 +37,7 @@ /* FUNCTION RELEASE */ /* */ /* _gx_horizontal_list_event_process PORTABLE C */ -/* 6.1 */ +/* 6.1.12 */ /* AUTHOR */ /* */ /* Kenneth Maxwell, Microsoft Corporation */ @@ -90,6 +90,10 @@ /* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ /* 09-30-2020 Kenneth Maxwell Modified comment(s), */ /* resulting in version 6.1 */ +/* 07-29-2022 Kenneth Maxwell Modified comment(s), */ +/* fixed bug in EVENT_PEN_DRAG */ +/* handler, */ +/* resulting in version 6.1.12 */ /* */ /**************************************************************************/ UINT _gx_horizontal_list_event_process(GX_HORIZONTAL_LIST *list, GX_EVENT *event_ptr) @@ -104,6 +108,8 @@ INT list_width; INT widget_width; INT new_pen_index; GX_WIDGET **stackptr; +GX_WIDGET **stacktop; + GX_EVENT input_release_event; switch (event_ptr -> gx_event_type) @@ -222,19 +228,21 @@ GX_EVENT input_release_event; { /* Start sliding, remove other widgets from input capture stack. */ stackptr = _gx_system_input_capture_stack; + stacktop = _gx_system_input_capture_stack + _gx_system_capture_count; + memset(&input_release_event, 0, sizeof(GX_EVENT)); input_release_event.gx_event_type = GX_EVENT_INPUT_RELEASE; - while (*stackptr) + while (stackptr < stacktop) { - if (*stackptr != widget) + if (*stackptr != GX_NULL && *stackptr != widget) { input_release_event.gx_event_target = *stackptr; _gx_system_event_send(&input_release_event); } stackptr++; } - + _gx_horizontal_list_scroll(list, event_ptr -> gx_event_payload.gx_event_pointdata.gx_point_x - list -> gx_window_move_start.gx_point_x); diff --git a/common/src/gx_horizontal_list_selected_set.c b/common/src/gx_horizontal_list_selected_set.c index 80e9d11f..4b02e70f 100644 --- a/common/src/gx_horizontal_list_selected_set.c +++ b/common/src/gx_horizontal_list_selected_set.c @@ -35,7 +35,7 @@ /* FUNCTION RELEASE */ /* */ /* _gx_horizontal_list_selected_set PORTABLE C */ -/* 6.1 */ +/* 6.1.12 */ /* AUTHOR */ /* */ /* Kenneth Maxwell, Microsoft Corporation */ @@ -74,6 +74,10 @@ /* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ /* 09-30-2020 Kenneth Maxwell Modified comment(s), */ /* resulting in version 6.1 */ +/* 07-29-2022 Kenneth Maxwell Modified comment(s), */ +/* added support for */ +/* GX_STYLE_REPEAT_SELECT, */ +/* resulting in version 6.1.12 */ /* */ /**************************************************************************/ @@ -87,7 +91,10 @@ INT right_index; if (horizontal_list -> gx_horizontal_list_selected == index) { - return GX_SUCCESS; + if ((horizontal_list -> gx_widget_style & GX_STYLE_REPEAT_SELECT) == 0) + { + return GX_SUCCESS; + } } if (index < 0) diff --git a/common/src/gx_system_input_release.c b/common/src/gx_system_input_release.c index 23141e6c..4cf64c23 100644 --- a/common/src/gx_system_input_release.c +++ b/common/src/gx_system_input_release.c @@ -34,7 +34,7 @@ /* FUNCTION RELEASE */ /* */ /* _gx_system_input_release PORTABLE C */ -/* 6.1 */ +/* 6.1.12 */ /* AUTHOR */ /* */ /* Kenneth Maxwell, Microsoft Corporation */ @@ -69,6 +69,11 @@ /* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ /* 09-30-2020 Kenneth Maxwell Modified comment(s), */ /* resulting in version 6.1 */ +/* 07-29-2022 Kenneth Maxwell Modified comment(s), */ +/* optimized logic and ensured */ +/* released stack entries are */ +/* reset to NULL, */ +/* resulting in version 6.1.12 */ /* */ /**************************************************************************/ @@ -92,7 +97,6 @@ UINT status = GX_PTR_ERROR; { _gx_widget_status_remove(owner, GX_STATUS_OWNS_INPUT); _gx_system_capture_count--; - *stackptr = GX_NULL; status = GX_SUCCESS; break; } @@ -102,14 +106,13 @@ UINT status = GX_PTR_ERROR; if (status == GX_SUCCESS) { /* collapse the stack if this entry was in the middle */ - if (stackptr < stacktop) + while (stackptr < stacktop) { - while (stackptr < stacktop) - { - *stackptr = *(stackptr + 1); - stackptr++; - } + *stackptr = *(stackptr + 1); + stackptr++; } + *stackptr = GX_NULL; + if (_gx_system_capture_count > 0) { stacktop--; diff --git a/common/src/gx_vertical_list_event_process.c b/common/src/gx_vertical_list_event_process.c index a4a013a2..bb4d5e77 100644 --- a/common/src/gx_vertical_list_event_process.c +++ b/common/src/gx_vertical_list_event_process.c @@ -35,7 +35,7 @@ /* FUNCTION RELEASE */ /* */ /* _gx_vertical_list_event_process PORTABLE C */ -/* 6.1 */ +/* 6.1.12 */ /* AUTHOR */ /* */ /* Kenneth Maxwell, Microsoft Corporation */ @@ -86,6 +86,10 @@ /* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ /* 09-30-2020 Kenneth Maxwell Modified comment(s), */ /* resulting in version 6.1 */ +/* 07-29-2022 Kenneth Maxwell Modified comment(s), */ +/* fixed bug in EVENT_PEN_DRAG */ +/* handler, */ +/* resulting in version 6.1.12 */ /* */ /**************************************************************************/ UINT _gx_vertical_list_event_process(GX_VERTICAL_LIST *list, GX_EVENT *event_ptr) @@ -100,6 +104,7 @@ INT list_height; INT widget_height; INT new_pen_index; GX_WIDGET **stackptr; +GX_WIDGET **stacktop; GX_EVENT input_release_event; switch (event_ptr -> gx_event_type) @@ -219,12 +224,14 @@ GX_EVENT input_release_event; { /* Start sliding, remove other widgets from input capture stack. */ stackptr = _gx_system_input_capture_stack; + stacktop = _gx_system_input_capture_stack + _gx_system_capture_count; + memset(&input_release_event, 0, sizeof(GX_EVENT)); input_release_event.gx_event_type = GX_EVENT_INPUT_RELEASE; - while (*stackptr) + while (stackptr < stacktop) { - if (*stackptr != widget) + if (*stackptr != GX_NULL && *stackptr != widget) { input_release_event.gx_event_target = *stackptr; _gx_system_event_send(&input_release_event); diff --git a/common/src/gx_vertical_list_selected_set.c b/common/src/gx_vertical_list_selected_set.c index aca20a42..adefa6f3 100644 --- a/common/src/gx_vertical_list_selected_set.c +++ b/common/src/gx_vertical_list_selected_set.c @@ -35,7 +35,7 @@ /* FUNCTION RELEASE */ /* */ /* _gx_vertical_list_selected_set PORTABLE C */ -/* 6.1 */ +/* 6.1.12 */ /* AUTHOR */ /* */ /* Kenneth Maxwell, Microsoft Corporation */ @@ -75,6 +75,9 @@ /* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ /* 09-30-2020 Kenneth Maxwell Modified comment(s), */ /* resulting in version 6.1 */ +/* 07-29-2022 Kenneth Maxwell Added support for GX_STYLE_ */ +/* REPEAT_SELECT, */ +/* resulting in version 6.1.12 */ /* */ /**************************************************************************/ UINT _gx_vertical_list_selected_set(GX_VERTICAL_LIST *vertical_list, INT index) @@ -85,9 +88,12 @@ INT page_index = vertical_list -> gx_vertical_list_top_index; INT top_index; INT bottom_index; - if (vertical_list -> gx_vertical_list_selected == index) + if (vertical_list -> gx_vertical_list_selected == index) { - return GX_SUCCESS; + if ((vertical_list -> gx_widget_style & GX_STYLE_REPEAT_SELECT) == 0) + { + return GX_SUCCESS; + } } if (index < 0) diff --git a/ports/arc_em/metaware/inc/gx_port.h b/ports/arc_em/metaware/inc/gx_port.h index afe4194c..736b94c1 100644 --- a/ports/arc_em/metaware/inc/gx_port.h +++ b/ports/arc_em/metaware/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARCv2_EM/MetaWare Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARCv2_EM/MetaWare Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/arc_hs/metaware/inc/gx_port.h b/ports/arc_hs/metaware/inc/gx_port.h index 721398bf..f1d6041b 100644 --- a/ports/arc_hs/metaware/inc/gx_port.h +++ b/ports/arc_hs/metaware/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARC_HS/MetaWare Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARC_HS/MetaWare Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/arm9/ac5/inc/gx_port.h b/ports/arm9/ac5/inc/gx_port.h index b0465ad9..a8ce61f3 100644 --- a/ports/arm9/ac5/inc/gx_port.h +++ b/ports/arm9/ac5/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARM9/AC5 Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARM9/AC5 Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/arm9/gnu/inc/gx_port.h b/ports/arm9/gnu/inc/gx_port.h index d8347586..63a8605c 100644 --- a/ports/arm9/gnu/inc/gx_port.h +++ b/ports/arm9/gnu/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARM9/GNU Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARM9/GNU Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/arm9/iar/inc/gx_port.h b/ports/arm9/iar/inc/gx_port.h index 8dcd77f1..3946184b 100644 --- a/ports/arm9/iar/inc/gx_port.h +++ b/ports/arm9/iar/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARM9/IAR Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX ARM9/IAR Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/c667x/ccs/inc/gx_port.h b/ports/c667x/ccs/inc/gx_port.h index e79c2240..9976d74a 100644 --- a/ports/c667x/ccs/inc/gx_port.h +++ b/ports/c667x/ccs/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX C6xxx/TI Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX C6xxx/TI Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/ccrx/inc/gx_port.h b/ports/ccrx/inc/gx_port.h index 52234c5e..300d65b2 100644 --- a/ports/ccrx/inc/gx_port.h +++ b/ports/ccrx/inc/gx_port.h @@ -146,7 +146,7 @@ typedef unsigned char GX_UCHAR; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a15/gnu/inc/gx_port.h b/ports/cortex_a15/gnu/inc/gx_port.h index 0e9dcf01..fb9b95c5 100644 --- a/ports/cortex_a15/gnu/inc/gx_port.h +++ b/ports/cortex_a15/gnu/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A15/GNU Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A15/GNU Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a5/ac5/inc/gx_port.h b/ports/cortex_a5/ac5/inc/gx_port.h index fa5d71ea..4ad52534 100644 --- a/ports/cortex_a5/ac5/inc/gx_port.h +++ b/ports/cortex_a5/ac5/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A5/AC5 Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A5/AC5 Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a5/gnu/inc/gx_port.h b/ports/cortex_a5/gnu/inc/gx_port.h index 379322c0..eb3f6300 100644 --- a/ports/cortex_a5/gnu/inc/gx_port.h +++ b/ports/cortex_a5/gnu/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A5/GNU Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A5/GNU Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a5/iar/inc/gx_port.h b/ports/cortex_a5/iar/inc/gx_port.h index 14b0170a..a5588bc4 100644 --- a/ports/cortex_a5/iar/inc/gx_port.h +++ b/ports/cortex_a5/iar/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A5/IAR Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A5/IAR Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a5x/ac6/inc/gx_port.h b/ports/cortex_a5x/ac6/inc/gx_port.h index 14acd6ce..291b4a1f 100644 --- a/ports/cortex_a5x/ac6/inc/gx_port.h +++ b/ports/cortex_a5x/ac6/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A5x/AC6 Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A5x/AC6 Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a7/ac5/inc/gx_port.h b/ports/cortex_a7/ac5/inc/gx_port.h index 801735c2..3e64844a 100644 --- a/ports/cortex_a7/ac5/inc/gx_port.h +++ b/ports/cortex_a7/ac5/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A7/AC5 Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A7/AC5 Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a7/gnu/inc/gx_port.h b/ports/cortex_a7/gnu/inc/gx_port.h index b8f71c9e..5b6db427 100644 --- a/ports/cortex_a7/gnu/inc/gx_port.h +++ b/ports/cortex_a7/gnu/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A7/GNU Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A7/GNU Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a7/iar/inc/gx_port.h b/ports/cortex_a7/iar/inc/gx_port.h index 73fcab47..61314668 100644 --- a/ports/cortex_a7/iar/inc/gx_port.h +++ b/ports/cortex_a7/iar/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A7/IAR Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A7/IAR Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a8/ac5/inc/gx_port.h b/ports/cortex_a8/ac5/inc/gx_port.h index e78c3f05..6c87d1a6 100644 --- a/ports/cortex_a8/ac5/inc/gx_port.h +++ b/ports/cortex_a8/ac5/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A8/AC5 Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A8/AC5 Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a8/gnu/inc/gx_port.h b/ports/cortex_a8/gnu/inc/gx_port.h index cc7535f9..6c1e761e 100644 --- a/ports/cortex_a8/gnu/inc/gx_port.h +++ b/ports/cortex_a8/gnu/inc/gx_port.h @@ -137,7 +137,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A8/GNU Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A8/GNU Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a8/iar/inc/gx_port.h b/ports/cortex_a8/iar/inc/gx_port.h index 60854faf..2a0353a3 100644 --- a/ports/cortex_a8/iar/inc/gx_port.h +++ b/ports/cortex_a8/iar/inc/gx_port.h @@ -137,7 +137,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A8/IAR Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A8/IAR Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a9/ac5/inc/gx_port.h b/ports/cortex_a9/ac5/inc/gx_port.h index e5086302..f1dce493 100644 --- a/ports/cortex_a9/ac5/inc/gx_port.h +++ b/ports/cortex_a9/ac5/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A9/AC5 Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A9/AC5 Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a9/gnu/inc/gx_port.h b/ports/cortex_a9/gnu/inc/gx_port.h index 4c32d5e7..9c38f119 100644 --- a/ports/cortex_a9/gnu/inc/gx_port.h +++ b/ports/cortex_a9/gnu/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A9/GNU Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A9/GNU Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a9/iar/inc/gx_port.h b/ports/cortex_a9/iar/inc/gx_port.h index b24fedf4..206bc1c3 100644 --- a/ports/cortex_a9/iar/inc/gx_port.h +++ b/ports/cortex_a9/iar/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A9/IAR Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-A9/IAR Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m0/ac5/inc/gx_port.h b/ports/cortex_m0/ac5/inc/gx_port.h index 48da31d0..ed0aec47 100644 --- a/ports/cortex_m0/ac5/inc/gx_port.h +++ b/ports/cortex_m0/ac5/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M0/AC5 Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M0/AC5 Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m0/gnu/inc/gx_port.h b/ports/cortex_m0/gnu/inc/gx_port.h index f7666ec3..f12744e7 100644 --- a/ports/cortex_m0/gnu/inc/gx_port.h +++ b/ports/cortex_m0/gnu/inc/gx_port.h @@ -143,7 +143,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M0/GNU Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M0/GNU Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m0/iar/inc/gx_port.h b/ports/cortex_m0/iar/inc/gx_port.h index ecf69268..1970d1c8 100644 --- a/ports/cortex_m0/iar/inc/gx_port.h +++ b/ports/cortex_m0/iar/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M0/IAR Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M0/IAR Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m3/ac5/inc/gx_port.h b/ports/cortex_m3/ac5/inc/gx_port.h index 083bdf34..a49d0f38 100644 --- a/ports/cortex_m3/ac5/inc/gx_port.h +++ b/ports/cortex_m3/ac5/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M3/AC5 Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M3/AC5 Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m3/gnu/inc/gx_port.h b/ports/cortex_m3/gnu/inc/gx_port.h index cbca2e99..d690fb2c 100644 --- a/ports/cortex_m3/gnu/inc/gx_port.h +++ b/ports/cortex_m3/gnu/inc/gx_port.h @@ -143,7 +143,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M3/GNU Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M3/GNU Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m3/iar/inc/gx_port.h b/ports/cortex_m3/iar/inc/gx_port.h index c6223b85..90b2db43 100644 --- a/ports/cortex_m3/iar/inc/gx_port.h +++ b/ports/cortex_m3/iar/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M3/IAR Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M3/IAR Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m3/keil/inc/gx_port.h b/ports/cortex_m3/keil/inc/gx_port.h index bd6b7042..b4f7bf60 100644 --- a/ports/cortex_m3/keil/inc/gx_port.h +++ b/ports/cortex_m3/keil/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M3/KEIL Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M3/KEIL Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m4/ac5/inc/gx_port.h b/ports/cortex_m4/ac5/inc/gx_port.h index 29b1778f..d4d45d09 100644 --- a/ports/cortex_m4/ac5/inc/gx_port.h +++ b/ports/cortex_m4/ac5/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M4/AC5 Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M4/AC5 Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m4/gnu/inc/gx_port.h b/ports/cortex_m4/gnu/inc/gx_port.h index df6bea3e..ca86ad38 100644 --- a/ports/cortex_m4/gnu/inc/gx_port.h +++ b/ports/cortex_m4/gnu/inc/gx_port.h @@ -143,7 +143,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M4/GNU Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M4/GNU Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m4/iar/inc/gx_port.h b/ports/cortex_m4/iar/inc/gx_port.h index 77d9aa9e..e25681c0 100644 --- a/ports/cortex_m4/iar/inc/gx_port.h +++ b/ports/cortex_m4/iar/inc/gx_port.h @@ -137,7 +137,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M4/IAR Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M4/IAR Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m4/keil/inc/gx_port.h b/ports/cortex_m4/keil/inc/gx_port.h index 63e37cd3..ceb96ea1 100644 --- a/ports/cortex_m4/keil/inc/gx_port.h +++ b/ports/cortex_m4/keil/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M4/KEIL Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M4/KEIL Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m7/ac5/inc/gx_port.h b/ports/cortex_m7/ac5/inc/gx_port.h index d566dd92..fa558bc1 100644 --- a/ports/cortex_m7/ac5/inc/gx_port.h +++ b/ports/cortex_m7/ac5/inc/gx_port.h @@ -137,7 +137,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M7/AC5 Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M7/AC5 Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m7/gnu/inc/gx_port.h b/ports/cortex_m7/gnu/inc/gx_port.h index 7ae9dc7d..c4f91729 100644 --- a/ports/cortex_m7/gnu/inc/gx_port.h +++ b/ports/cortex_m7/gnu/inc/gx_port.h @@ -143,7 +143,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M7/GNU Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M7/GNU Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m7/iar/inc/gx_port.h b/ports/cortex_m7/iar/inc/gx_port.h index 95a7708c..a33c3890 100644 --- a/ports/cortex_m7/iar/inc/gx_port.h +++ b/ports/cortex_m7/iar/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M7/IAR Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-M7/IAR Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_r4/ac5/inc/gx_port.h b/ports/cortex_r4/ac5/inc/gx_port.h index d67c4b6f..7c95459d 100644 --- a/ports/cortex_r4/ac5/inc/gx_port.h +++ b/ports/cortex_r4/ac5/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R4/AC5 Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R4/AC5 Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_r4/ac6/inc/gx_port.h b/ports/cortex_r4/ac6/inc/gx_port.h index 39c57880..680592c1 100644 --- a/ports/cortex_r4/ac6/inc/gx_port.h +++ b/ports/cortex_r4/ac6/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R4/AC6 Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R4/AC6 Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_r4/gnu/inc/gx_port.h b/ports/cortex_r4/gnu/inc/gx_port.h index 0772f0b5..c080ccc4 100644 --- a/ports/cortex_r4/gnu/inc/gx_port.h +++ b/ports/cortex_r4/gnu/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R4/GNU Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R4/GNU Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_r4/iar/inc/gx_port.h b/ports/cortex_r4/iar/inc/gx_port.h index ee8e5db2..841bd71d 100644 --- a/ports/cortex_r4/iar/inc/gx_port.h +++ b/ports/cortex_r4/iar/inc/gx_port.h @@ -137,7 +137,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R4/IAR Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R4/IAR Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_r5/ac5/inc/gx_port.h b/ports/cortex_r5/ac5/inc/gx_port.h index 2a374794..75b1086e 100644 --- a/ports/cortex_r5/ac5/inc/gx_port.h +++ b/ports/cortex_r5/ac5/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R5/AC5 Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R5/AC5 Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_r5/gnu/inc/gx_port.h b/ports/cortex_r5/gnu/inc/gx_port.h index 32f7b932..eb96f42b 100644 --- a/ports/cortex_r5/gnu/inc/gx_port.h +++ b/ports/cortex_r5/gnu/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R5/GNU Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R5/GNU Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_r5/iar/inc/gx_port.h b/ports/cortex_r5/iar/inc/gx_port.h index 980f5fc6..c3a41f89 100644 --- a/ports/cortex_r5/iar/inc/gx_port.h +++ b/ports/cortex_r5/iar/inc/gx_port.h @@ -139,7 +139,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R5/IAR Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Cortex-R5/IAR Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/generic/inc/gx_port.h b/ports/generic/inc/gx_port.h index cfcd207d..1ba6410a 100644 --- a/ports/generic/inc/gx_port.h +++ b/ports/generic/inc/gx_port.h @@ -144,7 +144,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/linux/gnu/inc/gx_port.h b/ports/linux/gnu/inc/gx_port.h index 23a7b1ea..7da4d06f 100644 --- a/ports/linux/gnu/inc/gx_port.h +++ b/ports/linux/gnu/inc/gx_port.h @@ -137,7 +137,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Linux/GNU Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Linux/GNU Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/win32/inc/gx_port.h b/ports/win32/inc/gx_port.h index 20c142c1..083ae062 100644 --- a/ports/win32/inc/gx_port.h +++ b/ports/win32/inc/gx_port.h @@ -170,7 +170,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Win32/Visual Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Win32/Visual Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/win32/lib/vs_2019/tx_port.h b/ports/win32/lib/vs_2019/tx_port.h index 52a7eb2b..622a52b0 100644 --- a/ports/win32/lib/vs_2019/tx_port.h +++ b/ports/win32/lib/vs_2019/tx_port.h @@ -419,7 +419,7 @@ VOID _tx_thread_interrupt_restore(UINT previous_posture); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * ThreadX Win32/Visual Studio Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * ThreadX Win32/Visual Studio Version 6.1.12 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/win32/vs_2019_standalone/inc/gx_port.h b/ports/win32/vs_2019_standalone/inc/gx_port.h index 4689a1b8..ed4ff939 100644 --- a/ports/win32/vs_2019_standalone/inc/gx_port.h +++ b/ports/win32/vs_2019_standalone/inc/gx_port.h @@ -100,7 +100,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Win32/Standalone/Visual Version 6.1.11 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * GUIX Win32/Standalone/Visual Version 6.1.12 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/samples/demo_guix_medical/demo_guix_medical.c b/samples/demo_guix_medical/demo_guix_medical.c index f2d5f941..a28e703c 100644 --- a/samples/demo_guix_medical/demo_guix_medical.c +++ b/samples/demo_guix_medical/demo_guix_medical.c @@ -54,6 +54,7 @@ VOID start_guix(VOID) /* Create the patients screen. */ gx_studio_named_widget_create("patients_screen", GX_NULL, GX_NULL); patient_list_children_create(&patients_screen); + gx_widget_style_add(&patients_screen.patients_screen_patient_list, GX_STYLE_REPEAT_SELECT); /* Show the root window to make it and patients screen visible. */ gx_widget_show(root); diff --git a/samples/demo_guix_medical/guix_medical.gxp b/samples/demo_guix_medical/guix_medical.gxp index 31220799..77ba2d90 100644 --- a/samples/demo_guix_medical/guix_medical.gxp +++ b/samples/demo_guix_medical/guix_medical.gxp @@ -4,7 +4,7 @@
55 60108 -6010902 +6011200 guix_medical .\ .\ @@ -6436,7 +6436,7 @@ 619 464 - + 0 TRUE BLACK diff --git a/samples/demo_guix_medical/guix_medical_specifications.c b/samples/demo_guix_medical/guix_medical_specifications.c index 77c5f345..fb58299b 100644 --- a/samples/demo_guix_medical/guix_medical_specifications.c +++ b/samples/demo_guix_medical/guix_medical_specifications.c @@ -5,8 +5,8 @@ /* specification file(s). For more information please refer to the Azure RTOS */ /* GUIX Studio User Guide, or visit our web site at azure.com/rtos */ /* */ -/* GUIX Studio Revision 6.1.10.1 */ -/* Date (dd.mm.yyyy): 23. 3.2022 Time (hh:mm): 14:56 */ +/* GUIX Studio Revision 6.1.12.0 */ +/* Date (dd.mm.yyyy): 19. 7.2022 Time (hh:mm): 09:53 */ /*******************************************************************************/ @@ -5402,7 +5402,7 @@ GX_CONST GX_STUDIO_WIDGET patients_screen_patient_list_define = #if defined(GX_WIDGET_USER_DATA) 0, /* user data */ #endif - GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED, /* style flags */ + GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED|GX_STYLE_REPEAT_SELECT, /* style flags */ GX_STATUS_ACCEPTS_FOCUS, /* status flags */ sizeof(GX_VERTICAL_LIST), /* control block size */ GX_COLOR_ID_BLACK, /* normal color id */ diff --git a/samples/demo_guix_medical/guix_medical_specifications.h b/samples/demo_guix_medical/guix_medical_specifications.h index d8c61a26..495f7494 100644 --- a/samples/demo_guix_medical/guix_medical_specifications.h +++ b/samples/demo_guix_medical/guix_medical_specifications.h @@ -5,8 +5,8 @@ /* specification file(s). For more information please refer to the Azure RTOS */ /* GUIX Studio User Guide, or visit our web site at azure.com/rtos */ /* */ -/* GUIX Studio Revision 6.1.8.0 */ -/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */ +/* GUIX Studio Revision 6.1.12.0 */ +/* Date (dd.mm.yyyy): 19. 7.2022 Time (hh:mm): 09:53 */ /*******************************************************************************/ diff --git a/tutorials/demo_guix_binres/demo_guix_binres_resources.h b/tutorials/demo_guix_binres/demo_guix_binres_resources.h index bae49510..05213c76 100644 --- a/tutorials/demo_guix_binres/demo_guix_binres_resources.h +++ b/tutorials/demo_guix_binres/demo_guix_binres_resources.h @@ -5,8 +5,8 @@ /* resource file(s). For more information please refer to the Azure RTOS GUIX */ /* Studio User Guide, or visit our web site at azure.com/rtos */ /* */ -/* GUIX Studio Revision 6.1.8.0 */ -/* Date (dd.mm.yyyy): 26. 7.2021 Time (hh:mm): 15:32 */ +/* GUIX Studio Revision 6.1.11.0 */ +/* Date (dd.mm.yyyy): 8. 7.2022 Time (hh:mm): 13:46 */ /*******************************************************************************/