1 /*******************************************************************************/ 2 /* This file is auto-generated by Azure RTOS GUIX Studio. Do not edit this */ 3 /* file by hand. Modifications to this file should only be made by running */ 4 /* the Azure RTOS GUIX Studio application and re-generating the application */ 5 /* specification file(s). For more information please refer to the Azure RTOS */ 6 /* GUIX Studio User Guide, or visit our web site at azure.com/rtos */ 7 /* */ 8 /* GUIX Studio Revision 6.3.0.0 (Preview) */ 9 /* Date (dd.mm.yyyy): 1. 9.2023 Time (hh:mm): 16:34 */ 10 /*******************************************************************************/ 11 12 13 #ifndef _GUIX_DROP_LIST_SPECIFICATIONS_H_ 14 #define _GUIX_DROP_LIST_SPECIFICATIONS_H_ 15 16 #include "gx_api.h" 17 18 /* Determine if C++ compiler is being used, if so use standard C. */ 19 #ifdef __cplusplus 20 extern "C" { 21 #endif 22 23 /* Define widget ids */ 24 25 #define ID_DROP_LIST 1 26 27 28 /* Define animation ids */ 29 30 #define GX_NEXT_ANIMATION_ID 1 31 32 33 /* Define user event ids */ 34 35 #define GX_NEXT_USER_EVENT_ID GX_FIRST_USER_EVENT 36 37 38 /* Declare properties structures for each utilized widget type */ 39 40 typedef struct GX_STUDIO_WIDGET_STRUCT 41 { 42 GX_CHAR *widget_name; 43 USHORT widget_type; 44 USHORT widget_id; 45 #if defined(GX_WIDGET_USER_DATA) 46 INT user_data; 47 #endif 48 ULONG style; 49 ULONG status; 50 ULONG control_block_size; 51 GX_RESOURCE_ID normal_fill_color_id; 52 GX_RESOURCE_ID selected_fill_color_id; 53 GX_RESOURCE_ID disabled_fill_color_id; 54 UINT (*create_function) (GX_CONST struct GX_STUDIO_WIDGET_STRUCT *, GX_WIDGET *, GX_WIDGET *); 55 void (*draw_function) (GX_WIDGET *); 56 UINT (*event_function) (GX_WIDGET *, GX_EVENT *); 57 GX_RECTANGLE size; 58 GX_CONST struct GX_STUDIO_WIDGET_STRUCT *next_widget; 59 GX_CONST struct GX_STUDIO_WIDGET_STRUCT *child_widget; 60 ULONG control_block_offset; 61 GX_CONST void *properties; 62 } GX_STUDIO_WIDGET; 63 64 typedef struct 65 { 66 GX_CONST GX_STUDIO_WIDGET *widget_information; 67 GX_WIDGET *widget; 68 } GX_STUDIO_WIDGET_ENTRY; 69 70 typedef struct 71 { 72 GX_RESOURCE_ID normal_pixelmap_id; 73 GX_RESOURCE_ID selected_pixelmap_id; 74 GX_RESOURCE_ID disabled_pixelmap_id; 75 } GX_PIXELMAP_BUTTON_PROPERTIES; 76 77 typedef struct 78 { 79 GX_RESOURCE_ID normal_pixelmap_id; 80 GX_RESOURCE_ID selected_pixelmap_id; 81 } GX_ICON_PROPERTIES; 82 83 typedef struct 84 { 85 GX_RESOURCE_ID string_id; 86 GX_RESOURCE_ID font_id; 87 GX_RESOURCE_ID normal_text_color_id; 88 GX_RESOURCE_ID selected_text_color_id; 89 GX_RESOURCE_ID disabled_text_color_id; 90 } GX_PROMPT_PROPERTIES; 91 92 typedef struct 93 { 94 GX_RESOURCE_ID wallpaper_id; 95 } GX_WINDOW_PROPERTIES; 96 97 typedef struct 98 { 99 GX_RESOURCE_ID pixelmap_id; 100 GX_RESOURCE_ID wallpaper_id; 101 VOID (*callback)(GX_VERTICAL_LIST *, GX_WIDGET *, INT); 102 int total_rows; 103 int open_height; 104 } GX_DROP_LIST_PROPERTIES; 105 106 107 /* Declare top-level control blocks */ 108 109 typedef struct MAIN_SCREEN_CONTROL_BLOCK_STRUCT 110 { 111 GX_WINDOW_MEMBERS_DECLARE 112 GX_DROP_LIST main_screen_droplist; 113 GX_PIXELMAP_BUTTON main_screen_droplist_button; 114 GX_PROMPT main_screen_prompt; 115 } MAIN_SCREEN_CONTROL_BLOCK; 116 117 typedef struct DROP_LIST_CHILD_WIN_CONTROL_BLOCK_STRUCT 118 { 119 GX_WINDOW_MEMBERS_DECLARE 120 GX_PROMPT drop_list_child_win_drop_list_child_prompt; 121 GX_ICON drop_list_child_win_drop_list_child_icon; 122 } DROP_LIST_CHILD_WIN_CONTROL_BLOCK; 123 124 125 /* extern statically defined control blocks */ 126 127 #ifndef GUIX_STUDIO_GENERATED_FILE 128 extern MAIN_SCREEN_CONTROL_BLOCK main_screen; 129 extern DROP_LIST_CHILD_WIN_CONTROL_BLOCK drop_list_child_win; 130 #endif 131 132 /* Declare event process functions, draw functions, and callback functions */ 133 134 VOID drop_list_row_create(GX_VERTICAL_LIST *, GX_WIDGET *, INT); 135 136 /* Declare the GX_STUDIO_DISPLAY_INFO structure */ 137 138 139 typedef struct GX_STUDIO_DISPLAY_INFO_STRUCT 140 { 141 GX_CONST GX_CHAR *name; 142 GX_CONST GX_CHAR *canvas_name; 143 GX_CONST GX_THEME **theme_table; 144 GX_CONST GX_STRING **language_table; 145 USHORT theme_table_size; 146 USHORT language_table_size; 147 UINT string_table_size; 148 UINT x_resolution; 149 UINT y_resolution; 150 GX_DISPLAY *display; 151 GX_CANVAS *canvas; 152 GX_WINDOW_ROOT *root_window; 153 GX_COLOR *canvas_memory; 154 ULONG canvas_memory_size; 155 USHORT rotation_angle; 156 } GX_STUDIO_DISPLAY_INFO; 157 158 159 /* Declare Studio-generated functions for creating top-level widgets */ 160 161 UINT gx_studio_pixelmap_button_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent); 162 UINT gx_studio_icon_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent); 163 UINT gx_studio_prompt_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent); 164 UINT gx_studio_window_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent); 165 UINT gx_studio_drop_list_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent); 166 GX_WIDGET *gx_studio_widget_create(GX_BYTE *storage, GX_CONST GX_STUDIO_WIDGET *definition, GX_WIDGET *parent); 167 UINT gx_studio_named_widget_create(char *name, GX_WIDGET *parent, GX_WIDGET **new_widget); 168 UINT gx_studio_display_configure(USHORT display, UINT (*driver)(GX_DISPLAY *), GX_UBYTE language, USHORT theme, GX_WINDOW_ROOT **return_root); 169 170 /* Determine if a C++ compiler is being used. If so, complete the standard 171 C conditional started above. */ 172 #ifdef __cplusplus 173 } 174 #endif 175 176 #endif /* sentry */ 177