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.1                                               */
9 /*  Date (dd.mm.yyyy): 22.12.2023   Time (hh:mm): 16:01                        */
10 /*******************************************************************************/
11 
12 
13 #define GUIX_STUDIO_GENERATED_FILE
14 #include <stddef.h>
15 #include "guix_medical_resources.h"
16 #include "guix_medical_specifications.h"
17 
18 static GX_WIDGET *gx_studio_nested_widget_create(GX_BYTE *control, GX_CONST GX_STUDIO_WIDGET *definition, GX_WIDGET *parent);
19 SCHEDULE_SCREEN_CONTROL_BLOCK schedule_screen;
20 PATIENTS_SCREEN_CONTROL_BLOCK patients_screen;
21 VITALS_SCREEN_CONTROL_BLOCK vitals_screen;
22 GX_DISPLAY main_display_control_block;
23 GX_WINDOW_ROOT main_display_root_window;
24 GX_CANVAS  main_display_canvas_control_block;
25 ULONG      main_display_canvas_memory[307200];
26 
27 extern GX_CONST GX_THEME *main_display_theme_table[];
28 extern GX_CONST GX_STRING *main_display_language_table[];
29 
30 GX_STUDIO_DISPLAY_INFO guix_medical_display_table[1] =
31 {
32     {
33     "main_display",
34     "main_display_canvas",
35     main_display_theme_table,
36     main_display_language_table,
37     MAIN_DISPLAY_THEME_TABLE_SIZE,
38     MAIN_DISPLAY_LANGUAGE_TABLE_SIZE,
39     MAIN_DISPLAY_STRING_TABLE_SIZE,
40     640,                                     /* x resolution                   */
41     480,                                     /* y resolution                   */
42     &main_display_control_block,
43     &main_display_canvas_control_block,
44     &main_display_root_window,
45     main_display_canvas_memory,              /* canvas memory area             */
46     1228800,                                 /* canvas memory size in bytes    */
47     GX_SCREEN_ROTATION_NONE                  /* rotation angle                 */
48     }
49 };
50 
gx_studio_action_target_get(GX_WIDGET * current,GX_CONST GX_STUDIO_ACTION * action)51 static GX_WIDGET *gx_studio_action_target_get(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action)
52 {
53     GX_WIDGET *parent = GX_NULL;
54     GX_WIDGET *target = GX_NULL;
55     INT        search_depth;
56     GX_STUDIO_WIDGET *widget_define;
57 
58     if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET)
59     {
60                                              /* dynamically create the target widget */
61         widget_define = (GX_STUDIO_WIDGET *) action->target;
62         if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT)
63         {
64             gx_window_root_find(current, (GX_WINDOW_ROOT **)&parent);
65             search_depth = GX_SEARCH_DEPTH_INFINITE;
66         }
67         else
68         {
69             parent = (GX_WIDGET *)action->parent;
70             search_depth = 1;
71         }
72         gx_widget_find(parent, widget_define->widget_id, search_depth, &target);
73         if (target == GX_NULL)
74         {
75             target = gx_studio_widget_create(GX_NULL, widget_define, GX_NULL);
76         }
77         if (target)
78         {
79             target->gx_widget_status |= GX_STATUS_STUDIO_CREATED;
80         }
81     }
82     else
83     {
84         target = (GX_WIDGET *) action->target;
85     }
86     return target;
87 }
88 
gx_studio_action_target_find(GX_WIDGET * current,GX_CONST GX_STUDIO_ACTION * action)89 static GX_WIDGET *gx_studio_action_target_find(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action)
90 {
91     GX_WIDGET *parent = GX_NULL;
92     GX_WIDGET *target = GX_NULL;
93     GX_STUDIO_WIDGET *widget_define;
94 
95     if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET)
96     {
97                                              /* Find the dynamically created target */
98         widget_define = (GX_STUDIO_WIDGET *) action->target;
99         if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT)
100         {
101             gx_window_root_find(current, (GX_WINDOW_ROOT **)&parent);
102         }
103         else
104         {
105             parent = (GX_WIDGET *)action->parent;
106         }
107         gx_widget_find(parent, widget_define->widget_id, GX_SEARCH_DEPTH_INFINITE, &target);
108     }
109     else
110     {
111         target = (GX_WIDGET *) action->target;
112     }
113     return target;
114 }
115 
gx_studio_action_parent_find(GX_WIDGET * current,GX_CONST GX_STUDIO_ACTION * action)116 static GX_WIDGET *gx_studio_action_parent_find(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action)
117 {
118 GX_WIDGET *parent = GX_NULL;
119 GX_STUDIO_WIDGET *widget_define;
120 
121     if (action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT)
122     {
123                                              /* Find the dynamically created target */
124         widget_define = (GX_STUDIO_WIDGET *)action->parent;
125         gx_window_root_find(current, (GX_WINDOW_ROOT **)&parent);
126         gx_widget_find(parent, widget_define->widget_id, GX_SEARCH_DEPTH_INFINITE, &parent);
127     }
128     else
129     {
130         parent = (GX_WIDGET *)action->parent;
131     }
132     return parent;
133 }
134 
gx_studio_animation_execute(GX_WIDGET * current,GX_CONST GX_STUDIO_ACTION * action)135 static VOID gx_studio_animation_execute(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action)
136 {
137     GX_ANIMATION *animation;
138     GX_ANIMATION_INFO animation_info;
139     GX_WIDGET *parent = GX_NULL;
140     GX_WIDGET *target = GX_NULL;
141     gx_system_animation_get(&animation);
142     if (animation)
143     {
144         animation_info = *action->animation;
145 
146         if((action->flags & GX_ACTION_FLAG_POP_TARGET) ||
147            (action->flags & GX_ACTION_FLAG_POP_PARENT))
148         {
149             gx_system_screen_stack_get((GX_WIDGET **)&parent, &target);
150         }
151 
152         if(action->flags & GX_ACTION_FLAG_POP_TARGET)
153         {
154             animation_info.gx_animation_target = target;
155         }
156 
157         if(action->flags & GX_ACTION_FLAG_POP_PARENT)
158         {
159             animation_info.gx_animation_parent = (GX_WIDGET *)parent;
160         }
161 
162         if ((!animation_info.gx_animation_target) &&
163             (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET))
164         {
165             target = gx_studio_action_target_get(current, action);
166             animation_info.gx_animation_target = target;
167         }
168 
169         if (!animation_info.gx_animation_parent)
170         {
171             animation_info.gx_animation_parent = gx_studio_action_parent_find(current, action);
172         }
173 
174         if (animation_info.gx_animation_target &&
175             animation_info.gx_animation_parent)
176         {
177             gx_animation_start(animation, &animation_info);
178         }
179     }
180 }
181 
gx_studio_auto_event_handler(GX_WIDGET * widget,GX_EVENT * event_ptr,GX_CONST GX_STUDIO_EVENT_PROCESS * record)182 UINT gx_studio_auto_event_handler(GX_WIDGET *widget, GX_EVENT *event_ptr, GX_CONST GX_STUDIO_EVENT_PROCESS *record)
183 {
184     UINT status = GX_SUCCESS;
185     GX_CONST GX_STUDIO_ACTION *action;
186     GX_CONST GX_WIDGET *parent = GX_NULL;
187     GX_WIDGET *target = GX_NULL;
188     GX_CONST GX_STUDIO_EVENT_ENTRY *entry = record->event_table;
189 
190     while(entry->event_type)
191     {
192         if (entry->event_type == event_ptr->gx_event_type)
193         {
194             if((entry->event_type == GX_EVENT_ANIMATION_COMPLETE) &&
195                (entry->event_sender != event_ptr->gx_event_sender))
196             {
197                 entry++;
198                 continue;
199             }
200             action = entry->action_list;
201 
202             while(action->opcode)
203             {
204                 switch(action->opcode)
205                 {
206                 case GX_ACTION_TYPE_ATTACH:
207                     if((action->flags & GX_ACTION_FLAG_POP_TARGET) ||
208                        (action->flags & GX_ACTION_FLAG_POP_PARENT))
209                     {
210                         gx_system_screen_stack_get((GX_WIDGET **)&parent, &target);
211                     }
212 
213                     if(!(action->flags & GX_ACTION_FLAG_POP_PARENT))
214                     {
215                         parent = action->parent;
216                     }
217                     if(!(action->flags & GX_ACTION_FLAG_POP_TARGET))
218                     {
219                         target = gx_studio_action_target_get(widget, action);
220                     }
221                     if (parent && target)
222                     {
223                         gx_widget_attach(parent, target);
224                     }
225                     break;
226 
227                 case GX_ACTION_TYPE_DETACH:
228                     target = gx_studio_action_target_find(widget, action);
229                     if (target)
230                     {
231                         gx_widget_detach(target);
232                         if (target->gx_widget_status & GX_STATUS_STUDIO_CREATED)
233                         {
234                             if (widget == target)
235                             {
236                                 widget = GX_NULL;
237                             }
238 
239                             gx_widget_delete(target);
240                         }
241                     }
242                     break;
243 
244                 case GX_ACTION_TYPE_TOGGLE:
245                     if(action->flags & GX_ACTION_FLAG_POP_TARGET)
246                     {
247                        gx_system_screen_stack_get(GX_NULL, &target);
248                     }
249                     else
250                     {
251                         target = gx_studio_action_target_get(widget, action);
252                     }
253                     parent = widget->gx_widget_parent;
254                     if (parent)
255                     {
256                         gx_widget_detach(widget);
257                         gx_widget_attach(parent, target);
258                         if (widget->gx_widget_status & GX_STATUS_STUDIO_CREATED)
259                         {
260                             gx_widget_delete(widget);
261                             widget = GX_NULL;
262                         }
263                     }
264                     break;
265 
266                 case GX_ACTION_TYPE_SHOW:
267                     target = gx_studio_action_target_get(widget, action);
268                     if(target)
269                     {
270                         gx_widget_show(target);
271                     }
272                     break;
273 
274                 case GX_ACTION_TYPE_HIDE:
275                     target = gx_studio_action_target_find(widget, action);
276                     if(target)
277                     {
278                         gx_widget_hide(target);
279                     }
280                     break;
281 
282                 case GX_ACTION_TYPE_ANIMATION:
283                     gx_studio_animation_execute(widget, action);
284                     break;
285 
286                 case GX_ACTION_TYPE_WINDOW_EXECUTE:
287                     if((action->flags & GX_ACTION_FLAG_POP_TARGET) ||
288                        (action->flags & GX_ACTION_FLAG_POP_PARENT))
289                     {
290                         gx_system_screen_stack_get((GX_WIDGET **)&parent, &target);
291                     }
292 
293                     if(!(action->flags & GX_ACTION_FLAG_POP_PARENT))
294                     {
295                         parent = widget->gx_widget_parent;
296                     }
297                     if(!(action->flags & GX_ACTION_FLAG_POP_TARGET))
298                     {
299                         target = gx_studio_action_target_get(widget, action);
300                     }
301                     if (parent && target)
302                     {
303                         gx_widget_attach(parent, target);
304                         gx_window_execute((GX_WINDOW *) target, GX_NULL);
305                     }
306                     break;
307 
308                 case GX_ACTION_TYPE_WINDOW_EXECUTE_STOP:
309                     return event_ptr->gx_event_sender;
310 
311                 case GX_ACTION_TYPE_SCREEN_STACK_PUSH:
312                     target = gx_studio_action_target_get(widget, action);
313                     if(target)
314                     {
315                         gx_system_screen_stack_push(target);
316                     }
317                     break;
318 
319                 case GX_ACTION_TYPE_SCREEN_STACK_POP:
320                     gx_system_screen_stack_pop();
321                     break;
322 
323                 case GX_ACTION_TYPE_SCREEN_STACK_RESET:
324                     gx_system_screen_stack_reset();
325                     break;
326 
327                 default:
328                     break;
329                 }
330                 action++;
331             }
332         }
333         entry++;
334     }
335 
336     if (widget && record->chain_event_handler)
337     {
338         status = record->chain_event_handler(widget, event_ptr);
339     }
340     return status;
341 }
342 
343 
gx_studio_text_button_create(GX_CONST GX_STUDIO_WIDGET * info,GX_WIDGET * control_block,GX_WIDGET * parent)344 UINT gx_studio_text_button_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent)
345 {
346     UINT status;
347     GX_TEXT_BUTTON *button = (GX_TEXT_BUTTON *) control_block;
348     GX_TEXT_BUTTON_PROPERTIES *props = (GX_TEXT_BUTTON_PROPERTIES *) info->properties;
349     status = gx_text_button_create(button, info->widget_name, parent, props->string_id, info->style, info->widget_id, &info->size);
350     if (status == GX_SUCCESS)
351     {
352         gx_text_button_font_set(button, props->font_id);
353 #if defined(GUIX_5_4_0_COMPATIBILITY)
354         gx_text_button_text_color_set(button, props->normal_text_color_id, props->selected_text_color_id);
355 #else
356         gx_text_button_text_color_set(button, props->normal_text_color_id, props->selected_text_color_id, props->disabled_text_color_id);
357 #endif
358     }
359     return status;
360 }
361 
gx_studio_pixelmap_button_create(GX_CONST GX_STUDIO_WIDGET * info,GX_WIDGET * control_block,GX_WIDGET * parent)362 UINT gx_studio_pixelmap_button_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent)
363 {
364     UINT status;
365     GX_PIXELMAP_BUTTON *button = (GX_PIXELMAP_BUTTON *) control_block;
366     GX_PIXELMAP_BUTTON_PROPERTIES *props = (GX_PIXELMAP_BUTTON_PROPERTIES *) info->properties;
367     status = gx_pixelmap_button_create(button, info->widget_name, parent,
368                props->normal_pixelmap_id,
369                props->selected_pixelmap_id,
370                props->disabled_pixelmap_id,
371                info->style, info->widget_id, &info->size);
372     return status;
373 }
374 
gx_studio_icon_create(GX_CONST GX_STUDIO_WIDGET * info,GX_WIDGET * control_block,GX_WIDGET * parent)375 UINT gx_studio_icon_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent)
376 {
377     UINT status;
378     GX_ICON *icon = (GX_ICON *) control_block;
379     GX_ICON_PROPERTIES *props = (GX_ICON_PROPERTIES *) info->properties;
380     status = gx_icon_create(icon, info->widget_name, parent, props->normal_pixelmap_id, info->style, info->widget_id, info->size.gx_rectangle_left, info->size.gx_rectangle_top);
381     if (props->selected_pixelmap_id)
382     {
383         gx_icon_pixelmap_set(icon, props->normal_pixelmap_id, props->selected_pixelmap_id);
384     }
385     else
386     {
387         gx_widget_resize((GX_WIDGET *)icon, (GX_RECTANGLE *)&info->size);
388     }
389     return status;
390 }
391 
gx_studio_pixelmap_slider_create(GX_CONST GX_STUDIO_WIDGET * info,GX_WIDGET * control_block,GX_WIDGET * parent)392 UINT gx_studio_pixelmap_slider_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent)
393 {
394     UINT status;
395     GX_PIXELMAP_SLIDER *slider = (GX_PIXELMAP_SLIDER *) control_block;
396     GX_PIXELMAP_SLIDER_PROPERTIES *props = (GX_PIXELMAP_SLIDER_PROPERTIES *) info->properties;
397     GX_PIXELMAP_SLIDER_INFO pixelmap_info;
398     GX_SLIDER_INFO slider_info;
399     slider_info.gx_slider_info_min_val = props->min_val;
400     slider_info.gx_slider_info_max_val = props->max_val;
401     slider_info.gx_slider_info_current_val = props->current_val;
402     slider_info.gx_slider_info_increment = props->increment;
403     slider_info.gx_slider_info_min_travel = props->min_travel;
404     slider_info.gx_slider_info_max_travel = props->max_travel;
405     slider_info.gx_slider_info_needle_width = props->needle_width;
406     slider_info.gx_slider_info_needle_height = props->needle_height;
407     slider_info.gx_slider_info_needle_inset = props->needle_inset;
408     slider_info.gx_slider_info_needle_hotspot_offset = props->needle_hotspot;
409     pixelmap_info.gx_pixelmap_slider_info_lower_background_pixelmap = props->lower_pixelmap;
410     pixelmap_info.gx_pixelmap_slider_info_upper_background_pixelmap = props->upper_pixelmap;
411     pixelmap_info.gx_pixelmap_slider_info_needle_pixelmap = props->needle_pixelmap;
412     status = gx_pixelmap_slider_create(slider,
413                     info->widget_name,
414                     parent,
415                     &slider_info,
416                     &pixelmap_info,
417                     info->style,
418                     info->widget_id,
419                     &info->size);
420     return status;
421 }
422 
gx_studio_prompt_create(GX_CONST GX_STUDIO_WIDGET * info,GX_WIDGET * control_block,GX_WIDGET * parent)423 UINT gx_studio_prompt_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent)
424 {
425     UINT status;
426     GX_PROMPT *prompt = (GX_PROMPT *) control_block;
427     GX_PROMPT_PROPERTIES *props = (GX_PROMPT_PROPERTIES *) info->properties;
428     status = gx_prompt_create(prompt, info->widget_name, parent, props->string_id, info->style, info->widget_id, &info->size);
429     if (status == GX_SUCCESS)
430     {
431         gx_prompt_font_set(prompt, props->font_id);
432 #if defined(GUIX_5_4_0_COMPATIBILITY)
433         gx_prompt_text_color_set(prompt, props->normal_text_color_id, props->selected_text_color_id);
434 #else
435         gx_prompt_text_color_set(prompt, props->normal_text_color_id, props->selected_text_color_id, props->disabled_text_color_id);
436 #endif
437     }
438     return status;
439 }
440 
gx_studio_numeric_prompt_create(GX_CONST GX_STUDIO_WIDGET * info,GX_WIDGET * control_block,GX_WIDGET * parent)441 UINT gx_studio_numeric_prompt_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent)
442 {
443     UINT status;
444     GX_NUMERIC_PROMPT *prompt = (GX_NUMERIC_PROMPT *) control_block;
445     GX_NUMERIC_PROMPT_PROPERTIES *props = (GX_NUMERIC_PROMPT_PROPERTIES *) info->properties;
446     status = gx_numeric_prompt_create(prompt, info->widget_name, parent, props->string_id, info->style, info->widget_id, &info->size);
447     if (status == GX_SUCCESS)
448     {
449         gx_prompt_font_set((GX_PROMPT *)prompt, props->font_id);
450 #if defined(GUIX_5_4_0_COMPATIBILITY)
451         gx_prompt_text_color_set((GX_PROMPT *)prompt, props->normal_text_color_id, props->selected_text_color_id);
452 #else
453         gx_prompt_text_color_set((GX_PROMPT *)prompt, props->normal_text_color_id, props->selected_text_color_id, props->disabled_text_color_id);
454 #endif
455         if(!props->string_id)
456         {
457             gx_numeric_prompt_value_set(prompt, props->numeric_prompt_value);
458         }
459         if(props->format_func)
460         {
461             gx_numeric_prompt_format_function_set(prompt, props->format_func);
462         }
463     }
464     return status;
465 }
466 
gx_studio_pixelmap_prompt_create(GX_CONST GX_STUDIO_WIDGET * info,GX_WIDGET * control_block,GX_WIDGET * parent)467 UINT gx_studio_pixelmap_prompt_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent)
468 {
469     UINT status;
470     GX_PIXELMAP_PROMPT *pix_prompt = (GX_PIXELMAP_PROMPT *) control_block;
471     GX_PROMPT *prompt = (GX_PROMPT *) pix_prompt;
472     GX_PIXELMAP_PROMPT_PROPERTIES *props = (GX_PIXELMAP_PROMPT_PROPERTIES *) info->properties;
473     status = gx_pixelmap_prompt_create(pix_prompt, info->widget_name, parent,
474                props->string_id,
475                props->fill_map_id,
476                info->style, info->widget_id, &info->size);
477 
478     if (status == GX_SUCCESS)
479     {
480         gx_pixelmap_prompt_pixelmap_set(pix_prompt,
481                                         props->left_map_id,
482                                         props->fill_map_id,
483                                         props->right_map_id,
484                                         props->selected_left_map_id,
485                                         props->selected_fill_map_id,
486                                         props->selected_right_map_id);
487         gx_prompt_font_set(prompt, props->font_id);
488 #if defined(GUIX_5_4_0_COMPATIBILITY)
489         gx_prompt_text_color_set(prompt, props->normal_text_color_id, props->selected_text_color_id);
490 #else
491         gx_prompt_text_color_set(prompt, props->normal_text_color_id, props->selected_text_color_id, props->disabled_text_color_id);
492 #endif
493     }
494     return status;
495 }
496 
gx_studio_window_create(GX_CONST GX_STUDIO_WIDGET * info,GX_WIDGET * control_block,GX_WIDGET * parent)497 UINT gx_studio_window_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent)
498 {
499     UINT status;
500     GX_WINDOW *window = (GX_WINDOW *) control_block;
501     GX_WINDOW_PROPERTIES *props = (GX_WINDOW_PROPERTIES *) info->properties;
502     status = gx_window_create(window, info->widget_name, parent, info->style, info->widget_id, &info->size);
503     if (status == GX_SUCCESS)
504     {
505         if (props->wallpaper_id)
506         {
507             gx_window_wallpaper_set(window, props->wallpaper_id, info->style & GX_STYLE_TILE_WALLPAPER);
508         }
509     }
510     return status;
511 }
512 
gx_studio_vertical_list_create(GX_CONST GX_STUDIO_WIDGET * info,GX_WIDGET * control_block,GX_WIDGET * parent)513 UINT gx_studio_vertical_list_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent)
514 {
515     UINT status;
516     GX_VERTICAL_LIST *list = (GX_VERTICAL_LIST *) control_block;
517     GX_VERTICAL_LIST_PROPERTIES *props = (GX_VERTICAL_LIST_PROPERTIES *) info->properties;
518     status = gx_vertical_list_create(list, info->widget_name, parent, props->total_rows,
519                                      props->callback, info->style, info->widget_id, &info->size);
520     if (status == GX_SUCCESS)
521     {
522         if (props->wallpaper_id)
523         {
524             gx_window_wallpaper_set((GX_WINDOW *) list, props->wallpaper_id, info->style & GX_STYLE_TILE_WALLPAPER);
525         }
526     }
527     return status;
528 }
529 
gx_studio_vertical_scrollbar_create(GX_CONST GX_STUDIO_WIDGET * info,GX_WIDGET * control_block,GX_WIDGET * parent)530 UINT gx_studio_vertical_scrollbar_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent)
531 {
532     UINT status;
533     GX_SCROLLBAR *scroll = (GX_SCROLLBAR *) control_block;
534     GX_SCROLLBAR_APPEARANCE *appearance = (GX_SCROLLBAR_APPEARANCE *) info->properties;
535     status = gx_vertical_scrollbar_create(scroll, info->widget_name, parent, appearance, info->style);
536     return status;
537 }
538 
gx_studio_template_create(GX_CONST GX_STUDIO_WIDGET * info,GX_WIDGET * control_block,GX_WIDGET * parent)539 UINT gx_studio_template_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent)
540 {
541     UINT status = GX_SUCCESS;
542     GX_STUDIO_WIDGET derived;
543     GX_TEMPLATE_PROPERTIES *props = (GX_TEMPLATE_PROPERTIES *) info->properties;
544 
545                                              /* create base widget and children */
546     derived =            *props->base_info;
547     derived.widget_id =   info->widget_id;
548     derived.widget_name = info->widget_name;
549 
550     if (info->style & GX_STYLE_ENABLED)
551     {
552         derived.style |= GX_STYLE_ENABLED;
553     }
554     else
555     {
556         derived.style &= ~GX_STYLE_ENABLED;
557     }
558     if (info->status & GX_STATUS_ACCEPTS_FOCUS)
559     {
560         derived.status |= GX_STATUS_ACCEPTS_FOCUS;
561     }
562     else
563     {
564         derived.status &= ~GX_STATUS_ACCEPTS_FOCUS;
565     }
566 
567     #if defined(GX_WIDGET_USER_DATA)
568     derived.user_data =   info->user_data;
569     #endif
570 
571     control_block = gx_studio_widget_create((GX_BYTE *) control_block, &derived, parent);
572     if (control_block)
573     {
574         if (info->style & GX_STYLE_DYNAMICALLY_ALLOCATED)
575         {
576             control_block->gx_widget_status |= GX_STATUS_DYNAMICALLY_ALLOCATED;
577         }
578         if (derived.size.gx_rectangle_left != info->size.gx_rectangle_left ||
579             derived.size.gx_rectangle_top != info->size.gx_rectangle_top)
580         {
581             gx_widget_shift(control_block,
582                 info->size.gx_rectangle_left - derived.size.gx_rectangle_left,
583                 info->size.gx_rectangle_top - derived.size.gx_rectangle_top, GX_FALSE);
584         }
585     }
586     else
587     {
588         status = GX_FAILURE;
589     }
590     return status;
591 }
592 GX_WINDOW_PROPERTIES template_properties =
593 {
594     0                                        /* wallpaper pixelmap id          */
595 };
596 GX_ICON_PROPERTIES template_logo_properties =
597 {
598     GX_PIXELMAP_ID_MICROSOFT_AZURE_LOGO,     /* normal pixelmap id             */
599     0                                        /* selected pixelmap id           */
600 };
601 GX_TEXT_BUTTON_PROPERTIES template_vitals_button_properties =
602 {
603     GX_STRING_ID_STRING_2,                   /* string id                      */
604     GX_FONT_ID_SYSTEM,                       /* font id                        */
605     GX_COLOR_ID_LIGHT_GRAY,                  /* normal text color              */
606     GX_COLOR_ID_YELLOW,                      /* selected text color            */
607     GX_COLOR_ID_DISABLED_TEXT                /* disabled text color            */
608 };
609 GX_TEXT_BUTTON_PROPERTIES template_schedule_button_properties =
610 {
611     GX_STRING_ID_STRING_4,                   /* string id                      */
612     GX_FONT_ID_SYSTEM,                       /* font id                        */
613     GX_COLOR_ID_LIGHT_GRAY,                  /* normal text color              */
614     GX_COLOR_ID_YELLOW,                      /* selected text color            */
615     GX_COLOR_ID_DISABLED_TEXT                /* disabled text color            */
616 };
617 GX_TEXT_BUTTON_PROPERTIES template_patients_button_properties =
618 {
619     GX_STRING_ID_STRING_5,                   /* string id                      */
620     GX_FONT_ID_SYSTEM,                       /* font id                        */
621     GX_COLOR_ID_LIGHT_GRAY,                  /* normal text color              */
622     GX_COLOR_ID_YELLOW,                      /* selected text color            */
623     GX_COLOR_ID_DISABLED_TEXT                /* disabled text color            */
624 };
625 
626 GX_CONST GX_STUDIO_WIDGET template_patients_button_define =
627 {
628     "patients_button",
629     GX_TYPE_TEXT_BUTTON,                     /* widget type                    */
630     ID_BTN_PATIENTS,                         /* widget id                      */
631     #if defined(GX_WIDGET_USER_DATA)
632     0,                                       /* user data                      */
633     #endif
634     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED|GX_STYLE_BUTTON_RADIO|GX_STYLE_TEXT_CENTER,   /* style flags */
635     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
636     sizeof(GX_TEXT_BUTTON),                  /* control block size             */
637     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
638     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
639     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
640     gx_studio_text_button_create,            /* create function                */
641     GX_NULL,                                 /* drawing function override      */
642     GX_NULL,                                 /* event function override        */
643     {559, 42, 620, 59},                      /* widget size                    */
644     GX_NULL,                                 /* no next widget                 */
645     GX_NULL,                                 /* no child widgets               */
646     offsetof(TEMPLATE_CONTROL_BLOCK, template_patients_button), /* control block */
647     (void *) &template_patients_button_properties /* extended properties       */
648 };
649 
650 GX_CONST GX_STUDIO_WIDGET template_schedule_button_define =
651 {
652     "schedule_button",
653     GX_TYPE_TEXT_BUTTON,                     /* widget type                    */
654     ID_BTN_SCHEDULE,                         /* widget id                      */
655     #if defined(GX_WIDGET_USER_DATA)
656     0,                                       /* user data                      */
657     #endif
658     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED|GX_STYLE_BUTTON_RADIO|GX_STYLE_TEXT_CENTER,   /* style flags */
659     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
660     sizeof(GX_TEXT_BUTTON),                  /* control block size             */
661     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
662     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
663     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
664     gx_studio_text_button_create,            /* create function                */
665     GX_NULL,                                 /* drawing function override      */
666     GX_NULL,                                 /* event function override        */
667     {455, 42, 525, 59},                      /* widget size                    */
668     &template_patients_button_define,        /* next widget definition         */
669     GX_NULL,                                 /* no child widgets               */
670     offsetof(TEMPLATE_CONTROL_BLOCK, template_schedule_button), /* control block */
671     (void *) &template_schedule_button_properties /* extended properties       */
672 };
673 
674 GX_CONST GX_STUDIO_WIDGET template_vitals_button_define =
675 {
676     "vitals_button",
677     GX_TYPE_TEXT_BUTTON,                     /* widget type                    */
678     ID_BTN_VITALS,                           /* widget id                      */
679     #if defined(GX_WIDGET_USER_DATA)
680     0,                                       /* user data                      */
681     #endif
682     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED|GX_STYLE_BUTTON_PUSHED|GX_STYLE_BUTTON_RADIO|GX_STYLE_TEXT_CENTER,   /* style flags */
683     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
684     sizeof(GX_TEXT_BUTTON),                  /* control block size             */
685     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
686     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
687     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
688     gx_studio_text_button_create,            /* create function                */
689     GX_NULL,                                 /* drawing function override      */
690     GX_NULL,                                 /* event function override        */
691     {381, 42, 421, 59},                      /* widget size                    */
692     &template_schedule_button_define,        /* next widget definition         */
693     GX_NULL,                                 /* no child widgets               */
694     offsetof(TEMPLATE_CONTROL_BLOCK, template_vitals_button), /* control block */
695     (void *) &template_vitals_button_properties /* extended properties         */
696 };
697 
698 GX_CONST GX_STUDIO_WIDGET template_logo_define =
699 {
700     "logo",
701     GX_TYPE_ICON,                            /* widget type                    */
702     GX_ID_NONE,                              /* widget id                      */
703     #if defined(GX_WIDGET_USER_DATA)
704     0,                                       /* user data                      */
705     #endif
706     GX_STYLE_BORDER_NONE|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP,   /* style flags */
707     0,                                       /* status flags                   */
708     sizeof(GX_ICON),                         /* control block size             */
709     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
710     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
711     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
712     gx_studio_icon_create,                   /* create function                */
713     GX_NULL,                                 /* drawing function override      */
714     GX_NULL,                                 /* event function override        */
715     {20, 20, 122, 59},                       /* widget size                    */
716     &template_vitals_button_define,          /* next widget definition         */
717     GX_NULL,                                 /* no child widgets               */
718     offsetof(TEMPLATE_CONTROL_BLOCK, template_logo), /* control block          */
719     (void *) &template_logo_properties       /* extended properties            */
720 };
721 
722 GX_CONST GX_STUDIO_WIDGET template_define =
723 {
724     "template",
725     GX_TYPE_WINDOW,                          /* widget type                    */
726     GX_ID_NONE,                              /* widget id                      */
727     #if defined(GX_WIDGET_USER_DATA)
728     0,                                       /* user data                      */
729     #endif
730     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
731     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
732     sizeof(TEMPLATE_CONTROL_BLOCK),          /* control block size             */
733     GX_COLOR_ID_CANVAS,                      /* normal color id                */
734     GX_COLOR_ID_CANVAS,                      /* selected color id              */
735     GX_COLOR_ID_CANVAS,                      /* disabled color id              */
736     gx_studio_window_create,                 /* create function                */
737     GX_NULL,                                 /* drawing function override      */
738     (UINT (*)(GX_WIDGET *, GX_EVENT *)) template_event_handler, /* event function override */
739     {0, 0, 639, 479},                        /* widget size                    */
740     GX_NULL,                                 /* next widget                    */
741     &template_logo_define,                   /* child widget                   */
742     0,                                       /* control block                  */
743     (void *) &template_properties            /* extended properties            */
744 };
745 GX_TEMPLATE_PROPERTIES schedule_screen_properties =
746 {
747     &template_define,                        /* base info                      */
748     gx_studio_window_create,                 /* base create function           */
749     {0, 0, 639, 479}                         /* widget size                    */
750 };
751 GX_PROMPT_PROPERTIES schedule_screen_month_properties =
752 {
753     GX_STRING_ID_APRIL,                      /* string id                      */
754     GX_FONT_ID_PROMPT,                       /* font id                        */
755     GX_COLOR_ID_GRAY,                        /* normal text color              */
756     GX_COLOR_ID_GRAY,                        /* selected text color            */
757     GX_COLOR_ID_GRAY                         /* disabled text color            */
758 };
759 GX_WINDOW_PROPERTIES schedule_screen_schedule_win_properties =
760 {
761     0                                        /* wallpaper pixelmap id          */
762 };
763 GX_PROMPT_PROPERTIES schedule_screen_c1_week_properties =
764 {
765     GX_STRING_ID_WEDNESDAY,                  /* string id                      */
766     GX_FONT_ID_PROMPT,                       /* font id                        */
767     GX_COLOR_ID_GRAY,                        /* normal text color              */
768     GX_COLOR_ID_GRAY,                        /* selected text color            */
769     GX_COLOR_ID_GRAY                         /* disabled text color            */
770 };
771 GX_PROMPT_PROPERTIES schedule_screen_c3_week_properties =
772 {
773     GX_STRING_ID_FRIDAY,                     /* string id                      */
774     GX_FONT_ID_PROMPT,                       /* font id                        */
775     GX_COLOR_ID_GRAY,                        /* normal text color              */
776     GX_COLOR_ID_GRAY,                        /* selected text color            */
777     GX_COLOR_ID_GRAY                         /* disabled text color            */
778 };
779 GX_PROMPT_PROPERTIES schedule_screen_c2_week_properties =
780 {
781     GX_STRING_ID_THURSDAY,                   /* string id                      */
782     GX_FONT_ID_PROMPT,                       /* font id                        */
783     GX_COLOR_ID_GRAY,                        /* normal text color              */
784     GX_COLOR_ID_GRAY,                        /* selected text color            */
785     GX_COLOR_ID_YELLOW                       /* disabled text color            */
786 };
787 GX_PROMPT_PROPERTIES schedule_screen_c4_week_properties =
788 {
789     GX_STRING_ID_SATURDAY,                   /* string id                      */
790     GX_FONT_ID_PROMPT,                       /* font id                        */
791     GX_COLOR_ID_GRAY,                        /* normal text color              */
792     GX_COLOR_ID_GRAY,                        /* selected text color            */
793     GX_COLOR_ID_GRAY                         /* disabled text color            */
794 };
795 GX_PROMPT_PROPERTIES schedule_screen_c5_week_properties =
796 {
797     GX_STRING_ID_SUNDAY,                     /* string id                      */
798     GX_FONT_ID_PROMPT,                       /* font id                        */
799     GX_COLOR_ID_GRAY,                        /* normal text color              */
800     GX_COLOR_ID_GRAY,                        /* selected text color            */
801     GX_COLOR_ID_GRAY                         /* disabled text color            */
802 };
803 GX_PROMPT_PROPERTIES schedule_screen_c6_week_properties =
804 {
805     GX_STRING_ID_MONDAY,                     /* string id                      */
806     GX_FONT_ID_PROMPT,                       /* font id                        */
807     GX_COLOR_ID_GRAY,                        /* normal text color              */
808     GX_COLOR_ID_GRAY,                        /* selected text color            */
809     GX_COLOR_ID_GRAY                         /* disabled text color            */
810 };
811 GX_PROMPT_PROPERTIES schedule_screen_c7_week_properties =
812 {
813     GX_STRING_ID_TUESDAY,                    /* string id                      */
814     GX_FONT_ID_PROMPT,                       /* font id                        */
815     GX_COLOR_ID_GRAY,                        /* normal text color              */
816     GX_COLOR_ID_GRAY,                        /* selected text color            */
817     GX_COLOR_ID_GRAY                         /* disabled text color            */
818 };
819 GX_NUMERIC_PROMPT_PROPERTIES schedule_screen_c1_day_properties =
820 {
821     0,                                       /* string id                      */
822     GX_FONT_ID_PROMPT,                       /* font id                        */
823     GX_COLOR_ID_GRAY,                        /* normal text color              */
824     GX_COLOR_ID_GRAY,                        /* selected text color            */
825     GX_COLOR_ID_GRAY,                        /* disabled text color            */
826     GX_NULL,                                 /* format function                */
827     21                                       /* numeric prompt value           */
828 };
829 GX_NUMERIC_PROMPT_PROPERTIES schedule_screen_c2_day_properties =
830 {
831     0,                                       /* string id                      */
832     GX_FONT_ID_PROMPT,                       /* font id                        */
833     GX_COLOR_ID_GRAY,                        /* normal text color              */
834     GX_COLOR_ID_GRAY,                        /* selected text color            */
835     GX_COLOR_ID_YELLOW,                      /* disabled text color            */
836     GX_NULL,                                 /* format function                */
837     22                                       /* numeric prompt value           */
838 };
839 GX_NUMERIC_PROMPT_PROPERTIES schedule_screen_c3_day_properties =
840 {
841     0,                                       /* string id                      */
842     GX_FONT_ID_PROMPT,                       /* font id                        */
843     GX_COLOR_ID_GRAY,                        /* normal text color              */
844     GX_COLOR_ID_GRAY,                        /* selected text color            */
845     GX_COLOR_ID_GRAY,                        /* disabled text color            */
846     GX_NULL,                                 /* format function                */
847     23                                       /* numeric prompt value           */
848 };
849 GX_NUMERIC_PROMPT_PROPERTIES schedule_screen_c4_day_properties =
850 {
851     0,                                       /* string id                      */
852     GX_FONT_ID_PROMPT,                       /* font id                        */
853     GX_COLOR_ID_GRAY,                        /* normal text color              */
854     GX_COLOR_ID_GRAY,                        /* selected text color            */
855     GX_COLOR_ID_GRAY,                        /* disabled text color            */
856     GX_NULL,                                 /* format function                */
857     24                                       /* numeric prompt value           */
858 };
859 GX_NUMERIC_PROMPT_PROPERTIES schedule_screen_c5_day_properties =
860 {
861     0,                                       /* string id                      */
862     GX_FONT_ID_PROMPT,                       /* font id                        */
863     GX_COLOR_ID_GRAY,                        /* normal text color              */
864     GX_COLOR_ID_GRAY,                        /* selected text color            */
865     GX_COLOR_ID_GRAY,                        /* disabled text color            */
866     GX_NULL,                                 /* format function                */
867     25                                       /* numeric prompt value           */
868 };
869 GX_NUMERIC_PROMPT_PROPERTIES schedule_screen_c6_day_properties =
870 {
871     0,                                       /* string id                      */
872     GX_FONT_ID_PROMPT,                       /* font id                        */
873     GX_COLOR_ID_GRAY,                        /* normal text color              */
874     GX_COLOR_ID_GRAY,                        /* selected text color            */
875     GX_COLOR_ID_GRAY,                        /* disabled text color            */
876     GX_NULL,                                 /* format function                */
877     26                                       /* numeric prompt value           */
878 };
879 GX_NUMERIC_PROMPT_PROPERTIES schedule_screen_c7_day_properties =
880 {
881     0,                                       /* string id                      */
882     GX_FONT_ID_PROMPT,                       /* font id                        */
883     GX_COLOR_ID_GRAY,                        /* normal text color              */
884     GX_COLOR_ID_GRAY,                        /* selected text color            */
885     GX_COLOR_ID_GRAY,                        /* disabled text color            */
886     GX_NULL,                                 /* format function                */
887     27                                       /* numeric prompt value           */
888 };
889 GX_PROMPT_PROPERTIES schedule_screen_r1_am_pm_properties =
890 {
891     GX_STRING_ID_STRING_25,                  /* string id                      */
892     GX_FONT_ID_PROMPT,                       /* font id                        */
893     GX_COLOR_ID_GRAY,                        /* normal text color              */
894     GX_COLOR_ID_GRAY,                        /* selected text color            */
895     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
896 };
897 GX_NUMERIC_PROMPT_PROPERTIES schedule_screen_r1_hour_properties =
898 {
899     0,                                       /* string id                      */
900     GX_FONT_ID_PROMPT,                       /* font id                        */
901     GX_COLOR_ID_WHITE,                       /* normal text color              */
902     GX_COLOR_ID_WHITE,                       /* selected text color            */
903     GX_COLOR_ID_WHITE,                       /* disabled text color            */
904     GX_NULL,                                 /* format function                */
905     7                                        /* numeric prompt value           */
906 };
907 GX_NUMERIC_PROMPT_PROPERTIES schedule_screen_r2_hour_properties =
908 {
909     0,                                       /* string id                      */
910     GX_FONT_ID_PROMPT,                       /* font id                        */
911     GX_COLOR_ID_WHITE,                       /* normal text color              */
912     GX_COLOR_ID_WHITE,                       /* selected text color            */
913     GX_COLOR_ID_WHITE,                       /* disabled text color            */
914     GX_NULL,                                 /* format function                */
915     8                                        /* numeric prompt value           */
916 };
917 GX_PROMPT_PROPERTIES schedule_screen_r2_am_pm_properties =
918 {
919     GX_STRING_ID_STRING_25,                  /* string id                      */
920     GX_FONT_ID_PROMPT,                       /* font id                        */
921     GX_COLOR_ID_GRAY,                        /* normal text color              */
922     GX_COLOR_ID_GRAY,                        /* selected text color            */
923     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
924 };
925 GX_NUMERIC_PROMPT_PROPERTIES schedule_screen_r3_hour_properties =
926 {
927     0,                                       /* string id                      */
928     GX_FONT_ID_PROMPT,                       /* font id                        */
929     GX_COLOR_ID_WHITE,                       /* normal text color              */
930     GX_COLOR_ID_WHITE,                       /* selected text color            */
931     GX_COLOR_ID_WHITE,                       /* disabled text color            */
932     GX_NULL,                                 /* format function                */
933     9                                        /* numeric prompt value           */
934 };
935 GX_PROMPT_PROPERTIES schedule_screen_r3_am_pm_properties =
936 {
937     GX_STRING_ID_STRING_25,                  /* string id                      */
938     GX_FONT_ID_PROMPT,                       /* font id                        */
939     GX_COLOR_ID_GRAY,                        /* normal text color              */
940     GX_COLOR_ID_GRAY,                        /* selected text color            */
941     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
942 };
943 GX_NUMERIC_PROMPT_PROPERTIES schedule_screen_r4_hour_properties =
944 {
945     0,                                       /* string id                      */
946     GX_FONT_ID_PROMPT,                       /* font id                        */
947     GX_COLOR_ID_WHITE,                       /* normal text color              */
948     GX_COLOR_ID_WHITE,                       /* selected text color            */
949     GX_COLOR_ID_WHITE,                       /* disabled text color            */
950     GX_NULL,                                 /* format function                */
951     10                                       /* numeric prompt value           */
952 };
953 GX_PROMPT_PROPERTIES schedule_screen_r4_am_pm_properties =
954 {
955     GX_STRING_ID_STRING_25,                  /* string id                      */
956     GX_FONT_ID_PROMPT,                       /* font id                        */
957     GX_COLOR_ID_GRAY,                        /* normal text color              */
958     GX_COLOR_ID_GRAY,                        /* selected text color            */
959     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
960 };
961 GX_NUMERIC_PROMPT_PROPERTIES schedule_screen_r5_hour_properties =
962 {
963     0,                                       /* string id                      */
964     GX_FONT_ID_PROMPT,                       /* font id                        */
965     GX_COLOR_ID_WHITE,                       /* normal text color              */
966     GX_COLOR_ID_WHITE,                       /* selected text color            */
967     GX_COLOR_ID_WHITE,                       /* disabled text color            */
968     GX_NULL,                                 /* format function                */
969     11                                       /* numeric prompt value           */
970 };
971 GX_PROMPT_PROPERTIES schedule_screen_r5_am_pm_properties =
972 {
973     GX_STRING_ID_STRING_25,                  /* string id                      */
974     GX_FONT_ID_PROMPT,                       /* font id                        */
975     GX_COLOR_ID_GRAY,                        /* normal text color              */
976     GX_COLOR_ID_GRAY,                        /* selected text color            */
977     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
978 };
979 GX_NUMERIC_PROMPT_PROPERTIES schedule_screen_r6_hour_properties =
980 {
981     0,                                       /* string id                      */
982     GX_FONT_ID_PROMPT,                       /* font id                        */
983     GX_COLOR_ID_WHITE,                       /* normal text color              */
984     GX_COLOR_ID_WHITE,                       /* selected text color            */
985     GX_COLOR_ID_WHITE,                       /* disabled text color            */
986     GX_NULL,                                 /* format function                */
987     12                                       /* numeric prompt value           */
988 };
989 GX_PROMPT_PROPERTIES schedule_screen_r6_am_pm_properties =
990 {
991     GX_STRING_ID_STRING_25,                  /* string id                      */
992     GX_FONT_ID_PROMPT,                       /* font id                        */
993     GX_COLOR_ID_GRAY,                        /* normal text color              */
994     GX_COLOR_ID_GRAY,                        /* selected text color            */
995     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
996 };
997 GX_NUMERIC_PROMPT_PROPERTIES schedule_screen_r7_hour_properties =
998 {
999     0,                                       /* string id                      */
1000     GX_FONT_ID_PROMPT,                       /* font id                        */
1001     GX_COLOR_ID_WHITE,                       /* normal text color              */
1002     GX_COLOR_ID_WHITE,                       /* selected text color            */
1003     GX_COLOR_ID_WHITE,                       /* disabled text color            */
1004     GX_NULL,                                 /* format function                */
1005     1                                        /* numeric prompt value           */
1006 };
1007 GX_PROMPT_PROPERTIES schedule_screen_r7_am_pm_properties =
1008 {
1009     GX_STRING_ID_STRING_48,                  /* string id                      */
1010     GX_FONT_ID_PROMPT,                       /* font id                        */
1011     GX_COLOR_ID_GRAY,                        /* normal text color              */
1012     GX_COLOR_ID_GRAY,                        /* selected text color            */
1013     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
1014 };
1015 GX_NUMERIC_PROMPT_PROPERTIES schedule_screen_r8_hour_properties =
1016 {
1017     0,                                       /* string id                      */
1018     GX_FONT_ID_PROMPT,                       /* font id                        */
1019     GX_COLOR_ID_WHITE,                       /* normal text color              */
1020     GX_COLOR_ID_WHITE,                       /* selected text color            */
1021     GX_COLOR_ID_WHITE,                       /* disabled text color            */
1022     GX_NULL,                                 /* format function                */
1023     2                                        /* numeric prompt value           */
1024 };
1025 GX_PROMPT_PROPERTIES schedule_screen_r8_am_pm_properties =
1026 {
1027     GX_STRING_ID_STRING_48,                  /* string id                      */
1028     GX_FONT_ID_PROMPT,                       /* font id                        */
1029     GX_COLOR_ID_GRAY,                        /* normal text color              */
1030     GX_COLOR_ID_GRAY,                        /* selected text color            */
1031     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
1032 };
1033 GX_NUMERIC_PROMPT_PROPERTIES schedule_screen_r9_hour_properties =
1034 {
1035     0,                                       /* string id                      */
1036     GX_FONT_ID_PROMPT,                       /* font id                        */
1037     GX_COLOR_ID_WHITE,                       /* normal text color              */
1038     GX_COLOR_ID_WHITE,                       /* selected text color            */
1039     GX_COLOR_ID_WHITE,                       /* disabled text color            */
1040     GX_NULL,                                 /* format function                */
1041     3                                        /* numeric prompt value           */
1042 };
1043 GX_PROMPT_PROPERTIES schedule_screen_r9_am_pm_properties =
1044 {
1045     GX_STRING_ID_STRING_48,                  /* string id                      */
1046     GX_FONT_ID_PROMPT,                       /* font id                        */
1047     GX_COLOR_ID_GRAY,                        /* normal text color              */
1048     GX_COLOR_ID_GRAY,                        /* selected text color            */
1049     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
1050 };
1051 GX_NUMERIC_PROMPT_PROPERTIES schedule_screen_r10_hour_properties =
1052 {
1053     0,                                       /* string id                      */
1054     GX_FONT_ID_PROMPT,                       /* font id                        */
1055     GX_COLOR_ID_WHITE,                       /* normal text color              */
1056     GX_COLOR_ID_WHITE,                       /* selected text color            */
1057     GX_COLOR_ID_WHITE,                       /* disabled text color            */
1058     GX_NULL,                                 /* format function                */
1059     4                                        /* numeric prompt value           */
1060 };
1061 GX_PROMPT_PROPERTIES schedule_screen_r10_am_pm_properties =
1062 {
1063     GX_STRING_ID_STRING_48,                  /* string id                      */
1064     GX_FONT_ID_PROMPT,                       /* font id                        */
1065     GX_COLOR_ID_GRAY,                        /* normal text color              */
1066     GX_COLOR_ID_GRAY,                        /* selected text color            */
1067     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
1068 };
1069 GX_NUMERIC_PROMPT_PROPERTIES schedule_screen_r11_hour_properties =
1070 {
1071     0,                                       /* string id                      */
1072     GX_FONT_ID_PROMPT,                       /* font id                        */
1073     GX_COLOR_ID_WHITE,                       /* normal text color              */
1074     GX_COLOR_ID_WHITE,                       /* selected text color            */
1075     GX_COLOR_ID_WHITE,                       /* disabled text color            */
1076     GX_NULL,                                 /* format function                */
1077     5                                        /* numeric prompt value           */
1078 };
1079 GX_PROMPT_PROPERTIES schedule_screen_r11_am_pm_properties =
1080 {
1081     GX_STRING_ID_STRING_48,                  /* string id                      */
1082     GX_FONT_ID_PROMPT,                       /* font id                        */
1083     GX_COLOR_ID_GRAY,                        /* normal text color              */
1084     GX_COLOR_ID_GRAY,                        /* selected text color            */
1085     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
1086 };
1087 GX_ICON_PROPERTIES schedule_screen_current_time_properties =
1088 {
1089     GX_PIXELMAP_ID_SCHEDULE_TIME_BOX,        /* normal pixelmap id             */
1090     0                                        /* selected pixelmap id           */
1091 };
1092 GX_NUMERIC_PROMPT_PROPERTIES schedule_screen_hour_properties =
1093 {
1094     0,                                       /* string id                      */
1095     GX_FONT_ID_PROMPT,                       /* font id                        */
1096     GX_COLOR_ID_GRAY,                        /* normal text color              */
1097     GX_COLOR_ID_GRAY,                        /* selected text color            */
1098     GX_COLOR_ID_WHITE,                       /* disabled text color            */
1099     GX_NULL,                                 /* format function                */
1100     10                                       /* numeric prompt value           */
1101 };
1102 GX_NUMERIC_PROMPT_PROPERTIES schedule_screen_minute_properties =
1103 {
1104     0,                                       /* string id                      */
1105     GX_FONT_ID_PROMPT,                       /* font id                        */
1106     GX_COLOR_ID_GRAY,                        /* normal text color              */
1107     GX_COLOR_ID_GRAY,                        /* selected text color            */
1108     GX_COLOR_ID_WHITE,                       /* disabled text color            */
1109     GX_NULL,                                 /* format function                */
1110     30                                       /* numeric prompt value           */
1111 };
1112 GX_PROMPT_PROPERTIES schedule_screen_colon_properties =
1113 {
1114     GX_STRING_ID_STRING_26,                  /* string id                      */
1115     GX_FONT_ID_PROMPT,                       /* font id                        */
1116     GX_COLOR_ID_GRAY,                        /* normal text color              */
1117     GX_COLOR_ID_GRAY,                        /* selected text color            */
1118     GX_COLOR_ID_GRAY                         /* disabled text color            */
1119 };
1120 GX_WINDOW_PROPERTIES schedule_screen_r1_win_properties =
1121 {
1122     0                                        /* wallpaper pixelmap id          */
1123 };
1124 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_3_properties =
1125 {
1126     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY,       /* normal pixelmap id             */
1127     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY_ON,    /* selected pixelmap id           */
1128     0                                        /* disabled pixelmap id           */
1129 };
1130 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_6_properties =
1131 {
1132     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY,       /* normal pixelmap id             */
1133     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY_ON,    /* selected pixelmap id           */
1134     0                                        /* disabled pixelmap id           */
1135 };
1136 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_7_properties =
1137 {
1138     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY,       /* normal pixelmap id             */
1139     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY_ON,    /* selected pixelmap id           */
1140     0                                        /* disabled pixelmap id           */
1141 };
1142 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_45_1_properties =
1143 {
1144     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1145     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1146     0                                        /* disabled pixelmap id           */
1147 };
1148 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_46_1_properties =
1149 {
1150     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1151     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1152     0                                        /* disabled pixelmap id           */
1153 };
1154 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_47_1_properties =
1155 {
1156     GX_PIXELMAP_ID_SCHEDULE_BALL_RED,        /* normal pixelmap id             */
1157     GX_PIXELMAP_ID_SCHEDULE_BALL_RED_ON,     /* selected pixelmap id           */
1158     0                                        /* disabled pixelmap id           */
1159 };
1160 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_93_1_properties =
1161 {
1162     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1163     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1164     0                                        /* disabled pixelmap id           */
1165 };
1166 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_94_1_properties =
1167 {
1168     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1169     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1170     0                                        /* disabled pixelmap id           */
1171 };
1172 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_95_1_properties =
1173 {
1174     GX_PIXELMAP_ID_SCHEDULE_BALL_RED,        /* normal pixelmap id             */
1175     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY_ON,    /* selected pixelmap id           */
1176     0                                        /* disabled pixelmap id           */
1177 };
1178 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_98_1_properties =
1179 {
1180     GX_PIXELMAP_ID_SCHEDULE_BALL_RED,        /* normal pixelmap id             */
1181     GX_PIXELMAP_ID_SCHEDULE_BALL_RED_ON,     /* selected pixelmap id           */
1182     0                                        /* disabled pixelmap id           */
1183 };
1184 GX_WINDOW_PROPERTIES schedule_screen_r2_win_properties =
1185 {
1186     0                                        /* wallpaper pixelmap id          */
1187 };
1188 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_12_properties =
1189 {
1190     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY,       /* normal pixelmap id             */
1191     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY_ON,    /* selected pixelmap id           */
1192     0                                        /* disabled pixelmap id           */
1193 };
1194 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_15_properties =
1195 {
1196     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY,       /* normal pixelmap id             */
1197     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY_ON,    /* selected pixelmap id           */
1198     0                                        /* disabled pixelmap id           */
1199 };
1200 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_21_1_properties =
1201 {
1202     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY,       /* normal pixelmap id             */
1203     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY_ON,    /* selected pixelmap id           */
1204     0                                        /* disabled pixelmap id           */
1205 };
1206 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_22_1_properties =
1207 {
1208     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY,       /* normal pixelmap id             */
1209     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY_ON,    /* selected pixelmap id           */
1210     0                                        /* disabled pixelmap id           */
1211 };
1212 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_23_1_properties =
1213 {
1214     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY,       /* normal pixelmap id             */
1215     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY_ON,    /* selected pixelmap id           */
1216     0                                        /* disabled pixelmap id           */
1217 };
1218 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_49_1_properties =
1219 {
1220     GX_PIXELMAP_ID_SCHEDULE_BALL_BLUE,       /* normal pixelmap id             */
1221     GX_PIXELMAP_ID_SCHEDULE_BALL_BLUE_ON,    /* selected pixelmap id           */
1222     0                                        /* disabled pixelmap id           */
1223 };
1224 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_50_1_properties =
1225 {
1226     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1227     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1228     0                                        /* disabled pixelmap id           */
1229 };
1230 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_69_1_properties =
1231 {
1232     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1233     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1234     0                                        /* disabled pixelmap id           */
1235 };
1236 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_70_1_properties =
1237 {
1238     GX_PIXELMAP_ID_SCHEDULE_BALL_BLUE,       /* normal pixelmap id             */
1239     GX_PIXELMAP_ID_SCHEDULE_BALL_BLUE_ON,    /* selected pixelmap id           */
1240     0                                        /* disabled pixelmap id           */
1241 };
1242 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_71_1_properties =
1243 {
1244     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1245     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1246     0                                        /* disabled pixelmap id           */
1247 };
1248 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_100_1_properties =
1249 {
1250     GX_PIXELMAP_ID_SCHEDULE_BALL_BLUE,       /* normal pixelmap id             */
1251     GX_PIXELMAP_ID_SCHEDULE_BALL_BLUE_ON,    /* selected pixelmap id           */
1252     0                                        /* disabled pixelmap id           */
1253 };
1254 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_101_1_properties =
1255 {
1256     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1257     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1258     0                                        /* disabled pixelmap id           */
1259 };
1260 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_102_1_properties =
1261 {
1262     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1263     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1264     0                                        /* disabled pixelmap id           */
1265 };
1266 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_103_1_properties =
1267 {
1268     GX_PIXELMAP_ID_SCHEDULE_BALL_BLUE,       /* normal pixelmap id             */
1269     GX_PIXELMAP_ID_SCHEDULE_BALL_BLUE_ON,    /* selected pixelmap id           */
1270     0                                        /* disabled pixelmap id           */
1271 };
1272 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_104_1_properties =
1273 {
1274     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1275     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1276     0                                        /* disabled pixelmap id           */
1277 };
1278 GX_WINDOW_PROPERTIES schedule_screen_r3_win_properties =
1279 {
1280     0                                        /* wallpaper pixelmap id          */
1281 };
1282 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_16_properties =
1283 {
1284     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY,       /* normal pixelmap id             */
1285     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY_ON,    /* selected pixelmap id           */
1286     0                                        /* disabled pixelmap id           */
1287 };
1288 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_25_1_properties =
1289 {
1290     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY,       /* normal pixelmap id             */
1291     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY_ON,    /* selected pixelmap id           */
1292     0                                        /* disabled pixelmap id           */
1293 };
1294 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_26_1_properties =
1295 {
1296     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY,       /* normal pixelmap id             */
1297     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY_ON,    /* selected pixelmap id           */
1298     0                                        /* disabled pixelmap id           */
1299 };
1300 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_53_1_properties =
1301 {
1302     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1303     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1304     0                                        /* disabled pixelmap id           */
1305 };
1306 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_73_1_properties =
1307 {
1308     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1309     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1310     0                                        /* disabled pixelmap id           */
1311 };
1312 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_74_1_properties =
1313 {
1314     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1315     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1316     0                                        /* disabled pixelmap id           */
1317 };
1318 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_107_1_properties =
1319 {
1320     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1321     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1322     0                                        /* disabled pixelmap id           */
1323 };
1324 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_109_1_properties =
1325 {
1326     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1327     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1328     0                                        /* disabled pixelmap id           */
1329 };
1330 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_110_1_properties =
1331 {
1332     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1333     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1334     0                                        /* disabled pixelmap id           */
1335 };
1336 GX_WINDOW_PROPERTIES schedule_screen_r4_win_properties =
1337 {
1338     0                                        /* wallpaper pixelmap id          */
1339 };
1340 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_29_1_properties =
1341 {
1342     GX_PIXELMAP_ID_SCHEDULE_BALL_BLUE,       /* normal pixelmap id             */
1343     GX_PIXELMAP_ID_SCHEDULE_BALL_BLUE_ON,    /* selected pixelmap id           */
1344     0                                        /* disabled pixelmap id           */
1345 };
1346 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_56_1_properties =
1347 {
1348     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1349     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1350     0                                        /* disabled pixelmap id           */
1351 };
1352 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_77_1_properties =
1353 {
1354     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1355     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1356     0                                        /* disabled pixelmap id           */
1357 };
1358 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_113_1_properties =
1359 {
1360     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1361     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1362     0                                        /* disabled pixelmap id           */
1363 };
1364 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_116_1_properties =
1365 {
1366     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1367     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1368     0                                        /* disabled pixelmap id           */
1369 };
1370 GX_WINDOW_PROPERTIES schedule_screen_r5_win_properties =
1371 {
1372     0                                        /* wallpaper pixelmap id          */
1373 };
1374 GX_ICON_PROPERTIES schedule_screen_active_circle_properties =
1375 {
1376     GX_PIXELMAP_ID_SCHEDULE_CIRCLE_ACTIVE_LINE_WHITE, /* normal pixelmap id    */
1377     0                                        /* selected pixelmap id           */
1378 };
1379 GX_PIXELMAP_PROMPT_PROPERTIES schedule_screen_active_bar_properties =
1380 {
1381     0,                                       /* string id                      */
1382     GX_FONT_ID_PROMPT,                       /* font id                        */
1383     GX_COLOR_ID_TEXT,                        /* normal text color              */
1384     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
1385     GX_COLOR_ID_WHITE,                       /* disabled text color            */
1386     GX_PIXELMAP_ID_SCHEDULE_ACTIVE_BAR_LEFT_RED, /* left pixelmap id           */
1387     GX_PIXELMAP_ID_SCHEDULE_ACTIVE_BAR_CENTER_RED, /* fill pixelmap id         */
1388     GX_PIXELMAP_ID_SCHEDULE_ACTIVE_BAR_RIGHT_RED, /* right pixelmap id         */
1389     0,                                       /* selected left pixelmap id      */
1390     0,                                       /* selected fill pixelmap id      */
1391     0                                        /* selected right pixelmap id     */
1392 };
1393 GX_PROMPT_PROPERTIES schedule_screen_patient_info_properties =
1394 {
1395     GX_STRING_ID_STRING_55,                  /* string id                      */
1396     GX_FONT_ID_PROMPT,                       /* font id                        */
1397     GX_COLOR_ID_TEXT,                        /* normal text color              */
1398     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
1399     GX_COLOR_ID_WHITE                        /* disabled text color            */
1400 };
1401 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_active_ball_properties =
1402 {
1403     GX_PIXELMAP_ID_SCHEDULE_BALL_RED,        /* normal pixelmap id             */
1404     GX_PIXELMAP_ID_SCHEDULE_BALL_RED_ON,     /* selected pixelmap id           */
1405     0                                        /* disabled pixelmap id           */
1406 };
1407 GX_WINDOW_PROPERTIES schedule_screen_r6_win_properties =
1408 {
1409     0                                        /* wallpaper pixelmap id          */
1410 };
1411 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_18_properties =
1412 {
1413     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY,       /* normal pixelmap id             */
1414     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY_ON,    /* selected pixelmap id           */
1415     0                                        /* disabled pixelmap id           */
1416 };
1417 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_10_1_properties =
1418 {
1419     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY,       /* normal pixelmap id             */
1420     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY_ON,    /* selected pixelmap id           */
1421     0                                        /* disabled pixelmap id           */
1422 };
1423 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_11_1_properties =
1424 {
1425     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY,       /* normal pixelmap id             */
1426     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY_ON,    /* selected pixelmap id           */
1427     0                                        /* disabled pixelmap id           */
1428 };
1429 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_59_1_properties =
1430 {
1431     GX_PIXELMAP_ID_SCHEDULE_BALL_YELLOW,     /* normal pixelmap id             */
1432     GX_PIXELMAP_ID_SCHEDULE_BALL_YELLOW_ON,  /* selected pixelmap id           */
1433     0                                        /* disabled pixelmap id           */
1434 };
1435 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_119_1_properties =
1436 {
1437     GX_PIXELMAP_ID_SCHEDULE_BALL_YELLOW,     /* normal pixelmap id             */
1438     GX_PIXELMAP_ID_SCHEDULE_BALL_YELLOW_ON,  /* selected pixelmap id           */
1439     0                                        /* disabled pixelmap id           */
1440 };
1441 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_131_1_properties =
1442 {
1443     GX_PIXELMAP_ID_SCHEDULE_BALL_YELLOW,     /* normal pixelmap id             */
1444     GX_PIXELMAP_ID_SCHEDULE_BALL_YELLOW_ON,  /* selected pixelmap id           */
1445     0                                        /* disabled pixelmap id           */
1446 };
1447 GX_WINDOW_PROPERTIES schedule_screen_r7_win_properties =
1448 {
1449     0                                        /* wallpaper pixelmap id          */
1450 };
1451 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_13_1_properties =
1452 {
1453     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY,       /* normal pixelmap id             */
1454     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY_ON,    /* selected pixelmap id           */
1455     0                                        /* disabled pixelmap id           */
1456 };
1457 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_14_1_properties =
1458 {
1459     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY,       /* normal pixelmap id             */
1460     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY_ON,    /* selected pixelmap id           */
1461     0                                        /* disabled pixelmap id           */
1462 };
1463 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_33_1_properties =
1464 {
1465     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1466     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1467     0                                        /* disabled pixelmap id           */
1468 };
1469 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_34_1_properties =
1470 {
1471     GX_PIXELMAP_ID_SCHEDULE_BALL_BLUE,       /* normal pixelmap id             */
1472     GX_PIXELMAP_ID_SCHEDULE_BALL_BLUE_ON,    /* selected pixelmap id           */
1473     0                                        /* disabled pixelmap id           */
1474 };
1475 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_35_1_properties =
1476 {
1477     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1478     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1479     0                                        /* disabled pixelmap id           */
1480 };
1481 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_60_1_properties =
1482 {
1483     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1484     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1485     0                                        /* disabled pixelmap id           */
1486 };
1487 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_61_1_properties =
1488 {
1489     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1490     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1491     0                                        /* disabled pixelmap id           */
1492 };
1493 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_62_1_properties =
1494 {
1495     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1496     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1497     0                                        /* disabled pixelmap id           */
1498 };
1499 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_81_1_properties =
1500 {
1501     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1502     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1503     0                                        /* disabled pixelmap id           */
1504 };
1505 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_82_1_properties =
1506 {
1507     GX_PIXELMAP_ID_SCHEDULE_BALL_BLUE,       /* normal pixelmap id             */
1508     GX_PIXELMAP_ID_SCHEDULE_BALL_BLUE_ON,    /* selected pixelmap id           */
1509     0                                        /* disabled pixelmap id           */
1510 };
1511 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_83_1_properties =
1512 {
1513     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1514     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1515     0                                        /* disabled pixelmap id           */
1516 };
1517 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_120_1_properties =
1518 {
1519     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1520     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1521     0                                        /* disabled pixelmap id           */
1522 };
1523 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_121_1_properties =
1524 {
1525     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1526     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1527     0                                        /* disabled pixelmap id           */
1528 };
1529 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_122_1_properties =
1530 {
1531     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1532     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1533     0                                        /* disabled pixelmap id           */
1534 };
1535 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_132_1_properties =
1536 {
1537     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1538     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1539     0                                        /* disabled pixelmap id           */
1540 };
1541 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_133_1_properties =
1542 {
1543     GX_PIXELMAP_ID_SCHEDULE_BALL_BLUE,       /* normal pixelmap id             */
1544     GX_PIXELMAP_ID_SCHEDULE_BALL_BLUE_ON,    /* selected pixelmap id           */
1545     0                                        /* disabled pixelmap id           */
1546 };
1547 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_134_1_properties =
1548 {
1549     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1550     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1551     0                                        /* disabled pixelmap id           */
1552 };
1553 GX_WINDOW_PROPERTIES schedule_screen_r8_win_properties =
1554 {
1555     0                                        /* wallpaper pixelmap id          */
1556 };
1557 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_17_1_properties =
1558 {
1559     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY,       /* normal pixelmap id             */
1560     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY_ON,    /* selected pixelmap id           */
1561     0                                        /* disabled pixelmap id           */
1562 };
1563 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_37_1_properties =
1564 {
1565     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1566     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1567     0                                        /* disabled pixelmap id           */
1568 };
1569 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_38_1_properties =
1570 {
1571     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1572     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1573     0                                        /* disabled pixelmap id           */
1574 };
1575 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_64_1_properties =
1576 {
1577     GX_PIXELMAP_ID_SCHEDULE_BALL_BLUE,       /* normal pixelmap id             */
1578     GX_PIXELMAP_ID_SCHEDULE_BALL_BLUE_ON,    /* selected pixelmap id           */
1579     0                                        /* disabled pixelmap id           */
1580 };
1581 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_65_1_properties =
1582 {
1583     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1584     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1585     0                                        /* disabled pixelmap id           */
1586 };
1587 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_85_1_properties =
1588 {
1589     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1590     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY_ON,    /* selected pixelmap id           */
1591     0                                        /* disabled pixelmap id           */
1592 };
1593 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_86_1_properties =
1594 {
1595     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1596     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1597     0                                        /* disabled pixelmap id           */
1598 };
1599 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_124_1_properties =
1600 {
1601     GX_PIXELMAP_ID_SCHEDULE_BALL_BLUE,       /* normal pixelmap id             */
1602     GX_PIXELMAP_ID_SCHEDULE_BALL_BLUE_ON,    /* selected pixelmap id           */
1603     0                                        /* disabled pixelmap id           */
1604 };
1605 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_125_1_properties =
1606 {
1607     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1608     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1609     0                                        /* disabled pixelmap id           */
1610 };
1611 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_136_1_properties =
1612 {
1613     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1614     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1615     0                                        /* disabled pixelmap id           */
1616 };
1617 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_137_1_properties =
1618 {
1619     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1620     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1621     0                                        /* disabled pixelmap id           */
1622 };
1623 GX_WINDOW_PROPERTIES schedule_screen_r9_win_properties =
1624 {
1625     0                                        /* wallpaper pixelmap id          */
1626 };
1627 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_20_1_properties =
1628 {
1629     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY,       /* normal pixelmap id             */
1630     GX_PIXELMAP_ID_SCHEDULE_BALL_GREY_ON,    /* selected pixelmap id           */
1631     0                                        /* disabled pixelmap id           */
1632 };
1633 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_41_1_properties =
1634 {
1635     GX_PIXELMAP_ID_SCHEDULE_BALL_RED,        /* normal pixelmap id             */
1636     GX_PIXELMAP_ID_SCHEDULE_BALL_RED_ON,     /* selected pixelmap id           */
1637     0                                        /* disabled pixelmap id           */
1638 };
1639 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_67_1_properties =
1640 {
1641     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1642     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1643     0                                        /* disabled pixelmap id           */
1644 };
1645 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_68_1_properties =
1646 {
1647     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1648     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1649     0                                        /* disabled pixelmap id           */
1650 };
1651 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_89_1_properties =
1652 {
1653     GX_PIXELMAP_ID_SCHEDULE_BALL_RED,        /* normal pixelmap id             */
1654     GX_PIXELMAP_ID_SCHEDULE_BALL_RED_ON,     /* selected pixelmap id           */
1655     0                                        /* disabled pixelmap id           */
1656 };
1657 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_127_1_properties =
1658 {
1659     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1660     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1661     0                                        /* disabled pixelmap id           */
1662 };
1663 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_128_1_properties =
1664 {
1665     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1666     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1667     0                                        /* disabled pixelmap id           */
1668 };
1669 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_140_1_properties =
1670 {
1671     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN,      /* normal pixelmap id             */
1672     GX_PIXELMAP_ID_SCHEDULE_BALL_GREEN_ON,   /* selected pixelmap id           */
1673     0                                        /* disabled pixelmap id           */
1674 };
1675 GX_WINDOW_PROPERTIES schedule_screen_r10_win_properties =
1676 {
1677     0                                        /* wallpaper pixelmap id          */
1678 };
1679 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_44_1_properties =
1680 {
1681     GX_PIXELMAP_ID_SCHEDULE_BALL_YELLOW,     /* normal pixelmap id             */
1682     GX_PIXELMAP_ID_SCHEDULE_BALL_YELLOW_ON,  /* selected pixelmap id           */
1683     0                                        /* disabled pixelmap id           */
1684 };
1685 GX_PIXELMAP_BUTTON_PROPERTIES schedule_screen_pixelmap_button_92_1_properties =
1686 {
1687     GX_PIXELMAP_ID_SCHEDULE_BALL_YELLOW,     /* normal pixelmap id             */
1688     GX_PIXELMAP_ID_SCHEDULE_BALL_YELLOW_ON,  /* selected pixelmap id           */
1689     0                                        /* disabled pixelmap id           */
1690 };
1691 GX_NUMERIC_PROMPT_PROPERTIES schedule_screen_year_properties =
1692 {
1693     0,                                       /* string id                      */
1694     GX_FONT_ID_PROMPT,                       /* font id                        */
1695     GX_COLOR_ID_GRAY,                        /* normal text color              */
1696     GX_COLOR_ID_GRAY,                        /* selected text color            */
1697     GX_COLOR_ID_GRAY,                        /* disabled text color            */
1698     GX_NULL,                                 /* format function                */
1699     2021                                     /* numeric prompt value           */
1700 };
1701 GX_ICON_PROPERTIES schedule_screen_icon_1_properties =
1702 {
1703     GX_PIXELMAP_ID_SCHEDULE_ARROW_RIGHT,     /* normal pixelmap id             */
1704     0                                        /* selected pixelmap id           */
1705 };
1706 GX_ICON_PROPERTIES schedule_screen_icon_2_properties =
1707 {
1708     GX_PIXELMAP_ID_SCHEDULE_ARROW_LEFT,      /* normal pixelmap id             */
1709     0                                        /* selected pixelmap id           */
1710 };
1711 
1712 GX_CONST GX_STUDIO_WIDGET schedule_screen_colon_define =
1713 {
1714     "colon",
1715     GX_TYPE_PROMPT,                          /* widget type                    */
1716     GX_ID_NONE,                              /* widget id                      */
1717     #if defined(GX_WIDGET_USER_DATA)
1718     0,                                       /* user data                      */
1719     #endif
1720     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
1721     0,                                       /* status flags                   */
1722     sizeof(GX_PROMPT),                       /* control block size             */
1723     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
1724     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
1725     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
1726     gx_studio_prompt_create,                 /* create function                */
1727     GX_NULL,                                 /* drawing function override      */
1728     GX_NULL,                                 /* event function override        */
1729     {181, 235, 184, 252},                    /* widget size                    */
1730     GX_NULL,                                 /* no next widget                 */
1731     GX_NULL,                                 /* no child widgets               */
1732     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_colon), /* control block */
1733     (void *) &schedule_screen_colon_properties /* extended properties          */
1734 };
1735 
1736 GX_CONST GX_STUDIO_WIDGET schedule_screen_minute_define =
1737 {
1738     "minute",
1739     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
1740     GX_ID_NONE,                              /* widget id                      */
1741     #if defined(GX_WIDGET_USER_DATA)
1742     0,                                       /* user data                      */
1743     #endif
1744     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
1745     0,                                       /* status flags                   */
1746     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
1747     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
1748     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
1749     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
1750     gx_studio_numeric_prompt_create,         /* create function                */
1751     GX_NULL,                                 /* drawing function override      */
1752     GX_NULL,                                 /* event function override        */
1753     {185, 236, 202, 253},                    /* widget size                    */
1754     &schedule_screen_colon_define,           /* next widget definition         */
1755     GX_NULL,                                 /* no child widgets               */
1756     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_minute), /* control block */
1757     (void *) &schedule_screen_minute_properties /* extended properties         */
1758 };
1759 
1760 GX_CONST GX_STUDIO_WIDGET schedule_screen_hour_define =
1761 {
1762     "hour",
1763     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
1764     GX_ID_NONE,                              /* widget id                      */
1765     #if defined(GX_WIDGET_USER_DATA)
1766     0,                                       /* user data                      */
1767     #endif
1768     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
1769     0,                                       /* status flags                   */
1770     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
1771     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
1772     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
1773     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
1774     gx_studio_numeric_prompt_create,         /* create function                */
1775     GX_NULL,                                 /* drawing function override      */
1776     GX_NULL,                                 /* event function override        */
1777     {163, 236, 180, 253},                    /* widget size                    */
1778     &schedule_screen_minute_define,          /* next widget definition         */
1779     GX_NULL,                                 /* no child widgets               */
1780     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_hour), /* control block */
1781     (void *) &schedule_screen_hour_properties /* extended properties           */
1782 };
1783 
1784 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_98_1_define =
1785 {
1786     "pixelmap_button_98_1",
1787     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
1788     GX_ID_NONE,                              /* widget id                      */
1789     #if defined(GX_WIDGET_USER_DATA)
1790     0,                                       /* user data                      */
1791     #endif
1792     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
1793     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
1794     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
1795     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
1796     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
1797     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
1798     gx_studio_pixelmap_button_create,        /* create function                */
1799     GX_NULL,                                 /* drawing function override      */
1800     GX_NULL,                                 /* event function override        */
1801     {598, 138, 615, 155},                    /* widget size                    */
1802     GX_NULL,                                 /* no next widget                 */
1803     GX_NULL,                                 /* no child widgets               */
1804     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_98_1), /* control block */
1805     (void *) &schedule_screen_pixelmap_button_98_1_properties /* extended properties */
1806 };
1807 
1808 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_95_1_define =
1809 {
1810     "pixelmap_button_95_1",
1811     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
1812     GX_ID_NONE,                              /* widget id                      */
1813     #if defined(GX_WIDGET_USER_DATA)
1814     0,                                       /* user data                      */
1815     #endif
1816     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
1817     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
1818     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
1819     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
1820     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
1821     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
1822     gx_studio_pixelmap_button_create,        /* create function                */
1823     GX_NULL,                                 /* drawing function override      */
1824     GX_NULL,                                 /* event function override        */
1825     {521, 138, 538, 155},                    /* widget size                    */
1826     &schedule_screen_pixelmap_button_98_1_define, /* next widget definition    */
1827     GX_NULL,                                 /* no child widgets               */
1828     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_95_1), /* control block */
1829     (void *) &schedule_screen_pixelmap_button_95_1_properties /* extended properties */
1830 };
1831 
1832 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_94_1_define =
1833 {
1834     "pixelmap_button_94_1",
1835     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
1836     GX_ID_NONE,                              /* widget id                      */
1837     #if defined(GX_WIDGET_USER_DATA)
1838     0,                                       /* user data                      */
1839     #endif
1840     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
1841     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
1842     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
1843     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
1844     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
1845     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
1846     gx_studio_pixelmap_button_create,        /* create function                */
1847     GX_NULL,                                 /* drawing function override      */
1848     GX_NULL,                                 /* event function override        */
1849     {497, 138, 514, 155},                    /* widget size                    */
1850     &schedule_screen_pixelmap_button_95_1_define, /* next widget definition    */
1851     GX_NULL,                                 /* no child widgets               */
1852     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_94_1), /* control block */
1853     (void *) &schedule_screen_pixelmap_button_94_1_properties /* extended properties */
1854 };
1855 
1856 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_93_1_define =
1857 {
1858     "pixelmap_button_93_1",
1859     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
1860     GX_ID_NONE,                              /* widget id                      */
1861     #if defined(GX_WIDGET_USER_DATA)
1862     0,                                       /* user data                      */
1863     #endif
1864     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
1865     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
1866     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
1867     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
1868     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
1869     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
1870     gx_studio_pixelmap_button_create,        /* create function                */
1871     GX_NULL,                                 /* drawing function override      */
1872     GX_NULL,                                 /* event function override        */
1873     {473, 138, 490, 155},                    /* widget size                    */
1874     &schedule_screen_pixelmap_button_94_1_define, /* next widget definition    */
1875     GX_NULL,                                 /* no child widgets               */
1876     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_93_1), /* control block */
1877     (void *) &schedule_screen_pixelmap_button_93_1_properties /* extended properties */
1878 };
1879 
1880 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_47_1_define =
1881 {
1882     "pixelmap_button_47_1",
1883     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
1884     GX_ID_NONE,                              /* widget id                      */
1885     #if defined(GX_WIDGET_USER_DATA)
1886     0,                                       /* user data                      */
1887     #endif
1888     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
1889     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
1890     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
1891     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
1892     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
1893     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
1894     gx_studio_pixelmap_button_create,        /* create function                */
1895     GX_NULL,                                 /* drawing function override      */
1896     GX_NULL,                                 /* event function override        */
1897     {290, 138, 307, 155},                    /* widget size                    */
1898     &schedule_screen_pixelmap_button_93_1_define, /* next widget definition    */
1899     GX_NULL,                                 /* no child widgets               */
1900     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_47_1), /* control block */
1901     (void *) &schedule_screen_pixelmap_button_47_1_properties /* extended properties */
1902 };
1903 
1904 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_46_1_define =
1905 {
1906     "pixelmap_button_46_1",
1907     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
1908     GX_ID_NONE,                              /* widget id                      */
1909     #if defined(GX_WIDGET_USER_DATA)
1910     0,                                       /* user data                      */
1911     #endif
1912     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
1913     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
1914     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
1915     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
1916     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
1917     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
1918     gx_studio_pixelmap_button_create,        /* create function                */
1919     GX_NULL,                                 /* drawing function override      */
1920     GX_NULL,                                 /* event function override        */
1921     {266, 138, 283, 155},                    /* widget size                    */
1922     &schedule_screen_pixelmap_button_47_1_define, /* next widget definition    */
1923     GX_NULL,                                 /* no child widgets               */
1924     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_46_1), /* control block */
1925     (void *) &schedule_screen_pixelmap_button_46_1_properties /* extended properties */
1926 };
1927 
1928 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_45_1_define =
1929 {
1930     "pixelmap_button_45_1",
1931     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
1932     GX_ID_NONE,                              /* widget id                      */
1933     #if defined(GX_WIDGET_USER_DATA)
1934     0,                                       /* user data                      */
1935     #endif
1936     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
1937     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
1938     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
1939     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
1940     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
1941     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
1942     gx_studio_pixelmap_button_create,        /* create function                */
1943     GX_NULL,                                 /* drawing function override      */
1944     GX_NULL,                                 /* event function override        */
1945     {242, 138, 259, 155},                    /* widget size                    */
1946     &schedule_screen_pixelmap_button_46_1_define, /* next widget definition    */
1947     GX_NULL,                                 /* no child widgets               */
1948     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_45_1), /* control block */
1949     (void *) &schedule_screen_pixelmap_button_45_1_properties /* extended properties */
1950 };
1951 
1952 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_7_define =
1953 {
1954     "pixelmap_button_7",
1955     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
1956     GX_ID_NONE,                              /* widget id                      */
1957     #if defined(GX_WIDGET_USER_DATA)
1958     0,                                       /* user data                      */
1959     #endif
1960     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
1961     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
1962     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
1963     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
1964     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
1965     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
1966     gx_studio_pixelmap_button_create,        /* create function                */
1967     GX_NULL,                                 /* drawing function override      */
1968     GX_NULL,                                 /* event function override        */
1969     {135, 138, 152, 155},                    /* widget size                    */
1970     &schedule_screen_pixelmap_button_45_1_define, /* next widget definition    */
1971     GX_NULL,                                 /* no child widgets               */
1972     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_7), /* control block */
1973     (void *) &schedule_screen_pixelmap_button_7_properties /* extended properties */
1974 };
1975 
1976 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_6_define =
1977 {
1978     "pixelmap_button_6",
1979     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
1980     GX_ID_NONE,                              /* widget id                      */
1981     #if defined(GX_WIDGET_USER_DATA)
1982     0,                                       /* user data                      */
1983     #endif
1984     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
1985     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
1986     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
1987     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
1988     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
1989     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
1990     gx_studio_pixelmap_button_create,        /* create function                */
1991     GX_NULL,                                 /* drawing function override      */
1992     GX_NULL,                                 /* event function override        */
1993     {111, 138, 128, 155},                    /* widget size                    */
1994     &schedule_screen_pixelmap_button_7_define, /* next widget definition       */
1995     GX_NULL,                                 /* no child widgets               */
1996     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_6), /* control block */
1997     (void *) &schedule_screen_pixelmap_button_6_properties /* extended properties */
1998 };
1999 
2000 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_3_define =
2001 {
2002     "pixelmap_button_3",
2003     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2004     GX_ID_NONE,                              /* widget id                      */
2005     #if defined(GX_WIDGET_USER_DATA)
2006     0,                                       /* user data                      */
2007     #endif
2008     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2009     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2010     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2011     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2012     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2013     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2014     gx_studio_pixelmap_button_create,        /* create function                */
2015     GX_NULL,                                 /* drawing function override      */
2016     GX_NULL,                                 /* event function override        */
2017     {87, 138, 104, 155},                     /* widget size                    */
2018     &schedule_screen_pixelmap_button_6_define, /* next widget definition       */
2019     GX_NULL,                                 /* no child widgets               */
2020     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_3), /* control block */
2021     (void *) &schedule_screen_pixelmap_button_3_properties /* extended properties */
2022 };
2023 
2024 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_104_1_define =
2025 {
2026     "pixelmap_button_104_1",
2027     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2028     GX_ID_NONE,                              /* widget id                      */
2029     #if defined(GX_WIDGET_USER_DATA)
2030     0,                                       /* user data                      */
2031     #endif
2032     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2033     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2034     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2035     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2036     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2037     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2038     gx_studio_pixelmap_button_create,        /* create function                */
2039     GX_NULL,                                 /* drawing function override      */
2040     GX_NULL,                                 /* event function override        */
2041     {597, 169, 614, 186},                    /* widget size                    */
2042     GX_NULL,                                 /* no next widget                 */
2043     GX_NULL,                                 /* no child widgets               */
2044     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_104_1), /* control block */
2045     (void *) &schedule_screen_pixelmap_button_104_1_properties /* extended properties */
2046 };
2047 
2048 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_103_1_define =
2049 {
2050     "pixelmap_button_103_1",
2051     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2052     GX_ID_NONE,                              /* widget id                      */
2053     #if defined(GX_WIDGET_USER_DATA)
2054     0,                                       /* user data                      */
2055     #endif
2056     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2057     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2058     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2059     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2060     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2061     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2062     gx_studio_pixelmap_button_create,        /* create function                */
2063     GX_NULL,                                 /* drawing function override      */
2064     GX_NULL,                                 /* event function override        */
2065     {573, 169, 590, 186},                    /* widget size                    */
2066     &schedule_screen_pixelmap_button_104_1_define, /* next widget definition   */
2067     GX_NULL,                                 /* no child widgets               */
2068     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_103_1), /* control block */
2069     (void *) &schedule_screen_pixelmap_button_103_1_properties /* extended properties */
2070 };
2071 
2072 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_102_1_define =
2073 {
2074     "pixelmap_button_102_1",
2075     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2076     GX_ID_NONE,                              /* widget id                      */
2077     #if defined(GX_WIDGET_USER_DATA)
2078     0,                                       /* user data                      */
2079     #endif
2080     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2081     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2082     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2083     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2084     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2085     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2086     gx_studio_pixelmap_button_create,        /* create function                */
2087     GX_NULL,                                 /* drawing function override      */
2088     GX_NULL,                                 /* event function override        */
2089     {549, 169, 566, 186},                    /* widget size                    */
2090     &schedule_screen_pixelmap_button_103_1_define, /* next widget definition   */
2091     GX_NULL,                                 /* no child widgets               */
2092     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_102_1), /* control block */
2093     (void *) &schedule_screen_pixelmap_button_102_1_properties /* extended properties */
2094 };
2095 
2096 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_101_1_define =
2097 {
2098     "pixelmap_button_101_1",
2099     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2100     GX_ID_NONE,                              /* widget id                      */
2101     #if defined(GX_WIDGET_USER_DATA)
2102     0,                                       /* user data                      */
2103     #endif
2104     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2105     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2106     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2107     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2108     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2109     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2110     gx_studio_pixelmap_button_create,        /* create function                */
2111     GX_NULL,                                 /* drawing function override      */
2112     GX_NULL,                                 /* event function override        */
2113     {520, 169, 537, 186},                    /* widget size                    */
2114     &schedule_screen_pixelmap_button_102_1_define, /* next widget definition   */
2115     GX_NULL,                                 /* no child widgets               */
2116     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_101_1), /* control block */
2117     (void *) &schedule_screen_pixelmap_button_101_1_properties /* extended properties */
2118 };
2119 
2120 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_100_1_define =
2121 {
2122     "pixelmap_button_100_1",
2123     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2124     GX_ID_NONE,                              /* widget id                      */
2125     #if defined(GX_WIDGET_USER_DATA)
2126     0,                                       /* user data                      */
2127     #endif
2128     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2129     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2130     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2131     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2132     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2133     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2134     gx_studio_pixelmap_button_create,        /* create function                */
2135     GX_NULL,                                 /* drawing function override      */
2136     GX_NULL,                                 /* event function override        */
2137     {496, 169, 513, 186},                    /* widget size                    */
2138     &schedule_screen_pixelmap_button_101_1_define, /* next widget definition   */
2139     GX_NULL,                                 /* no child widgets               */
2140     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_100_1), /* control block */
2141     (void *) &schedule_screen_pixelmap_button_100_1_properties /* extended properties */
2142 };
2143 
2144 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_71_1_define =
2145 {
2146     "pixelmap_button_71_1",
2147     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2148     GX_ID_NONE,                              /* widget id                      */
2149     #if defined(GX_WIDGET_USER_DATA)
2150     0,                                       /* user data                      */
2151     #endif
2152     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2153     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2154     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2155     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2156     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2157     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2158     gx_studio_pixelmap_button_create,        /* create function                */
2159     GX_NULL,                                 /* drawing function override      */
2160     GX_NULL,                                 /* event function override        */
2161     {442, 169, 459, 186},                    /* widget size                    */
2162     &schedule_screen_pixelmap_button_100_1_define, /* next widget definition   */
2163     GX_NULL,                                 /* no child widgets               */
2164     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_71_1), /* control block */
2165     (void *) &schedule_screen_pixelmap_button_71_1_properties /* extended properties */
2166 };
2167 
2168 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_70_1_define =
2169 {
2170     "pixelmap_button_70_1",
2171     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2172     GX_ID_NONE,                              /* widget id                      */
2173     #if defined(GX_WIDGET_USER_DATA)
2174     0,                                       /* user data                      */
2175     #endif
2176     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2177     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2178     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2179     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2180     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2181     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2182     gx_studio_pixelmap_button_create,        /* create function                */
2183     GX_NULL,                                 /* drawing function override      */
2184     GX_NULL,                                 /* event function override        */
2185     {418, 169, 435, 186},                    /* widget size                    */
2186     &schedule_screen_pixelmap_button_71_1_define, /* next widget definition    */
2187     GX_NULL,                                 /* no child widgets               */
2188     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_70_1), /* control block */
2189     (void *) &schedule_screen_pixelmap_button_70_1_properties /* extended properties */
2190 };
2191 
2192 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_69_1_define =
2193 {
2194     "pixelmap_button_69_1",
2195     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2196     GX_ID_NONE,                              /* widget id                      */
2197     #if defined(GX_WIDGET_USER_DATA)
2198     0,                                       /* user data                      */
2199     #endif
2200     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2201     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2202     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2203     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2204     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2205     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2206     gx_studio_pixelmap_button_create,        /* create function                */
2207     GX_NULL,                                 /* drawing function override      */
2208     GX_NULL,                                 /* event function override        */
2209     {394, 169, 411, 186},                    /* widget size                    */
2210     &schedule_screen_pixelmap_button_70_1_define, /* next widget definition    */
2211     GX_NULL,                                 /* no child widgets               */
2212     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_69_1), /* control block */
2213     (void *) &schedule_screen_pixelmap_button_69_1_properties /* extended properties */
2214 };
2215 
2216 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_50_1_define =
2217 {
2218     "pixelmap_button_50_1",
2219     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2220     GX_ID_NONE,                              /* widget id                      */
2221     #if defined(GX_WIDGET_USER_DATA)
2222     0,                                       /* user data                      */
2223     #endif
2224     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2225     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2226     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2227     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2228     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2229     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2230     gx_studio_pixelmap_button_create,        /* create function                */
2231     GX_NULL,                                 /* drawing function override      */
2232     GX_NULL,                                 /* event function override        */
2233     {289, 169, 306, 186},                    /* widget size                    */
2234     &schedule_screen_pixelmap_button_69_1_define, /* next widget definition    */
2235     GX_NULL,                                 /* no child widgets               */
2236     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_50_1), /* control block */
2237     (void *) &schedule_screen_pixelmap_button_50_1_properties /* extended properties */
2238 };
2239 
2240 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_49_1_define =
2241 {
2242     "pixelmap_button_49_1",
2243     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2244     GX_ID_NONE,                              /* widget id                      */
2245     #if defined(GX_WIDGET_USER_DATA)
2246     0,                                       /* user data                      */
2247     #endif
2248     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2249     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2250     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2251     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2252     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2253     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2254     gx_studio_pixelmap_button_create,        /* create function                */
2255     GX_NULL,                                 /* drawing function override      */
2256     GX_NULL,                                 /* event function override        */
2257     {265, 169, 282, 186},                    /* widget size                    */
2258     &schedule_screen_pixelmap_button_50_1_define, /* next widget definition    */
2259     GX_NULL,                                 /* no child widgets               */
2260     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_49_1), /* control block */
2261     (void *) &schedule_screen_pixelmap_button_49_1_properties /* extended properties */
2262 };
2263 
2264 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_23_1_define =
2265 {
2266     "pixelmap_button_23_1",
2267     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2268     GX_ID_NONE,                              /* widget id                      */
2269     #if defined(GX_WIDGET_USER_DATA)
2270     0,                                       /* user data                      */
2271     #endif
2272     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2273     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2274     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2275     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2276     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2277     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2278     gx_studio_pixelmap_button_create,        /* create function                */
2279     GX_NULL,                                 /* drawing function override      */
2280     GX_NULL,                                 /* event function override        */
2281     {211, 169, 228, 186},                    /* widget size                    */
2282     &schedule_screen_pixelmap_button_49_1_define, /* next widget definition    */
2283     GX_NULL,                                 /* no child widgets               */
2284     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_23_1), /* control block */
2285     (void *) &schedule_screen_pixelmap_button_23_1_properties /* extended properties */
2286 };
2287 
2288 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_22_1_define =
2289 {
2290     "pixelmap_button_22_1",
2291     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2292     GX_ID_NONE,                              /* widget id                      */
2293     #if defined(GX_WIDGET_USER_DATA)
2294     0,                                       /* user data                      */
2295     #endif
2296     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2297     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2298     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2299     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2300     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2301     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2302     gx_studio_pixelmap_button_create,        /* create function                */
2303     GX_NULL,                                 /* drawing function override      */
2304     GX_NULL,                                 /* event function override        */
2305     {187, 169, 204, 186},                    /* widget size                    */
2306     &schedule_screen_pixelmap_button_23_1_define, /* next widget definition    */
2307     GX_NULL,                                 /* no child widgets               */
2308     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_22_1), /* control block */
2309     (void *) &schedule_screen_pixelmap_button_22_1_properties /* extended properties */
2310 };
2311 
2312 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_21_1_define =
2313 {
2314     "pixelmap_button_21_1",
2315     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2316     GX_ID_NONE,                              /* widget id                      */
2317     #if defined(GX_WIDGET_USER_DATA)
2318     0,                                       /* user data                      */
2319     #endif
2320     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2321     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2322     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2323     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2324     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2325     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2326     gx_studio_pixelmap_button_create,        /* create function                */
2327     GX_NULL,                                 /* drawing function override      */
2328     GX_NULL,                                 /* event function override        */
2329     {163, 169, 180, 186},                    /* widget size                    */
2330     &schedule_screen_pixelmap_button_22_1_define, /* next widget definition    */
2331     GX_NULL,                                 /* no child widgets               */
2332     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_21_1), /* control block */
2333     (void *) &schedule_screen_pixelmap_button_21_1_properties /* extended properties */
2334 };
2335 
2336 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_15_define =
2337 {
2338     "pixelmap_button_15",
2339     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2340     GX_ID_NONE,                              /* widget id                      */
2341     #if defined(GX_WIDGET_USER_DATA)
2342     0,                                       /* user data                      */
2343     #endif
2344     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2345     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2346     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2347     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2348     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2349     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2350     gx_studio_pixelmap_button_create,        /* create function                */
2351     GX_NULL,                                 /* drawing function override      */
2352     GX_NULL,                                 /* event function override        */
2353     {134, 169, 151, 186},                    /* widget size                    */
2354     &schedule_screen_pixelmap_button_21_1_define, /* next widget definition    */
2355     GX_NULL,                                 /* no child widgets               */
2356     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_15), /* control block */
2357     (void *) &schedule_screen_pixelmap_button_15_properties /* extended properties */
2358 };
2359 
2360 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_12_define =
2361 {
2362     "pixelmap_button_12",
2363     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2364     GX_ID_NONE,                              /* widget id                      */
2365     #if defined(GX_WIDGET_USER_DATA)
2366     0,                                       /* user data                      */
2367     #endif
2368     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2369     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2370     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2371     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2372     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2373     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2374     gx_studio_pixelmap_button_create,        /* create function                */
2375     GX_NULL,                                 /* drawing function override      */
2376     GX_NULL,                                 /* event function override        */
2377     {110, 169, 127, 186},                    /* widget size                    */
2378     &schedule_screen_pixelmap_button_15_define, /* next widget definition      */
2379     GX_NULL,                                 /* no child widgets               */
2380     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_12), /* control block */
2381     (void *) &schedule_screen_pixelmap_button_12_properties /* extended properties */
2382 };
2383 
2384 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_110_1_define =
2385 {
2386     "pixelmap_button_110_1",
2387     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2388     GX_ID_NONE,                              /* widget id                      */
2389     #if defined(GX_WIDGET_USER_DATA)
2390     0,                                       /* user data                      */
2391     #endif
2392     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2393     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2394     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2395     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2396     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2397     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2398     gx_studio_pixelmap_button_create,        /* create function                */
2399     GX_NULL,                                 /* drawing function override      */
2400     GX_NULL,                                 /* event function override        */
2401     {597, 200, 614, 217},                    /* widget size                    */
2402     GX_NULL,                                 /* no next widget                 */
2403     GX_NULL,                                 /* no child widgets               */
2404     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_110_1), /* control block */
2405     (void *) &schedule_screen_pixelmap_button_110_1_properties /* extended properties */
2406 };
2407 
2408 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_109_1_define =
2409 {
2410     "pixelmap_button_109_1",
2411     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2412     GX_ID_NONE,                              /* widget id                      */
2413     #if defined(GX_WIDGET_USER_DATA)
2414     0,                                       /* user data                      */
2415     #endif
2416     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2417     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2418     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2419     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2420     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2421     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2422     gx_studio_pixelmap_button_create,        /* create function                */
2423     GX_NULL,                                 /* drawing function override      */
2424     GX_NULL,                                 /* event function override        */
2425     {573, 200, 590, 217},                    /* widget size                    */
2426     &schedule_screen_pixelmap_button_110_1_define, /* next widget definition   */
2427     GX_NULL,                                 /* no child widgets               */
2428     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_109_1), /* control block */
2429     (void *) &schedule_screen_pixelmap_button_109_1_properties /* extended properties */
2430 };
2431 
2432 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_107_1_define =
2433 {
2434     "pixelmap_button_107_1",
2435     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2436     GX_ID_NONE,                              /* widget id                      */
2437     #if defined(GX_WIDGET_USER_DATA)
2438     0,                                       /* user data                      */
2439     #endif
2440     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2441     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2442     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2443     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2444     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2445     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2446     gx_studio_pixelmap_button_create,        /* create function                */
2447     GX_NULL,                                 /* drawing function override      */
2448     GX_NULL,                                 /* event function override        */
2449     {520, 200, 537, 217},                    /* widget size                    */
2450     &schedule_screen_pixelmap_button_109_1_define, /* next widget definition   */
2451     GX_NULL,                                 /* no child widgets               */
2452     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_107_1), /* control block */
2453     (void *) &schedule_screen_pixelmap_button_107_1_properties /* extended properties */
2454 };
2455 
2456 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_74_1_define =
2457 {
2458     "pixelmap_button_74_1",
2459     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2460     GX_ID_NONE,                              /* widget id                      */
2461     #if defined(GX_WIDGET_USER_DATA)
2462     0,                                       /* user data                      */
2463     #endif
2464     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2465     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2466     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2467     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2468     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2469     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2470     gx_studio_pixelmap_button_create,        /* create function                */
2471     GX_NULL,                                 /* drawing function override      */
2472     GX_NULL,                                 /* event function override        */
2473     {442, 200, 459, 217},                    /* widget size                    */
2474     &schedule_screen_pixelmap_button_107_1_define, /* next widget definition   */
2475     GX_NULL,                                 /* no child widgets               */
2476     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_74_1), /* control block */
2477     (void *) &schedule_screen_pixelmap_button_74_1_properties /* extended properties */
2478 };
2479 
2480 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_73_1_define =
2481 {
2482     "pixelmap_button_73_1",
2483     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2484     GX_ID_NONE,                              /* widget id                      */
2485     #if defined(GX_WIDGET_USER_DATA)
2486     0,                                       /* user data                      */
2487     #endif
2488     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2489     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2490     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2491     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2492     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2493     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2494     gx_studio_pixelmap_button_create,        /* create function                */
2495     GX_NULL,                                 /* drawing function override      */
2496     GX_NULL,                                 /* event function override        */
2497     {418, 200, 435, 217},                    /* widget size                    */
2498     &schedule_screen_pixelmap_button_74_1_define, /* next widget definition    */
2499     GX_NULL,                                 /* no child widgets               */
2500     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_73_1), /* control block */
2501     (void *) &schedule_screen_pixelmap_button_73_1_properties /* extended properties */
2502 };
2503 
2504 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_53_1_define =
2505 {
2506     "pixelmap_button_53_1",
2507     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2508     GX_ID_NONE,                              /* widget id                      */
2509     #if defined(GX_WIDGET_USER_DATA)
2510     0,                                       /* user data                      */
2511     #endif
2512     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2513     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2514     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2515     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2516     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2517     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2518     gx_studio_pixelmap_button_create,        /* create function                */
2519     GX_NULL,                                 /* drawing function override      */
2520     GX_NULL,                                 /* event function override        */
2521     {289, 200, 306, 217},                    /* widget size                    */
2522     &schedule_screen_pixelmap_button_73_1_define, /* next widget definition    */
2523     GX_NULL,                                 /* no child widgets               */
2524     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_53_1), /* control block */
2525     (void *) &schedule_screen_pixelmap_button_53_1_properties /* extended properties */
2526 };
2527 
2528 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_26_1_define =
2529 {
2530     "pixelmap_button_26_1",
2531     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2532     GX_ID_NONE,                              /* widget id                      */
2533     #if defined(GX_WIDGET_USER_DATA)
2534     0,                                       /* user data                      */
2535     #endif
2536     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2537     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2538     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2539     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2540     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2541     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2542     gx_studio_pixelmap_button_create,        /* create function                */
2543     GX_NULL,                                 /* drawing function override      */
2544     GX_NULL,                                 /* event function override        */
2545     {211, 200, 228, 217},                    /* widget size                    */
2546     &schedule_screen_pixelmap_button_53_1_define, /* next widget definition    */
2547     GX_NULL,                                 /* no child widgets               */
2548     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_26_1), /* control block */
2549     (void *) &schedule_screen_pixelmap_button_26_1_properties /* extended properties */
2550 };
2551 
2552 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_25_1_define =
2553 {
2554     "pixelmap_button_25_1",
2555     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2556     GX_ID_NONE,                              /* widget id                      */
2557     #if defined(GX_WIDGET_USER_DATA)
2558     0,                                       /* user data                      */
2559     #endif
2560     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2561     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2562     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2563     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2564     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2565     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2566     gx_studio_pixelmap_button_create,        /* create function                */
2567     GX_NULL,                                 /* drawing function override      */
2568     GX_NULL,                                 /* event function override        */
2569     {187, 200, 204, 217},                    /* widget size                    */
2570     &schedule_screen_pixelmap_button_26_1_define, /* next widget definition    */
2571     GX_NULL,                                 /* no child widgets               */
2572     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_25_1), /* control block */
2573     (void *) &schedule_screen_pixelmap_button_25_1_properties /* extended properties */
2574 };
2575 
2576 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_16_define =
2577 {
2578     "pixelmap_button_16",
2579     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2580     GX_ID_NONE,                              /* widget id                      */
2581     #if defined(GX_WIDGET_USER_DATA)
2582     0,                                       /* user data                      */
2583     #endif
2584     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2585     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2586     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2587     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2588     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2589     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2590     gx_studio_pixelmap_button_create,        /* create function                */
2591     GX_NULL,                                 /* drawing function override      */
2592     GX_NULL,                                 /* event function override        */
2593     {134, 200, 151, 217},                    /* widget size                    */
2594     &schedule_screen_pixelmap_button_25_1_define, /* next widget definition    */
2595     GX_NULL,                                 /* no child widgets               */
2596     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_16), /* control block */
2597     (void *) &schedule_screen_pixelmap_button_16_properties /* extended properties */
2598 };
2599 
2600 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_116_1_define =
2601 {
2602     "pixelmap_button_116_1",
2603     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2604     GX_ID_NONE,                              /* widget id                      */
2605     #if defined(GX_WIDGET_USER_DATA)
2606     0,                                       /* user data                      */
2607     #endif
2608     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2609     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2610     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2611     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2612     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2613     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2614     gx_studio_pixelmap_button_create,        /* create function                */
2615     GX_NULL,                                 /* drawing function override      */
2616     GX_NULL,                                 /* event function override        */
2617     {597, 231, 614, 248},                    /* widget size                    */
2618     GX_NULL,                                 /* no next widget                 */
2619     GX_NULL,                                 /* no child widgets               */
2620     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_116_1), /* control block */
2621     (void *) &schedule_screen_pixelmap_button_116_1_properties /* extended properties */
2622 };
2623 
2624 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_113_1_define =
2625 {
2626     "pixelmap_button_113_1",
2627     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2628     GX_ID_NONE,                              /* widget id                      */
2629     #if defined(GX_WIDGET_USER_DATA)
2630     0,                                       /* user data                      */
2631     #endif
2632     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2633     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2634     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2635     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2636     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2637     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2638     gx_studio_pixelmap_button_create,        /* create function                */
2639     GX_NULL,                                 /* drawing function override      */
2640     GX_NULL,                                 /* event function override        */
2641     {520, 231, 537, 248},                    /* widget size                    */
2642     &schedule_screen_pixelmap_button_116_1_define, /* next widget definition   */
2643     GX_NULL,                                 /* no child widgets               */
2644     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_113_1), /* control block */
2645     (void *) &schedule_screen_pixelmap_button_113_1_properties /* extended properties */
2646 };
2647 
2648 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_77_1_define =
2649 {
2650     "pixelmap_button_77_1",
2651     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2652     GX_ID_NONE,                              /* widget id                      */
2653     #if defined(GX_WIDGET_USER_DATA)
2654     0,                                       /* user data                      */
2655     #endif
2656     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2657     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2658     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2659     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2660     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2661     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2662     gx_studio_pixelmap_button_create,        /* create function                */
2663     GX_NULL,                                 /* drawing function override      */
2664     GX_NULL,                                 /* event function override        */
2665     {442, 231, 459, 248},                    /* widget size                    */
2666     &schedule_screen_pixelmap_button_113_1_define, /* next widget definition   */
2667     GX_NULL,                                 /* no child widgets               */
2668     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_77_1), /* control block */
2669     (void *) &schedule_screen_pixelmap_button_77_1_properties /* extended properties */
2670 };
2671 
2672 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_56_1_define =
2673 {
2674     "pixelmap_button_56_1",
2675     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2676     GX_ID_NONE,                              /* widget id                      */
2677     #if defined(GX_WIDGET_USER_DATA)
2678     0,                                       /* user data                      */
2679     #endif
2680     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2681     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2682     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2683     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2684     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2685     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2686     gx_studio_pixelmap_button_create,        /* create function                */
2687     GX_NULL,                                 /* drawing function override      */
2688     GX_NULL,                                 /* event function override        */
2689     {289, 231, 306, 248},                    /* widget size                    */
2690     &schedule_screen_pixelmap_button_77_1_define, /* next widget definition    */
2691     GX_NULL,                                 /* no child widgets               */
2692     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_56_1), /* control block */
2693     (void *) &schedule_screen_pixelmap_button_56_1_properties /* extended properties */
2694 };
2695 
2696 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_29_1_define =
2697 {
2698     "pixelmap_button_29_1",
2699     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2700     GX_ID_NONE,                              /* widget id                      */
2701     #if defined(GX_WIDGET_USER_DATA)
2702     0,                                       /* user data                      */
2703     #endif
2704     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2705     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2706     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2707     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2708     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2709     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2710     gx_studio_pixelmap_button_create,        /* create function                */
2711     GX_NULL,                                 /* drawing function override      */
2712     GX_NULL,                                 /* event function override        */
2713     {211, 231, 228, 248},                    /* widget size                    */
2714     &schedule_screen_pixelmap_button_56_1_define, /* next widget definition    */
2715     GX_NULL,                                 /* no child widgets               */
2716     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_29_1), /* control block */
2717     (void *) &schedule_screen_pixelmap_button_29_1_properties /* extended properties */
2718 };
2719 
2720 GX_CONST GX_STUDIO_WIDGET schedule_screen_active_ball_define =
2721 {
2722     "active_ball",
2723     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2724     ID_ACTIVE_BALL,                          /* widget id                      */
2725     #if defined(GX_WIDGET_USER_DATA)
2726     0,                                       /* user data                      */
2727     #endif
2728     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2729     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2730     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2731     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2732     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2733     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2734     gx_studio_pixelmap_button_create,        /* create function                */
2735     GX_NULL,                                 /* drawing function override      */
2736     GX_NULL,                                 /* event function override        */
2737     {211, 263, 228, 280},                    /* widget size                    */
2738     GX_NULL,                                 /* no next widget                 */
2739     GX_NULL,                                 /* no child widgets               */
2740     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_active_ball), /* control block */
2741     (void *) &schedule_screen_active_ball_properties /* extended properties    */
2742 };
2743 
2744 GX_CONST GX_STUDIO_WIDGET schedule_screen_patient_info_define =
2745 {
2746     "patient_info",
2747     GX_TYPE_PROMPT,                          /* widget type                    */
2748     GX_ID_NONE,                              /* widget id                      */
2749     #if defined(GX_WIDGET_USER_DATA)
2750     0,                                       /* user data                      */
2751     #endif
2752     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
2753     0,                                       /* status flags                   */
2754     sizeof(GX_PROMPT),                       /* control block size             */
2755     GX_COLOR_ID_WHITE,                       /* normal color id                */
2756     GX_COLOR_ID_WHITE,                       /* selected color id              */
2757     GX_COLOR_ID_WHITE,                       /* disabled color id              */
2758     gx_studio_prompt_create,                 /* create function                */
2759     GX_NULL,                                 /* drawing function override      */
2760     GX_NULL,                                 /* event function override        */
2761     {233, 263, 518, 280},                    /* widget size                    */
2762     &schedule_screen_active_ball_define,     /* next widget definition         */
2763     GX_NULL,                                 /* no child widgets               */
2764     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_patient_info), /* control block */
2765     (void *) &schedule_screen_patient_info_properties /* extended properties   */
2766 };
2767 
2768 GX_CONST GX_STUDIO_WIDGET schedule_screen_active_bar_define =
2769 {
2770     "active_bar",
2771     GX_TYPE_PIXELMAP_PROMPT,                 /* widget type                    */
2772     GX_ID_NONE,                              /* widget id                      */
2773     #if defined(GX_WIDGET_USER_DATA)
2774     0,                                       /* user data                      */
2775     #endif
2776     GX_STYLE_BORDER_THIN|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
2777     0,                                       /* status flags                   */
2778     sizeof(GX_PIXELMAP_PROMPT),              /* control block size             */
2779     GX_COLOR_ID_ORANGE,                      /* normal color id                */
2780     GX_COLOR_ID_ORANGE,                      /* selected color id              */
2781     GX_COLOR_ID_ORANGE,                      /* disabled color id              */
2782     gx_studio_pixelmap_prompt_create,        /* create function                */
2783     GX_NULL,                                 /* drawing function override      */
2784     GX_NULL,                                 /* event function override        */
2785     {208, 261, 527, 281},                    /* widget size                    */
2786     GX_NULL,                                 /* no next widget                 */
2787     &schedule_screen_patient_info_define,    /* child widget definition        */
2788     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_active_bar), /* control block */
2789     (void *) &schedule_screen_active_bar_properties /* extended properties     */
2790 };
2791 
2792 GX_CONST GX_STUDIO_WIDGET schedule_screen_active_circle_define =
2793 {
2794     "active_circle",
2795     GX_TYPE_ICON,                            /* widget type                    */
2796     GX_ID_NONE,                              /* widget id                      */
2797     #if defined(GX_WIDGET_USER_DATA)
2798     0,                                       /* user data                      */
2799     #endif
2800     GX_STYLE_BORDER_NONE|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP,   /* style flags */
2801     0,                                       /* status flags                   */
2802     sizeof(GX_ICON),                         /* control block size             */
2803     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
2804     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
2805     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2806     gx_studio_icon_create,                   /* create function                */
2807     GX_NULL,                                 /* drawing function override      */
2808     GX_NULL,                                 /* event function override        */
2809     {204, 256, 233, 285},                    /* widget size                    */
2810     &schedule_screen_active_bar_define,      /* next widget definition         */
2811     GX_NULL,                                 /* no child widgets               */
2812     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_active_circle), /* control block */
2813     (void *) &schedule_screen_active_circle_properties /* extended properties  */
2814 };
2815 
2816 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_131_1_define =
2817 {
2818     "pixelmap_button_131_1",
2819     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2820     GX_ID_NONE,                              /* widget id                      */
2821     #if defined(GX_WIDGET_USER_DATA)
2822     0,                                       /* user data                      */
2823     #endif
2824     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2825     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2826     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2827     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2828     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2829     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2830     gx_studio_pixelmap_button_create,        /* create function                */
2831     GX_NULL,                                 /* drawing function override      */
2832     GX_NULL,                                 /* event function override        */
2833     {597, 293, 614, 310},                    /* widget size                    */
2834     GX_NULL,                                 /* no next widget                 */
2835     GX_NULL,                                 /* no child widgets               */
2836     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_131_1), /* control block */
2837     (void *) &schedule_screen_pixelmap_button_131_1_properties /* extended properties */
2838 };
2839 
2840 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_119_1_define =
2841 {
2842     "pixelmap_button_119_1",
2843     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2844     GX_ID_NONE,                              /* widget id                      */
2845     #if defined(GX_WIDGET_USER_DATA)
2846     0,                                       /* user data                      */
2847     #endif
2848     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2849     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2850     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2851     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2852     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2853     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2854     gx_studio_pixelmap_button_create,        /* create function                */
2855     GX_NULL,                                 /* drawing function override      */
2856     GX_NULL,                                 /* event function override        */
2857     {520, 293, 537, 310},                    /* widget size                    */
2858     &schedule_screen_pixelmap_button_131_1_define, /* next widget definition   */
2859     GX_NULL,                                 /* no child widgets               */
2860     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_119_1), /* control block */
2861     (void *) &schedule_screen_pixelmap_button_119_1_properties /* extended properties */
2862 };
2863 
2864 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_59_1_define =
2865 {
2866     "pixelmap_button_59_1",
2867     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2868     GX_ID_NONE,                              /* widget id                      */
2869     #if defined(GX_WIDGET_USER_DATA)
2870     0,                                       /* user data                      */
2871     #endif
2872     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2873     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2874     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2875     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2876     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2877     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2878     gx_studio_pixelmap_button_create,        /* create function                */
2879     GX_NULL,                                 /* drawing function override      */
2880     GX_NULL,                                 /* event function override        */
2881     {289, 293, 306, 310},                    /* widget size                    */
2882     &schedule_screen_pixelmap_button_119_1_define, /* next widget definition   */
2883     GX_NULL,                                 /* no child widgets               */
2884     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_59_1), /* control block */
2885     (void *) &schedule_screen_pixelmap_button_59_1_properties /* extended properties */
2886 };
2887 
2888 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_11_1_define =
2889 {
2890     "pixelmap_button_11_1",
2891     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2892     GX_ID_NONE,                              /* widget id                      */
2893     #if defined(GX_WIDGET_USER_DATA)
2894     0,                                       /* user data                      */
2895     #endif
2896     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2897     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2898     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2899     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2900     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2901     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2902     gx_studio_pixelmap_button_create,        /* create function                */
2903     GX_NULL,                                 /* drawing function override      */
2904     GX_NULL,                                 /* event function override        */
2905     {134, 293, 151, 310},                    /* widget size                    */
2906     &schedule_screen_pixelmap_button_59_1_define, /* next widget definition    */
2907     GX_NULL,                                 /* no child widgets               */
2908     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_11_1), /* control block */
2909     (void *) &schedule_screen_pixelmap_button_11_1_properties /* extended properties */
2910 };
2911 
2912 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_10_1_define =
2913 {
2914     "pixelmap_button_10_1",
2915     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2916     GX_ID_NONE,                              /* widget id                      */
2917     #if defined(GX_WIDGET_USER_DATA)
2918     0,                                       /* user data                      */
2919     #endif
2920     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2921     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2922     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2923     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2924     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2925     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2926     gx_studio_pixelmap_button_create,        /* create function                */
2927     GX_NULL,                                 /* drawing function override      */
2928     GX_NULL,                                 /* event function override        */
2929     {110, 293, 127, 310},                    /* widget size                    */
2930     &schedule_screen_pixelmap_button_11_1_define, /* next widget definition    */
2931     GX_NULL,                                 /* no child widgets               */
2932     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_10_1), /* control block */
2933     (void *) &schedule_screen_pixelmap_button_10_1_properties /* extended properties */
2934 };
2935 
2936 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_18_define =
2937 {
2938     "pixelmap_button_18",
2939     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2940     GX_ID_NONE,                              /* widget id                      */
2941     #if defined(GX_WIDGET_USER_DATA)
2942     0,                                       /* user data                      */
2943     #endif
2944     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2945     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2946     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2947     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2948     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2949     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2950     gx_studio_pixelmap_button_create,        /* create function                */
2951     GX_NULL,                                 /* drawing function override      */
2952     GX_NULL,                                 /* event function override        */
2953     {86, 293, 103, 310},                     /* widget size                    */
2954     &schedule_screen_pixelmap_button_10_1_define, /* next widget definition    */
2955     GX_NULL,                                 /* no child widgets               */
2956     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_18), /* control block */
2957     (void *) &schedule_screen_pixelmap_button_18_properties /* extended properties */
2958 };
2959 
2960 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_134_1_define =
2961 {
2962     "pixelmap_button_134_1",
2963     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2964     GX_ID_NONE,                              /* widget id                      */
2965     #if defined(GX_WIDGET_USER_DATA)
2966     0,                                       /* user data                      */
2967     #endif
2968     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2969     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2970     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2971     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2972     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2973     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2974     gx_studio_pixelmap_button_create,        /* create function                */
2975     GX_NULL,                                 /* drawing function override      */
2976     GX_NULL,                                 /* event function override        */
2977     {597, 324, 614, 341},                    /* widget size                    */
2978     GX_NULL,                                 /* no next widget                 */
2979     GX_NULL,                                 /* no child widgets               */
2980     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_134_1), /* control block */
2981     (void *) &schedule_screen_pixelmap_button_134_1_properties /* extended properties */
2982 };
2983 
2984 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_133_1_define =
2985 {
2986     "pixelmap_button_133_1",
2987     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
2988     GX_ID_NONE,                              /* widget id                      */
2989     #if defined(GX_WIDGET_USER_DATA)
2990     0,                                       /* user data                      */
2991     #endif
2992     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
2993     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
2994     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
2995     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
2996     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
2997     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
2998     gx_studio_pixelmap_button_create,        /* create function                */
2999     GX_NULL,                                 /* drawing function override      */
3000     GX_NULL,                                 /* event function override        */
3001     {573, 324, 590, 341},                    /* widget size                    */
3002     &schedule_screen_pixelmap_button_134_1_define, /* next widget definition   */
3003     GX_NULL,                                 /* no child widgets               */
3004     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_133_1), /* control block */
3005     (void *) &schedule_screen_pixelmap_button_133_1_properties /* extended properties */
3006 };
3007 
3008 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_132_1_define =
3009 {
3010     "pixelmap_button_132_1",
3011     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3012     GX_ID_NONE,                              /* widget id                      */
3013     #if defined(GX_WIDGET_USER_DATA)
3014     0,                                       /* user data                      */
3015     #endif
3016     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3017     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3018     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3019     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3020     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3021     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3022     gx_studio_pixelmap_button_create,        /* create function                */
3023     GX_NULL,                                 /* drawing function override      */
3024     GX_NULL,                                 /* event function override        */
3025     {549, 324, 566, 341},                    /* widget size                    */
3026     &schedule_screen_pixelmap_button_133_1_define, /* next widget definition   */
3027     GX_NULL,                                 /* no child widgets               */
3028     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_132_1), /* control block */
3029     (void *) &schedule_screen_pixelmap_button_132_1_properties /* extended properties */
3030 };
3031 
3032 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_122_1_define =
3033 {
3034     "pixelmap_button_122_1",
3035     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3036     GX_ID_NONE,                              /* widget id                      */
3037     #if defined(GX_WIDGET_USER_DATA)
3038     0,                                       /* user data                      */
3039     #endif
3040     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3041     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3042     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3043     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3044     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3045     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3046     gx_studio_pixelmap_button_create,        /* create function                */
3047     GX_NULL,                                 /* drawing function override      */
3048     GX_NULL,                                 /* event function override        */
3049     {520, 324, 537, 341},                    /* widget size                    */
3050     &schedule_screen_pixelmap_button_132_1_define, /* next widget definition   */
3051     GX_NULL,                                 /* no child widgets               */
3052     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_122_1), /* control block */
3053     (void *) &schedule_screen_pixelmap_button_122_1_properties /* extended properties */
3054 };
3055 
3056 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_121_1_define =
3057 {
3058     "pixelmap_button_121_1",
3059     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3060     GX_ID_NONE,                              /* widget id                      */
3061     #if defined(GX_WIDGET_USER_DATA)
3062     0,                                       /* user data                      */
3063     #endif
3064     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3065     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3066     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3067     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3068     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3069     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3070     gx_studio_pixelmap_button_create,        /* create function                */
3071     GX_NULL,                                 /* drawing function override      */
3072     GX_NULL,                                 /* event function override        */
3073     {496, 324, 513, 341},                    /* widget size                    */
3074     &schedule_screen_pixelmap_button_122_1_define, /* next widget definition   */
3075     GX_NULL,                                 /* no child widgets               */
3076     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_121_1), /* control block */
3077     (void *) &schedule_screen_pixelmap_button_121_1_properties /* extended properties */
3078 };
3079 
3080 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_120_1_define =
3081 {
3082     "pixelmap_button_120_1",
3083     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3084     GX_ID_NONE,                              /* widget id                      */
3085     #if defined(GX_WIDGET_USER_DATA)
3086     0,                                       /* user data                      */
3087     #endif
3088     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3089     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3090     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3091     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3092     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3093     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3094     gx_studio_pixelmap_button_create,        /* create function                */
3095     GX_NULL,                                 /* drawing function override      */
3096     GX_NULL,                                 /* event function override        */
3097     {472, 324, 489, 341},                    /* widget size                    */
3098     &schedule_screen_pixelmap_button_121_1_define, /* next widget definition   */
3099     GX_NULL,                                 /* no child widgets               */
3100     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_120_1), /* control block */
3101     (void *) &schedule_screen_pixelmap_button_120_1_properties /* extended properties */
3102 };
3103 
3104 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_83_1_define =
3105 {
3106     "pixelmap_button_83_1",
3107     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3108     GX_ID_NONE,                              /* widget id                      */
3109     #if defined(GX_WIDGET_USER_DATA)
3110     0,                                       /* user data                      */
3111     #endif
3112     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3113     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3114     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3115     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3116     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3117     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3118     gx_studio_pixelmap_button_create,        /* create function                */
3119     GX_NULL,                                 /* drawing function override      */
3120     GX_NULL,                                 /* event function override        */
3121     {445, 324, 462, 341},                    /* widget size                    */
3122     &schedule_screen_pixelmap_button_120_1_define, /* next widget definition   */
3123     GX_NULL,                                 /* no child widgets               */
3124     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_83_1), /* control block */
3125     (void *) &schedule_screen_pixelmap_button_83_1_properties /* extended properties */
3126 };
3127 
3128 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_82_1_define =
3129 {
3130     "pixelmap_button_82_1",
3131     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3132     GX_ID_NONE,                              /* widget id                      */
3133     #if defined(GX_WIDGET_USER_DATA)
3134     0,                                       /* user data                      */
3135     #endif
3136     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3137     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3138     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3139     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3140     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3141     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3142     gx_studio_pixelmap_button_create,        /* create function                */
3143     GX_NULL,                                 /* drawing function override      */
3144     GX_NULL,                                 /* event function override        */
3145     {421, 324, 438, 341},                    /* widget size                    */
3146     &schedule_screen_pixelmap_button_83_1_define, /* next widget definition    */
3147     GX_NULL,                                 /* no child widgets               */
3148     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_82_1), /* control block */
3149     (void *) &schedule_screen_pixelmap_button_82_1_properties /* extended properties */
3150 };
3151 
3152 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_81_1_define =
3153 {
3154     "pixelmap_button_81_1",
3155     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3156     GX_ID_NONE,                              /* widget id                      */
3157     #if defined(GX_WIDGET_USER_DATA)
3158     0,                                       /* user data                      */
3159     #endif
3160     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3161     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3162     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3163     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3164     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3165     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3166     gx_studio_pixelmap_button_create,        /* create function                */
3167     GX_NULL,                                 /* drawing function override      */
3168     GX_NULL,                                 /* event function override        */
3169     {397, 324, 414, 341},                    /* widget size                    */
3170     &schedule_screen_pixelmap_button_82_1_define, /* next widget definition    */
3171     GX_NULL,                                 /* no child widgets               */
3172     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_81_1), /* control block */
3173     (void *) &schedule_screen_pixelmap_button_81_1_properties /* extended properties */
3174 };
3175 
3176 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_62_1_define =
3177 {
3178     "pixelmap_button_62_1",
3179     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3180     GX_ID_NONE,                              /* widget id                      */
3181     #if defined(GX_WIDGET_USER_DATA)
3182     0,                                       /* user data                      */
3183     #endif
3184     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3185     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3186     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3187     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3188     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3189     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3190     gx_studio_pixelmap_button_create,        /* create function                */
3191     GX_NULL,                                 /* drawing function override      */
3192     GX_NULL,                                 /* event function override        */
3193     {289, 324, 306, 341},                    /* widget size                    */
3194     &schedule_screen_pixelmap_button_81_1_define, /* next widget definition    */
3195     GX_NULL,                                 /* no child widgets               */
3196     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_62_1), /* control block */
3197     (void *) &schedule_screen_pixelmap_button_62_1_properties /* extended properties */
3198 };
3199 
3200 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_61_1_define =
3201 {
3202     "pixelmap_button_61_1",
3203     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3204     GX_ID_NONE,                              /* widget id                      */
3205     #if defined(GX_WIDGET_USER_DATA)
3206     0,                                       /* user data                      */
3207     #endif
3208     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3209     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3210     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3211     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3212     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3213     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3214     gx_studio_pixelmap_button_create,        /* create function                */
3215     GX_NULL,                                 /* drawing function override      */
3216     GX_NULL,                                 /* event function override        */
3217     {265, 324, 282, 341},                    /* widget size                    */
3218     &schedule_screen_pixelmap_button_62_1_define, /* next widget definition    */
3219     GX_NULL,                                 /* no child widgets               */
3220     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_61_1), /* control block */
3221     (void *) &schedule_screen_pixelmap_button_61_1_properties /* extended properties */
3222 };
3223 
3224 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_60_1_define =
3225 {
3226     "pixelmap_button_60_1",
3227     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3228     GX_ID_NONE,                              /* widget id                      */
3229     #if defined(GX_WIDGET_USER_DATA)
3230     0,                                       /* user data                      */
3231     #endif
3232     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3233     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3234     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3235     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3236     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3237     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3238     gx_studio_pixelmap_button_create,        /* create function                */
3239     GX_NULL,                                 /* drawing function override      */
3240     GX_NULL,                                 /* event function override        */
3241     {241, 324, 258, 341},                    /* widget size                    */
3242     &schedule_screen_pixelmap_button_61_1_define, /* next widget definition    */
3243     GX_NULL,                                 /* no child widgets               */
3244     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_60_1), /* control block */
3245     (void *) &schedule_screen_pixelmap_button_60_1_properties /* extended properties */
3246 };
3247 
3248 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_35_1_define =
3249 {
3250     "pixelmap_button_35_1",
3251     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3252     GX_ID_NONE,                              /* widget id                      */
3253     #if defined(GX_WIDGET_USER_DATA)
3254     0,                                       /* user data                      */
3255     #endif
3256     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3257     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3258     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3259     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3260     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3261     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3262     gx_studio_pixelmap_button_create,        /* create function                */
3263     GX_NULL,                                 /* drawing function override      */
3264     GX_NULL,                                 /* event function override        */
3265     {212, 324, 229, 341},                    /* widget size                    */
3266     &schedule_screen_pixelmap_button_60_1_define, /* next widget definition    */
3267     GX_NULL,                                 /* no child widgets               */
3268     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_35_1), /* control block */
3269     (void *) &schedule_screen_pixelmap_button_35_1_properties /* extended properties */
3270 };
3271 
3272 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_34_1_define =
3273 {
3274     "pixelmap_button_34_1",
3275     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3276     GX_ID_NONE,                              /* widget id                      */
3277     #if defined(GX_WIDGET_USER_DATA)
3278     0,                                       /* user data                      */
3279     #endif
3280     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3281     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3282     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3283     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3284     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3285     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3286     gx_studio_pixelmap_button_create,        /* create function                */
3287     GX_NULL,                                 /* drawing function override      */
3288     GX_NULL,                                 /* event function override        */
3289     {187, 324, 204, 341},                    /* widget size                    */
3290     &schedule_screen_pixelmap_button_35_1_define, /* next widget definition    */
3291     GX_NULL,                                 /* no child widgets               */
3292     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_34_1), /* control block */
3293     (void *) &schedule_screen_pixelmap_button_34_1_properties /* extended properties */
3294 };
3295 
3296 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_33_1_define =
3297 {
3298     "pixelmap_button_33_1",
3299     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3300     GX_ID_NONE,                              /* widget id                      */
3301     #if defined(GX_WIDGET_USER_DATA)
3302     0,                                       /* user data                      */
3303     #endif
3304     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3305     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3306     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3307     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3308     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3309     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3310     gx_studio_pixelmap_button_create,        /* create function                */
3311     GX_NULL,                                 /* drawing function override      */
3312     GX_NULL,                                 /* event function override        */
3313     {163, 324, 180, 341},                    /* widget size                    */
3314     &schedule_screen_pixelmap_button_34_1_define, /* next widget definition    */
3315     GX_NULL,                                 /* no child widgets               */
3316     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_33_1), /* control block */
3317     (void *) &schedule_screen_pixelmap_button_33_1_properties /* extended properties */
3318 };
3319 
3320 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_14_1_define =
3321 {
3322     "pixelmap_button_14_1",
3323     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3324     GX_ID_NONE,                              /* widget id                      */
3325     #if defined(GX_WIDGET_USER_DATA)
3326     0,                                       /* user data                      */
3327     #endif
3328     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3329     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3330     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3331     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3332     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3333     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3334     gx_studio_pixelmap_button_create,        /* create function                */
3335     GX_NULL,                                 /* drawing function override      */
3336     GX_NULL,                                 /* event function override        */
3337     {134, 324, 151, 341},                    /* widget size                    */
3338     &schedule_screen_pixelmap_button_33_1_define, /* next widget definition    */
3339     GX_NULL,                                 /* no child widgets               */
3340     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_14_1), /* control block */
3341     (void *) &schedule_screen_pixelmap_button_14_1_properties /* extended properties */
3342 };
3343 
3344 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_13_1_define =
3345 {
3346     "pixelmap_button_13_1",
3347     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3348     GX_ID_NONE,                              /* widget id                      */
3349     #if defined(GX_WIDGET_USER_DATA)
3350     0,                                       /* user data                      */
3351     #endif
3352     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3353     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3354     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3355     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3356     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3357     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3358     gx_studio_pixelmap_button_create,        /* create function                */
3359     GX_NULL,                                 /* drawing function override      */
3360     GX_NULL,                                 /* event function override        */
3361     {110, 324, 127, 341},                    /* widget size                    */
3362     &schedule_screen_pixelmap_button_14_1_define, /* next widget definition    */
3363     GX_NULL,                                 /* no child widgets               */
3364     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_13_1), /* control block */
3365     (void *) &schedule_screen_pixelmap_button_13_1_properties /* extended properties */
3366 };
3367 
3368 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_137_1_define =
3369 {
3370     "pixelmap_button_137_1",
3371     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3372     GX_ID_NONE,                              /* widget id                      */
3373     #if defined(GX_WIDGET_USER_DATA)
3374     0,                                       /* user data                      */
3375     #endif
3376     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3377     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3378     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3379     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3380     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3381     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3382     gx_studio_pixelmap_button_create,        /* create function                */
3383     GX_NULL,                                 /* drawing function override      */
3384     GX_NULL,                                 /* event function override        */
3385     {597, 355, 614, 372},                    /* widget size                    */
3386     GX_NULL,                                 /* no next widget                 */
3387     GX_NULL,                                 /* no child widgets               */
3388     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_137_1), /* control block */
3389     (void *) &schedule_screen_pixelmap_button_137_1_properties /* extended properties */
3390 };
3391 
3392 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_136_1_define =
3393 {
3394     "pixelmap_button_136_1",
3395     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3396     GX_ID_NONE,                              /* widget id                      */
3397     #if defined(GX_WIDGET_USER_DATA)
3398     0,                                       /* user data                      */
3399     #endif
3400     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3401     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3402     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3403     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3404     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3405     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3406     gx_studio_pixelmap_button_create,        /* create function                */
3407     GX_NULL,                                 /* drawing function override      */
3408     GX_NULL,                                 /* event function override        */
3409     {576, 355, 593, 372},                    /* widget size                    */
3410     &schedule_screen_pixelmap_button_137_1_define, /* next widget definition   */
3411     GX_NULL,                                 /* no child widgets               */
3412     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_136_1), /* control block */
3413     (void *) &schedule_screen_pixelmap_button_136_1_properties /* extended properties */
3414 };
3415 
3416 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_125_1_define =
3417 {
3418     "pixelmap_button_125_1",
3419     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3420     GX_ID_NONE,                              /* widget id                      */
3421     #if defined(GX_WIDGET_USER_DATA)
3422     0,                                       /* user data                      */
3423     #endif
3424     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3425     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3426     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3427     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3428     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3429     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3430     gx_studio_pixelmap_button_create,        /* create function                */
3431     GX_NULL,                                 /* drawing function override      */
3432     GX_NULL,                                 /* event function override        */
3433     {520, 355, 537, 372},                    /* widget size                    */
3434     &schedule_screen_pixelmap_button_136_1_define, /* next widget definition   */
3435     GX_NULL,                                 /* no child widgets               */
3436     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_125_1), /* control block */
3437     (void *) &schedule_screen_pixelmap_button_125_1_properties /* extended properties */
3438 };
3439 
3440 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_124_1_define =
3441 {
3442     "pixelmap_button_124_1",
3443     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3444     GX_ID_NONE,                              /* widget id                      */
3445     #if defined(GX_WIDGET_USER_DATA)
3446     0,                                       /* user data                      */
3447     #endif
3448     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3449     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3450     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3451     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3452     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3453     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3454     gx_studio_pixelmap_button_create,        /* create function                */
3455     GX_NULL,                                 /* drawing function override      */
3456     GX_NULL,                                 /* event function override        */
3457     {496, 355, 513, 372},                    /* widget size                    */
3458     &schedule_screen_pixelmap_button_125_1_define, /* next widget definition   */
3459     GX_NULL,                                 /* no child widgets               */
3460     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_124_1), /* control block */
3461     (void *) &schedule_screen_pixelmap_button_124_1_properties /* extended properties */
3462 };
3463 
3464 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_86_1_define =
3465 {
3466     "pixelmap_button_86_1",
3467     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3468     GX_ID_NONE,                              /* widget id                      */
3469     #if defined(GX_WIDGET_USER_DATA)
3470     0,                                       /* user data                      */
3471     #endif
3472     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3473     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3474     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3475     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3476     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3477     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3478     gx_studio_pixelmap_button_create,        /* create function                */
3479     GX_NULL,                                 /* drawing function override      */
3480     GX_NULL,                                 /* event function override        */
3481     {445, 355, 462, 372},                    /* widget size                    */
3482     &schedule_screen_pixelmap_button_124_1_define, /* next widget definition   */
3483     GX_NULL,                                 /* no child widgets               */
3484     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_86_1), /* control block */
3485     (void *) &schedule_screen_pixelmap_button_86_1_properties /* extended properties */
3486 };
3487 
3488 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_85_1_define =
3489 {
3490     "pixelmap_button_85_1",
3491     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3492     GX_ID_NONE,                              /* widget id                      */
3493     #if defined(GX_WIDGET_USER_DATA)
3494     0,                                       /* user data                      */
3495     #endif
3496     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3497     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3498     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3499     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3500     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3501     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3502     gx_studio_pixelmap_button_create,        /* create function                */
3503     GX_NULL,                                 /* drawing function override      */
3504     GX_NULL,                                 /* event function override        */
3505     {421, 355, 438, 372},                    /* widget size                    */
3506     &schedule_screen_pixelmap_button_86_1_define, /* next widget definition    */
3507     GX_NULL,                                 /* no child widgets               */
3508     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_85_1), /* control block */
3509     (void *) &schedule_screen_pixelmap_button_85_1_properties /* extended properties */
3510 };
3511 
3512 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_65_1_define =
3513 {
3514     "pixelmap_button_65_1",
3515     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3516     GX_ID_NONE,                              /* widget id                      */
3517     #if defined(GX_WIDGET_USER_DATA)
3518     0,                                       /* user data                      */
3519     #endif
3520     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3521     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3522     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3523     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3524     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3525     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3526     gx_studio_pixelmap_button_create,        /* create function                */
3527     GX_NULL,                                 /* drawing function override      */
3528     GX_NULL,                                 /* event function override        */
3529     {289, 355, 306, 372},                    /* widget size                    */
3530     &schedule_screen_pixelmap_button_85_1_define, /* next widget definition    */
3531     GX_NULL,                                 /* no child widgets               */
3532     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_65_1), /* control block */
3533     (void *) &schedule_screen_pixelmap_button_65_1_properties /* extended properties */
3534 };
3535 
3536 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_64_1_define =
3537 {
3538     "pixelmap_button_64_1",
3539     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3540     GX_ID_NONE,                              /* widget id                      */
3541     #if defined(GX_WIDGET_USER_DATA)
3542     0,                                       /* user data                      */
3543     #endif
3544     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3545     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3546     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3547     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3548     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3549     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3550     gx_studio_pixelmap_button_create,        /* create function                */
3551     GX_NULL,                                 /* drawing function override      */
3552     GX_NULL,                                 /* event function override        */
3553     {265, 355, 282, 372},                    /* widget size                    */
3554     &schedule_screen_pixelmap_button_65_1_define, /* next widget definition    */
3555     GX_NULL,                                 /* no child widgets               */
3556     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_64_1), /* control block */
3557     (void *) &schedule_screen_pixelmap_button_64_1_properties /* extended properties */
3558 };
3559 
3560 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_38_1_define =
3561 {
3562     "pixelmap_button_38_1",
3563     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3564     GX_ID_NONE,                              /* widget id                      */
3565     #if defined(GX_WIDGET_USER_DATA)
3566     0,                                       /* user data                      */
3567     #endif
3568     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3569     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3570     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3571     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3572     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3573     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3574     gx_studio_pixelmap_button_create,        /* create function                */
3575     GX_NULL,                                 /* drawing function override      */
3576     GX_NULL,                                 /* event function override        */
3577     {212, 355, 229, 372},                    /* widget size                    */
3578     &schedule_screen_pixelmap_button_64_1_define, /* next widget definition    */
3579     GX_NULL,                                 /* no child widgets               */
3580     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_38_1), /* control block */
3581     (void *) &schedule_screen_pixelmap_button_38_1_properties /* extended properties */
3582 };
3583 
3584 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_37_1_define =
3585 {
3586     "pixelmap_button_37_1",
3587     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3588     GX_ID_NONE,                              /* widget id                      */
3589     #if defined(GX_WIDGET_USER_DATA)
3590     0,                                       /* user data                      */
3591     #endif
3592     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3593     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3594     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3595     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3596     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3597     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3598     gx_studio_pixelmap_button_create,        /* create function                */
3599     GX_NULL,                                 /* drawing function override      */
3600     GX_NULL,                                 /* event function override        */
3601     {187, 355, 204, 372},                    /* widget size                    */
3602     &schedule_screen_pixelmap_button_38_1_define, /* next widget definition    */
3603     GX_NULL,                                 /* no child widgets               */
3604     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_37_1), /* control block */
3605     (void *) &schedule_screen_pixelmap_button_37_1_properties /* extended properties */
3606 };
3607 
3608 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_17_1_define =
3609 {
3610     "pixelmap_button_17_1",
3611     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3612     GX_ID_NONE,                              /* widget id                      */
3613     #if defined(GX_WIDGET_USER_DATA)
3614     0,                                       /* user data                      */
3615     #endif
3616     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3617     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3618     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3619     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3620     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3621     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3622     gx_studio_pixelmap_button_create,        /* create function                */
3623     GX_NULL,                                 /* drawing function override      */
3624     GX_NULL,                                 /* event function override        */
3625     {134, 355, 151, 372},                    /* widget size                    */
3626     &schedule_screen_pixelmap_button_37_1_define, /* next widget definition    */
3627     GX_NULL,                                 /* no child widgets               */
3628     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_17_1), /* control block */
3629     (void *) &schedule_screen_pixelmap_button_17_1_properties /* extended properties */
3630 };
3631 
3632 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_140_1_define =
3633 {
3634     "pixelmap_button_140_1",
3635     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3636     GX_ID_NONE,                              /* widget id                      */
3637     #if defined(GX_WIDGET_USER_DATA)
3638     0,                                       /* user data                      */
3639     #endif
3640     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3641     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3642     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3643     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3644     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3645     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3646     gx_studio_pixelmap_button_create,        /* create function                */
3647     GX_NULL,                                 /* drawing function override      */
3648     GX_NULL,                                 /* event function override        */
3649     {598, 386, 615, 403},                    /* widget size                    */
3650     GX_NULL,                                 /* no next widget                 */
3651     GX_NULL,                                 /* no child widgets               */
3652     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_140_1), /* control block */
3653     (void *) &schedule_screen_pixelmap_button_140_1_properties /* extended properties */
3654 };
3655 
3656 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_128_1_define =
3657 {
3658     "pixelmap_button_128_1",
3659     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3660     GX_ID_NONE,                              /* widget id                      */
3661     #if defined(GX_WIDGET_USER_DATA)
3662     0,                                       /* user data                      */
3663     #endif
3664     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3665     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3666     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3667     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3668     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3669     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3670     gx_studio_pixelmap_button_create,        /* create function                */
3671     GX_NULL,                                 /* drawing function override      */
3672     GX_NULL,                                 /* event function override        */
3673     {521, 386, 538, 403},                    /* widget size                    */
3674     &schedule_screen_pixelmap_button_140_1_define, /* next widget definition   */
3675     GX_NULL,                                 /* no child widgets               */
3676     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_128_1), /* control block */
3677     (void *) &schedule_screen_pixelmap_button_128_1_properties /* extended properties */
3678 };
3679 
3680 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_127_1_define =
3681 {
3682     "pixelmap_button_127_1",
3683     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3684     GX_ID_NONE,                              /* widget id                      */
3685     #if defined(GX_WIDGET_USER_DATA)
3686     0,                                       /* user data                      */
3687     #endif
3688     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3689     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3690     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3691     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3692     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3693     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3694     gx_studio_pixelmap_button_create,        /* create function                */
3695     GX_NULL,                                 /* drawing function override      */
3696     GX_NULL,                                 /* event function override        */
3697     {497, 386, 514, 403},                    /* widget size                    */
3698     &schedule_screen_pixelmap_button_128_1_define, /* next widget definition   */
3699     GX_NULL,                                 /* no child widgets               */
3700     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_127_1), /* control block */
3701     (void *) &schedule_screen_pixelmap_button_127_1_properties /* extended properties */
3702 };
3703 
3704 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_89_1_define =
3705 {
3706     "pixelmap_button_89_1",
3707     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3708     GX_ID_NONE,                              /* widget id                      */
3709     #if defined(GX_WIDGET_USER_DATA)
3710     0,                                       /* user data                      */
3711     #endif
3712     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3713     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3714     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3715     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3716     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3717     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3718     gx_studio_pixelmap_button_create,        /* create function                */
3719     GX_NULL,                                 /* drawing function override      */
3720     GX_NULL,                                 /* event function override        */
3721     {445, 386, 462, 403},                    /* widget size                    */
3722     &schedule_screen_pixelmap_button_127_1_define, /* next widget definition   */
3723     GX_NULL,                                 /* no child widgets               */
3724     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_89_1), /* control block */
3725     (void *) &schedule_screen_pixelmap_button_89_1_properties /* extended properties */
3726 };
3727 
3728 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_68_1_define =
3729 {
3730     "pixelmap_button_68_1",
3731     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3732     GX_ID_NONE,                              /* widget id                      */
3733     #if defined(GX_WIDGET_USER_DATA)
3734     0,                                       /* user data                      */
3735     #endif
3736     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3737     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3738     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3739     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3740     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3741     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3742     gx_studio_pixelmap_button_create,        /* create function                */
3743     GX_NULL,                                 /* drawing function override      */
3744     GX_NULL,                                 /* event function override        */
3745     {290, 386, 307, 403},                    /* widget size                    */
3746     &schedule_screen_pixelmap_button_89_1_define, /* next widget definition    */
3747     GX_NULL,                                 /* no child widgets               */
3748     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_68_1), /* control block */
3749     (void *) &schedule_screen_pixelmap_button_68_1_properties /* extended properties */
3750 };
3751 
3752 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_67_1_define =
3753 {
3754     "pixelmap_button_67_1",
3755     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3756     GX_ID_NONE,                              /* widget id                      */
3757     #if defined(GX_WIDGET_USER_DATA)
3758     0,                                       /* user data                      */
3759     #endif
3760     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3761     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3762     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3763     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3764     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3765     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3766     gx_studio_pixelmap_button_create,        /* create function                */
3767     GX_NULL,                                 /* drawing function override      */
3768     GX_NULL,                                 /* event function override        */
3769     {266, 386, 283, 403},                    /* widget size                    */
3770     &schedule_screen_pixelmap_button_68_1_define, /* next widget definition    */
3771     GX_NULL,                                 /* no child widgets               */
3772     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_67_1), /* control block */
3773     (void *) &schedule_screen_pixelmap_button_67_1_properties /* extended properties */
3774 };
3775 
3776 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_41_1_define =
3777 {
3778     "pixelmap_button_41_1",
3779     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3780     GX_ID_NONE,                              /* widget id                      */
3781     #if defined(GX_WIDGET_USER_DATA)
3782     0,                                       /* user data                      */
3783     #endif
3784     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3785     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3786     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3787     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3788     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3789     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3790     gx_studio_pixelmap_button_create,        /* create function                */
3791     GX_NULL,                                 /* drawing function override      */
3792     GX_NULL,                                 /* event function override        */
3793     {213, 386, 230, 403},                    /* widget size                    */
3794     &schedule_screen_pixelmap_button_67_1_define, /* next widget definition    */
3795     GX_NULL,                                 /* no child widgets               */
3796     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_41_1), /* control block */
3797     (void *) &schedule_screen_pixelmap_button_41_1_properties /* extended properties */
3798 };
3799 
3800 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_20_1_define =
3801 {
3802     "pixelmap_button_20_1",
3803     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3804     GX_ID_NONE,                              /* widget id                      */
3805     #if defined(GX_WIDGET_USER_DATA)
3806     0,                                       /* user data                      */
3807     #endif
3808     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3809     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3810     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3811     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3812     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3813     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3814     gx_studio_pixelmap_button_create,        /* create function                */
3815     GX_NULL,                                 /* drawing function override      */
3816     GX_NULL,                                 /* event function override        */
3817     {134, 387, 151, 404},                    /* widget size                    */
3818     &schedule_screen_pixelmap_button_41_1_define, /* next widget definition    */
3819     GX_NULL,                                 /* no child widgets               */
3820     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_20_1), /* control block */
3821     (void *) &schedule_screen_pixelmap_button_20_1_properties /* extended properties */
3822 };
3823 
3824 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_92_1_define =
3825 {
3826     "pixelmap_button_92_1",
3827     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3828     GX_ID_NONE,                              /* widget id                      */
3829     #if defined(GX_WIDGET_USER_DATA)
3830     0,                                       /* user data                      */
3831     #endif
3832     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3833     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3834     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3835     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3836     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3837     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3838     gx_studio_pixelmap_button_create,        /* create function                */
3839     GX_NULL,                                 /* drawing function override      */
3840     GX_NULL,                                 /* event function override        */
3841     {444, 417, 461, 434},                    /* widget size                    */
3842     GX_NULL,                                 /* no next widget                 */
3843     GX_NULL,                                 /* no child widgets               */
3844     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_92_1), /* control block */
3845     (void *) &schedule_screen_pixelmap_button_92_1_properties /* extended properties */
3846 };
3847 
3848 GX_CONST GX_STUDIO_WIDGET schedule_screen_pixelmap_button_44_1_define =
3849 {
3850     "pixelmap_button_44_1",
3851     GX_TYPE_PIXELMAP_BUTTON,                 /* widget type                    */
3852     GX_ID_NONE,                              /* widget id                      */
3853     #if defined(GX_WIDGET_USER_DATA)
3854     0,                                       /* user data                      */
3855     #endif
3856     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
3857     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3858     sizeof(GX_PIXELMAP_BUTTON),              /* control block size             */
3859     GX_COLOR_ID_BTN_LOWER,                   /* normal color id                */
3860     GX_COLOR_ID_BTN_UPPER,                   /* selected color id              */
3861     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3862     gx_studio_pixelmap_button_create,        /* create function                */
3863     GX_NULL,                                 /* drawing function override      */
3864     GX_NULL,                                 /* event function override        */
3865     {212, 417, 229, 434},                    /* widget size                    */
3866     &schedule_screen_pixelmap_button_92_1_define, /* next widget definition    */
3867     GX_NULL,                                 /* no child widgets               */
3868     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_pixelmap_button_44_1), /* control block */
3869     (void *) &schedule_screen_pixelmap_button_44_1_properties /* extended properties */
3870 };
3871 
3872 GX_CONST GX_STUDIO_WIDGET schedule_screen_r10_win_define =
3873 {
3874     "r10_win",
3875     GX_TYPE_WINDOW,                          /* widget type                    */
3876     GX_ID_NONE,                              /* widget id                      */
3877     #if defined(GX_WIDGET_USER_DATA)
3878     0,                                       /* user data                      */
3879     #endif
3880     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED,   /* style flags */
3881     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3882     sizeof(GX_WINDOW),                       /* control block size             */
3883     GX_COLOR_ID_WINDOW_FILL,                 /* normal color id                */
3884     GX_COLOR_ID_WINDOW_FILL,                 /* selected color id              */
3885     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3886     gx_studio_window_create,                 /* create function                */
3887     GX_NULL,                                 /* drawing function override      */
3888     GX_NULL,                                 /* event function override        */
3889     {82, 411, 618, 441},                     /* widget size                    */
3890     GX_NULL,                                 /* no next widget                 */
3891     &schedule_screen_pixelmap_button_44_1_define, /* child widget definition   */
3892     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r10_win), /* control block */
3893     (void *) &schedule_screen_r10_win_properties /* extended properties        */
3894 };
3895 
3896 GX_CONST GX_STUDIO_WIDGET schedule_screen_r9_win_define =
3897 {
3898     "r9_win",
3899     GX_TYPE_WINDOW,                          /* widget type                    */
3900     GX_ID_NONE,                              /* widget id                      */
3901     #if defined(GX_WIDGET_USER_DATA)
3902     0,                                       /* user data                      */
3903     #endif
3904     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED,   /* style flags */
3905     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3906     sizeof(GX_WINDOW),                       /* control block size             */
3907     GX_COLOR_ID_WINDOW_FILL,                 /* normal color id                */
3908     GX_COLOR_ID_WINDOW_FILL,                 /* selected color id              */
3909     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3910     gx_studio_window_create,                 /* create function                */
3911     GX_NULL,                                 /* drawing function override      */
3912     GX_NULL,                                 /* event function override        */
3913     {82, 380, 618, 410},                     /* widget size                    */
3914     &schedule_screen_r10_win_define,         /* next widget definition         */
3915     &schedule_screen_pixelmap_button_20_1_define, /* child widget definition   */
3916     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r9_win), /* control block */
3917     (void *) &schedule_screen_r9_win_properties /* extended properties         */
3918 };
3919 
3920 GX_CONST GX_STUDIO_WIDGET schedule_screen_r8_win_define =
3921 {
3922     "r8_win",
3923     GX_TYPE_WINDOW,                          /* widget type                    */
3924     GX_ID_NONE,                              /* widget id                      */
3925     #if defined(GX_WIDGET_USER_DATA)
3926     0,                                       /* user data                      */
3927     #endif
3928     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED,   /* style flags */
3929     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3930     sizeof(GX_WINDOW),                       /* control block size             */
3931     GX_COLOR_ID_WINDOW_FILL,                 /* normal color id                */
3932     GX_COLOR_ID_WINDOW_FILL,                 /* selected color id              */
3933     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3934     gx_studio_window_create,                 /* create function                */
3935     GX_NULL,                                 /* drawing function override      */
3936     GX_NULL,                                 /* event function override        */
3937     {82, 349, 618, 379},                     /* widget size                    */
3938     &schedule_screen_r9_win_define,          /* next widget definition         */
3939     &schedule_screen_pixelmap_button_17_1_define, /* child widget definition   */
3940     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r8_win), /* control block */
3941     (void *) &schedule_screen_r8_win_properties /* extended properties         */
3942 };
3943 
3944 GX_CONST GX_STUDIO_WIDGET schedule_screen_r7_win_define =
3945 {
3946     "r7_win",
3947     GX_TYPE_WINDOW,                          /* widget type                    */
3948     GX_ID_NONE,                              /* widget id                      */
3949     #if defined(GX_WIDGET_USER_DATA)
3950     0,                                       /* user data                      */
3951     #endif
3952     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED,   /* style flags */
3953     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3954     sizeof(GX_WINDOW),                       /* control block size             */
3955     GX_COLOR_ID_WINDOW_FILL,                 /* normal color id                */
3956     GX_COLOR_ID_WINDOW_FILL,                 /* selected color id              */
3957     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3958     gx_studio_window_create,                 /* create function                */
3959     GX_NULL,                                 /* drawing function override      */
3960     GX_NULL,                                 /* event function override        */
3961     {82, 318, 618, 348},                     /* widget size                    */
3962     &schedule_screen_r8_win_define,          /* next widget definition         */
3963     &schedule_screen_pixelmap_button_13_1_define, /* child widget definition   */
3964     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r7_win), /* control block */
3965     (void *) &schedule_screen_r7_win_properties /* extended properties         */
3966 };
3967 
3968 GX_CONST GX_STUDIO_WIDGET schedule_screen_r6_win_define =
3969 {
3970     "r6_win",
3971     GX_TYPE_WINDOW,                          /* widget type                    */
3972     GX_ID_NONE,                              /* widget id                      */
3973     #if defined(GX_WIDGET_USER_DATA)
3974     0,                                       /* user data                      */
3975     #endif
3976     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED,   /* style flags */
3977     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
3978     sizeof(GX_WINDOW),                       /* control block size             */
3979     GX_COLOR_ID_WINDOW_FILL,                 /* normal color id                */
3980     GX_COLOR_ID_WINDOW_FILL,                 /* selected color id              */
3981     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
3982     gx_studio_window_create,                 /* create function                */
3983     GX_NULL,                                 /* drawing function override      */
3984     GX_NULL,                                 /* event function override        */
3985     {82, 287, 618, 317},                     /* widget size                    */
3986     &schedule_screen_r7_win_define,          /* next widget definition         */
3987     &schedule_screen_pixelmap_button_18_define, /* child widget definition     */
3988     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r6_win), /* control block */
3989     (void *) &schedule_screen_r6_win_properties /* extended properties         */
3990 };
3991 
3992 GX_CONST GX_STUDIO_WIDGET schedule_screen_r5_win_define =
3993 {
3994     "r5_win",
3995     GX_TYPE_WINDOW,                          /* widget type                    */
3996     GX_ID_NONE,                              /* widget id                      */
3997     #if defined(GX_WIDGET_USER_DATA)
3998     0,                                       /* user data                      */
3999     #endif
4000     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED,   /* style flags */
4001     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
4002     sizeof(GX_WINDOW),                       /* control block size             */
4003     GX_COLOR_ID_WINDOW_FILL,                 /* normal color id                */
4004     GX_COLOR_ID_WINDOW_FILL,                 /* selected color id              */
4005     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4006     gx_studio_window_create,                 /* create function                */
4007     GX_NULL,                                 /* drawing function override      */
4008     GX_NULL,                                 /* event function override        */
4009     {83, 256, 619, 286},                     /* widget size                    */
4010     &schedule_screen_r6_win_define,          /* next widget definition         */
4011     &schedule_screen_active_circle_define,   /* child widget definition        */
4012     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r5_win), /* control block */
4013     (void *) &schedule_screen_r5_win_properties /* extended properties         */
4014 };
4015 
4016 GX_CONST GX_STUDIO_WIDGET schedule_screen_r4_win_define =
4017 {
4018     "r4_win",
4019     GX_TYPE_WINDOW,                          /* widget type                    */
4020     GX_ID_NONE,                              /* widget id                      */
4021     #if defined(GX_WIDGET_USER_DATA)
4022     0,                                       /* user data                      */
4023     #endif
4024     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED,   /* style flags */
4025     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
4026     sizeof(GX_WINDOW),                       /* control block size             */
4027     GX_COLOR_ID_WINDOW_FILL,                 /* normal color id                */
4028     GX_COLOR_ID_WINDOW_FILL,                 /* selected color id              */
4029     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4030     gx_studio_window_create,                 /* create function                */
4031     GX_NULL,                                 /* drawing function override      */
4032     GX_NULL,                                 /* event function override        */
4033     {83, 225, 619, 255},                     /* widget size                    */
4034     &schedule_screen_r5_win_define,          /* next widget definition         */
4035     &schedule_screen_pixelmap_button_29_1_define, /* child widget definition   */
4036     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r4_win), /* control block */
4037     (void *) &schedule_screen_r4_win_properties /* extended properties         */
4038 };
4039 
4040 GX_CONST GX_STUDIO_WIDGET schedule_screen_r3_win_define =
4041 {
4042     "r3_win",
4043     GX_TYPE_WINDOW,                          /* widget type                    */
4044     GX_ID_NONE,                              /* widget id                      */
4045     #if defined(GX_WIDGET_USER_DATA)
4046     0,                                       /* user data                      */
4047     #endif
4048     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED,   /* style flags */
4049     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
4050     sizeof(GX_WINDOW),                       /* control block size             */
4051     GX_COLOR_ID_WINDOW_FILL,                 /* normal color id                */
4052     GX_COLOR_ID_WINDOW_FILL,                 /* selected color id              */
4053     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4054     gx_studio_window_create,                 /* create function                */
4055     GX_NULL,                                 /* drawing function override      */
4056     GX_NULL,                                 /* event function override        */
4057     {82, 194, 618, 224},                     /* widget size                    */
4058     &schedule_screen_r4_win_define,          /* next widget definition         */
4059     &schedule_screen_pixelmap_button_16_define, /* child widget definition     */
4060     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r3_win), /* control block */
4061     (void *) &schedule_screen_r3_win_properties /* extended properties         */
4062 };
4063 
4064 GX_CONST GX_STUDIO_WIDGET schedule_screen_r2_win_define =
4065 {
4066     "r2_win",
4067     GX_TYPE_WINDOW,                          /* widget type                    */
4068     GX_ID_NONE,                              /* widget id                      */
4069     #if defined(GX_WIDGET_USER_DATA)
4070     0,                                       /* user data                      */
4071     #endif
4072     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED,   /* style flags */
4073     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
4074     sizeof(GX_WINDOW),                       /* control block size             */
4075     GX_COLOR_ID_WINDOW_FILL,                 /* normal color id                */
4076     GX_COLOR_ID_WINDOW_FILL,                 /* selected color id              */
4077     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4078     gx_studio_window_create,                 /* create function                */
4079     GX_NULL,                                 /* drawing function override      */
4080     GX_NULL,                                 /* event function override        */
4081     {83, 163, 619, 193},                     /* widget size                    */
4082     &schedule_screen_r3_win_define,          /* next widget definition         */
4083     &schedule_screen_pixelmap_button_12_define, /* child widget definition     */
4084     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r2_win), /* control block */
4085     (void *) &schedule_screen_r2_win_properties /* extended properties         */
4086 };
4087 
4088 GX_CONST GX_STUDIO_WIDGET schedule_screen_r1_win_define =
4089 {
4090     "r1_win",
4091     GX_TYPE_WINDOW,                          /* widget type                    */
4092     GX_ID_NONE,                              /* widget id                      */
4093     #if defined(GX_WIDGET_USER_DATA)
4094     0,                                       /* user data                      */
4095     #endif
4096     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED,   /* style flags */
4097     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
4098     sizeof(GX_WINDOW),                       /* control block size             */
4099     GX_COLOR_ID_WINDOW_FILL,                 /* normal color id                */
4100     GX_COLOR_ID_WINDOW_FILL,                 /* selected color id              */
4101     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4102     gx_studio_window_create,                 /* create function                */
4103     GX_NULL,                                 /* drawing function override      */
4104     GX_NULL,                                 /* event function override        */
4105     {83, 132, 619, 162},                     /* widget size                    */
4106     &schedule_screen_r2_win_define,          /* next widget definition         */
4107     &schedule_screen_pixelmap_button_3_define, /* child widget definition      */
4108     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r1_win), /* control block */
4109     (void *) &schedule_screen_r1_win_properties /* extended properties         */
4110 };
4111 
4112 GX_CONST GX_STUDIO_WIDGET schedule_screen_current_time_define =
4113 {
4114     "current_time",
4115     GX_TYPE_ICON,                            /* widget type                    */
4116     GX_ID_NONE,                              /* widget id                      */
4117     #if defined(GX_WIDGET_USER_DATA)
4118     0,                                       /* user data                      */
4119     #endif
4120     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP,   /* style flags */
4121     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
4122     sizeof(GX_ICON),                         /* control block size             */
4123     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4124     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4125     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4126     gx_studio_icon_create,                   /* create function                */
4127     GX_NULL,                                 /* drawing function override      */
4128     GX_NULL,                                 /* event function override        */
4129     {160, 232, 205, 254},                    /* widget size                    */
4130     &schedule_screen_r1_win_define,          /* next widget definition         */
4131     &schedule_screen_hour_define,            /* child widget definition        */
4132     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_current_time), /* control block */
4133     (void *) &schedule_screen_current_time_properties /* extended properties   */
4134 };
4135 
4136 GX_CONST GX_STUDIO_WIDGET schedule_screen_r11_am_pm_define =
4137 {
4138     "r11_am_pm",
4139     GX_TYPE_PROMPT,                          /* widget type                    */
4140     GX_ID_NONE,                              /* widget id                      */
4141     #if defined(GX_WIDGET_USER_DATA)
4142     0,                                       /* user data                      */
4143     #endif
4144     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4145     0,                                       /* status flags                   */
4146     sizeof(GX_PROMPT),                       /* control block size             */
4147     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4148     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4149     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4150     gx_studio_prompt_create,                 /* create function                */
4151     GX_NULL,                                 /* drawing function override      */
4152     GX_NULL,                                 /* event function override        */
4153     {44, 431, 66, 448},                      /* widget size                    */
4154     &schedule_screen_current_time_define,    /* next widget definition         */
4155     GX_NULL,                                 /* no child widgets               */
4156     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r11_am_pm), /* control block */
4157     (void *) &schedule_screen_r11_am_pm_properties /* extended properties      */
4158 };
4159 
4160 GX_CONST GX_STUDIO_WIDGET schedule_screen_r11_hour_define =
4161 {
4162     "r11_hour",
4163     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
4164     GX_ID_NONE,                              /* widget id                      */
4165     #if defined(GX_WIDGET_USER_DATA)
4166     0,                                       /* user data                      */
4167     #endif
4168     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT,   /* style flags */
4169     0,                                       /* status flags                   */
4170     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
4171     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4172     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4173     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4174     gx_studio_numeric_prompt_create,         /* create function                */
4175     GX_NULL,                                 /* drawing function override      */
4176     GX_NULL,                                 /* event function override        */
4177     {23, 431, 40, 448},                      /* widget size                    */
4178     &schedule_screen_r11_am_pm_define,       /* next widget definition         */
4179     GX_NULL,                                 /* no child widgets               */
4180     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r11_hour), /* control block */
4181     (void *) &schedule_screen_r11_hour_properties /* extended properties       */
4182 };
4183 
4184 GX_CONST GX_STUDIO_WIDGET schedule_screen_r10_am_pm_define =
4185 {
4186     "r10_am_pm",
4187     GX_TYPE_PROMPT,                          /* widget type                    */
4188     GX_ID_NONE,                              /* widget id                      */
4189     #if defined(GX_WIDGET_USER_DATA)
4190     0,                                       /* user data                      */
4191     #endif
4192     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4193     0,                                       /* status flags                   */
4194     sizeof(GX_PROMPT),                       /* control block size             */
4195     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4196     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4197     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4198     gx_studio_prompt_create,                 /* create function                */
4199     GX_NULL,                                 /* drawing function override      */
4200     GX_NULL,                                 /* event function override        */
4201     {44, 400, 66, 417},                      /* widget size                    */
4202     &schedule_screen_r11_hour_define,        /* next widget definition         */
4203     GX_NULL,                                 /* no child widgets               */
4204     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r10_am_pm), /* control block */
4205     (void *) &schedule_screen_r10_am_pm_properties /* extended properties      */
4206 };
4207 
4208 GX_CONST GX_STUDIO_WIDGET schedule_screen_r10_hour_define =
4209 {
4210     "r10_hour",
4211     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
4212     GX_ID_NONE,                              /* widget id                      */
4213     #if defined(GX_WIDGET_USER_DATA)
4214     0,                                       /* user data                      */
4215     #endif
4216     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT,   /* style flags */
4217     0,                                       /* status flags                   */
4218     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
4219     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4220     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4221     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4222     gx_studio_numeric_prompt_create,         /* create function                */
4223     GX_NULL,                                 /* drawing function override      */
4224     GX_NULL,                                 /* event function override        */
4225     {22, 400, 39, 417},                      /* widget size                    */
4226     &schedule_screen_r10_am_pm_define,       /* next widget definition         */
4227     GX_NULL,                                 /* no child widgets               */
4228     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r10_hour), /* control block */
4229     (void *) &schedule_screen_r10_hour_properties /* extended properties       */
4230 };
4231 
4232 GX_CONST GX_STUDIO_WIDGET schedule_screen_r9_am_pm_define =
4233 {
4234     "r9_am_pm",
4235     GX_TYPE_PROMPT,                          /* widget type                    */
4236     GX_ID_NONE,                              /* widget id                      */
4237     #if defined(GX_WIDGET_USER_DATA)
4238     0,                                       /* user data                      */
4239     #endif
4240     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4241     0,                                       /* status flags                   */
4242     sizeof(GX_PROMPT),                       /* control block size             */
4243     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4244     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4245     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4246     gx_studio_prompt_create,                 /* create function                */
4247     GX_NULL,                                 /* drawing function override      */
4248     GX_NULL,                                 /* event function override        */
4249     {44, 369, 66, 386},                      /* widget size                    */
4250     &schedule_screen_r10_hour_define,        /* next widget definition         */
4251     GX_NULL,                                 /* no child widgets               */
4252     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r9_am_pm), /* control block */
4253     (void *) &schedule_screen_r9_am_pm_properties /* extended properties       */
4254 };
4255 
4256 GX_CONST GX_STUDIO_WIDGET schedule_screen_r9_hour_define =
4257 {
4258     "r9_hour",
4259     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
4260     GX_ID_NONE,                              /* widget id                      */
4261     #if defined(GX_WIDGET_USER_DATA)
4262     0,                                       /* user data                      */
4263     #endif
4264     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT,   /* style flags */
4265     0,                                       /* status flags                   */
4266     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
4267     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4268     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4269     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4270     gx_studio_numeric_prompt_create,         /* create function                */
4271     GX_NULL,                                 /* drawing function override      */
4272     GX_NULL,                                 /* event function override        */
4273     {21, 369, 38, 386},                      /* widget size                    */
4274     &schedule_screen_r9_am_pm_define,        /* next widget definition         */
4275     GX_NULL,                                 /* no child widgets               */
4276     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r9_hour), /* control block */
4277     (void *) &schedule_screen_r9_hour_properties /* extended properties        */
4278 };
4279 
4280 GX_CONST GX_STUDIO_WIDGET schedule_screen_r8_am_pm_define =
4281 {
4282     "r8_am_pm",
4283     GX_TYPE_PROMPT,                          /* widget type                    */
4284     GX_ID_NONE,                              /* widget id                      */
4285     #if defined(GX_WIDGET_USER_DATA)
4286     0,                                       /* user data                      */
4287     #endif
4288     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4289     0,                                       /* status flags                   */
4290     sizeof(GX_PROMPT),                       /* control block size             */
4291     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4292     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4293     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4294     gx_studio_prompt_create,                 /* create function                */
4295     GX_NULL,                                 /* drawing function override      */
4296     GX_NULL,                                 /* event function override        */
4297     {43, 338, 65, 355},                      /* widget size                    */
4298     &schedule_screen_r9_hour_define,         /* next widget definition         */
4299     GX_NULL,                                 /* no child widgets               */
4300     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r8_am_pm), /* control block */
4301     (void *) &schedule_screen_r8_am_pm_properties /* extended properties       */
4302 };
4303 
4304 GX_CONST GX_STUDIO_WIDGET schedule_screen_r8_hour_define =
4305 {
4306     "r8_hour",
4307     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
4308     GX_ID_NONE,                              /* widget id                      */
4309     #if defined(GX_WIDGET_USER_DATA)
4310     0,                                       /* user data                      */
4311     #endif
4312     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT,   /* style flags */
4313     0,                                       /* status flags                   */
4314     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
4315     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4316     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4317     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4318     gx_studio_numeric_prompt_create,         /* create function                */
4319     GX_NULL,                                 /* drawing function override      */
4320     GX_NULL,                                 /* event function override        */
4321     {22, 338, 39, 355},                      /* widget size                    */
4322     &schedule_screen_r8_am_pm_define,        /* next widget definition         */
4323     GX_NULL,                                 /* no child widgets               */
4324     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r8_hour), /* control block */
4325     (void *) &schedule_screen_r8_hour_properties /* extended properties        */
4326 };
4327 
4328 GX_CONST GX_STUDIO_WIDGET schedule_screen_r7_am_pm_define =
4329 {
4330     "r7_am_pm",
4331     GX_TYPE_PROMPT,                          /* widget type                    */
4332     GX_ID_NONE,                              /* widget id                      */
4333     #if defined(GX_WIDGET_USER_DATA)
4334     0,                                       /* user data                      */
4335     #endif
4336     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4337     0,                                       /* status flags                   */
4338     sizeof(GX_PROMPT),                       /* control block size             */
4339     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4340     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4341     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4342     gx_studio_prompt_create,                 /* create function                */
4343     GX_NULL,                                 /* drawing function override      */
4344     GX_NULL,                                 /* event function override        */
4345     {44, 307, 66, 324},                      /* widget size                    */
4346     &schedule_screen_r8_hour_define,         /* next widget definition         */
4347     GX_NULL,                                 /* no child widgets               */
4348     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r7_am_pm), /* control block */
4349     (void *) &schedule_screen_r7_am_pm_properties /* extended properties       */
4350 };
4351 
4352 GX_CONST GX_STUDIO_WIDGET schedule_screen_r7_hour_define =
4353 {
4354     "r7_hour",
4355     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
4356     GX_ID_NONE,                              /* widget id                      */
4357     #if defined(GX_WIDGET_USER_DATA)
4358     0,                                       /* user data                      */
4359     #endif
4360     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT,   /* style flags */
4361     0,                                       /* status flags                   */
4362     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
4363     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4364     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4365     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4366     gx_studio_numeric_prompt_create,         /* create function                */
4367     GX_NULL,                                 /* drawing function override      */
4368     GX_NULL,                                 /* event function override        */
4369     {22, 307, 39, 324},                      /* widget size                    */
4370     &schedule_screen_r7_am_pm_define,        /* next widget definition         */
4371     GX_NULL,                                 /* no child widgets               */
4372     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r7_hour), /* control block */
4373     (void *) &schedule_screen_r7_hour_properties /* extended properties        */
4374 };
4375 
4376 GX_CONST GX_STUDIO_WIDGET schedule_screen_r6_am_pm_define =
4377 {
4378     "r6_am_pm",
4379     GX_TYPE_PROMPT,                          /* widget type                    */
4380     GX_ID_NONE,                              /* widget id                      */
4381     #if defined(GX_WIDGET_USER_DATA)
4382     0,                                       /* user data                      */
4383     #endif
4384     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4385     0,                                       /* status flags                   */
4386     sizeof(GX_PROMPT),                       /* control block size             */
4387     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4388     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4389     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4390     gx_studio_prompt_create,                 /* create function                */
4391     GX_NULL,                                 /* drawing function override      */
4392     GX_NULL,                                 /* event function override        */
4393     {44, 276, 66, 293},                      /* widget size                    */
4394     &schedule_screen_r7_hour_define,         /* next widget definition         */
4395     GX_NULL,                                 /* no child widgets               */
4396     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r6_am_pm), /* control block */
4397     (void *) &schedule_screen_r6_am_pm_properties /* extended properties       */
4398 };
4399 
4400 GX_CONST GX_STUDIO_WIDGET schedule_screen_r6_hour_define =
4401 {
4402     "r6_hour",
4403     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
4404     GX_ID_NONE,                              /* widget id                      */
4405     #if defined(GX_WIDGET_USER_DATA)
4406     0,                                       /* user data                      */
4407     #endif
4408     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT,   /* style flags */
4409     0,                                       /* status flags                   */
4410     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
4411     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4412     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4413     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4414     gx_studio_numeric_prompt_create,         /* create function                */
4415     GX_NULL,                                 /* drawing function override      */
4416     GX_NULL,                                 /* event function override        */
4417     {22, 276, 39, 293},                      /* widget size                    */
4418     &schedule_screen_r6_am_pm_define,        /* next widget definition         */
4419     GX_NULL,                                 /* no child widgets               */
4420     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r6_hour), /* control block */
4421     (void *) &schedule_screen_r6_hour_properties /* extended properties        */
4422 };
4423 
4424 GX_CONST GX_STUDIO_WIDGET schedule_screen_r5_am_pm_define =
4425 {
4426     "r5_am_pm",
4427     GX_TYPE_PROMPT,                          /* widget type                    */
4428     GX_ID_NONE,                              /* widget id                      */
4429     #if defined(GX_WIDGET_USER_DATA)
4430     0,                                       /* user data                      */
4431     #endif
4432     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4433     0,                                       /* status flags                   */
4434     sizeof(GX_PROMPT),                       /* control block size             */
4435     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4436     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4437     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4438     gx_studio_prompt_create,                 /* create function                */
4439     GX_NULL,                                 /* drawing function override      */
4440     GX_NULL,                                 /* event function override        */
4441     {44, 245, 66, 262},                      /* widget size                    */
4442     &schedule_screen_r6_hour_define,         /* next widget definition         */
4443     GX_NULL,                                 /* no child widgets               */
4444     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r5_am_pm), /* control block */
4445     (void *) &schedule_screen_r5_am_pm_properties /* extended properties       */
4446 };
4447 
4448 GX_CONST GX_STUDIO_WIDGET schedule_screen_r5_hour_define =
4449 {
4450     "r5_hour",
4451     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
4452     GX_ID_NONE,                              /* widget id                      */
4453     #if defined(GX_WIDGET_USER_DATA)
4454     0,                                       /* user data                      */
4455     #endif
4456     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT,   /* style flags */
4457     0,                                       /* status flags                   */
4458     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
4459     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4460     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4461     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4462     gx_studio_numeric_prompt_create,         /* create function                */
4463     GX_NULL,                                 /* drawing function override      */
4464     GX_NULL,                                 /* event function override        */
4465     {22, 245, 39, 262},                      /* widget size                    */
4466     &schedule_screen_r5_am_pm_define,        /* next widget definition         */
4467     GX_NULL,                                 /* no child widgets               */
4468     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r5_hour), /* control block */
4469     (void *) &schedule_screen_r5_hour_properties /* extended properties        */
4470 };
4471 
4472 GX_CONST GX_STUDIO_WIDGET schedule_screen_r4_am_pm_define =
4473 {
4474     "r4_am_pm",
4475     GX_TYPE_PROMPT,                          /* widget type                    */
4476     GX_ID_NONE,                              /* widget id                      */
4477     #if defined(GX_WIDGET_USER_DATA)
4478     0,                                       /* user data                      */
4479     #endif
4480     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4481     0,                                       /* status flags                   */
4482     sizeof(GX_PROMPT),                       /* control block size             */
4483     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4484     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4485     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4486     gx_studio_prompt_create,                 /* create function                */
4487     GX_NULL,                                 /* drawing function override      */
4488     GX_NULL,                                 /* event function override        */
4489     {44, 213, 66, 230},                      /* widget size                    */
4490     &schedule_screen_r5_hour_define,         /* next widget definition         */
4491     GX_NULL,                                 /* no child widgets               */
4492     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r4_am_pm), /* control block */
4493     (void *) &schedule_screen_r4_am_pm_properties /* extended properties       */
4494 };
4495 
4496 GX_CONST GX_STUDIO_WIDGET schedule_screen_r4_hour_define =
4497 {
4498     "r4_hour",
4499     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
4500     GX_ID_NONE,                              /* widget id                      */
4501     #if defined(GX_WIDGET_USER_DATA)
4502     0,                                       /* user data                      */
4503     #endif
4504     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT,   /* style flags */
4505     0,                                       /* status flags                   */
4506     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
4507     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4508     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4509     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4510     gx_studio_numeric_prompt_create,         /* create function                */
4511     GX_NULL,                                 /* drawing function override      */
4512     GX_NULL,                                 /* event function override        */
4513     {22, 214, 39, 231},                      /* widget size                    */
4514     &schedule_screen_r4_am_pm_define,        /* next widget definition         */
4515     GX_NULL,                                 /* no child widgets               */
4516     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r4_hour), /* control block */
4517     (void *) &schedule_screen_r4_hour_properties /* extended properties        */
4518 };
4519 
4520 GX_CONST GX_STUDIO_WIDGET schedule_screen_r3_am_pm_define =
4521 {
4522     "r3_am_pm",
4523     GX_TYPE_PROMPT,                          /* widget type                    */
4524     GX_ID_NONE,                              /* widget id                      */
4525     #if defined(GX_WIDGET_USER_DATA)
4526     0,                                       /* user data                      */
4527     #endif
4528     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4529     0,                                       /* status flags                   */
4530     sizeof(GX_PROMPT),                       /* control block size             */
4531     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4532     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4533     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4534     gx_studio_prompt_create,                 /* create function                */
4535     GX_NULL,                                 /* drawing function override      */
4536     GX_NULL,                                 /* event function override        */
4537     {44, 183, 66, 200},                      /* widget size                    */
4538     &schedule_screen_r4_hour_define,         /* next widget definition         */
4539     GX_NULL,                                 /* no child widgets               */
4540     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r3_am_pm), /* control block */
4541     (void *) &schedule_screen_r3_am_pm_properties /* extended properties       */
4542 };
4543 
4544 GX_CONST GX_STUDIO_WIDGET schedule_screen_r3_hour_define =
4545 {
4546     "r3_hour",
4547     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
4548     GX_ID_NONE,                              /* widget id                      */
4549     #if defined(GX_WIDGET_USER_DATA)
4550     0,                                       /* user data                      */
4551     #endif
4552     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT,   /* style flags */
4553     0,                                       /* status flags                   */
4554     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
4555     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4556     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4557     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4558     gx_studio_numeric_prompt_create,         /* create function                */
4559     GX_NULL,                                 /* drawing function override      */
4560     GX_NULL,                                 /* event function override        */
4561     {22, 183, 39, 200},                      /* widget size                    */
4562     &schedule_screen_r3_am_pm_define,        /* next widget definition         */
4563     GX_NULL,                                 /* no child widgets               */
4564     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r3_hour), /* control block */
4565     (void *) &schedule_screen_r3_hour_properties /* extended properties        */
4566 };
4567 
4568 GX_CONST GX_STUDIO_WIDGET schedule_screen_r2_am_pm_define =
4569 {
4570     "r2_am_pm",
4571     GX_TYPE_PROMPT,                          /* widget type                    */
4572     GX_ID_NONE,                              /* widget id                      */
4573     #if defined(GX_WIDGET_USER_DATA)
4574     0,                                       /* user data                      */
4575     #endif
4576     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4577     0,                                       /* status flags                   */
4578     sizeof(GX_PROMPT),                       /* control block size             */
4579     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4580     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4581     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4582     gx_studio_prompt_create,                 /* create function                */
4583     GX_NULL,                                 /* drawing function override      */
4584     GX_NULL,                                 /* event function override        */
4585     {44, 152, 66, 169},                      /* widget size                    */
4586     &schedule_screen_r3_hour_define,         /* next widget definition         */
4587     GX_NULL,                                 /* no child widgets               */
4588     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r2_am_pm), /* control block */
4589     (void *) &schedule_screen_r2_am_pm_properties /* extended properties       */
4590 };
4591 
4592 GX_CONST GX_STUDIO_WIDGET schedule_screen_r2_hour_define =
4593 {
4594     "r2_hour",
4595     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
4596     GX_ID_NONE,                              /* widget id                      */
4597     #if defined(GX_WIDGET_USER_DATA)
4598     0,                                       /* user data                      */
4599     #endif
4600     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT,   /* style flags */
4601     0,                                       /* status flags                   */
4602     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
4603     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4604     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4605     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4606     gx_studio_numeric_prompt_create,         /* create function                */
4607     GX_NULL,                                 /* drawing function override      */
4608     GX_NULL,                                 /* event function override        */
4609     {22, 152, 39, 169},                      /* widget size                    */
4610     &schedule_screen_r2_am_pm_define,        /* next widget definition         */
4611     GX_NULL,                                 /* no child widgets               */
4612     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r2_hour), /* control block */
4613     (void *) &schedule_screen_r2_hour_properties /* extended properties        */
4614 };
4615 
4616 GX_CONST GX_STUDIO_WIDGET schedule_screen_r1_hour_define =
4617 {
4618     "r1_hour",
4619     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
4620     GX_ID_NONE,                              /* widget id                      */
4621     #if defined(GX_WIDGET_USER_DATA)
4622     0,                                       /* user data                      */
4623     #endif
4624     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT,   /* style flags */
4625     0,                                       /* status flags                   */
4626     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
4627     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4628     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4629     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4630     gx_studio_numeric_prompt_create,         /* create function                */
4631     GX_NULL,                                 /* drawing function override      */
4632     GX_NULL,                                 /* event function override        */
4633     {22, 121, 39, 138},                      /* widget size                    */
4634     &schedule_screen_r2_hour_define,         /* next widget definition         */
4635     GX_NULL,                                 /* no child widgets               */
4636     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r1_hour), /* control block */
4637     (void *) &schedule_screen_r1_hour_properties /* extended properties        */
4638 };
4639 
4640 GX_CONST GX_STUDIO_WIDGET schedule_screen_r1_am_pm_define =
4641 {
4642     "r1_am_pm",
4643     GX_TYPE_PROMPT,                          /* widget type                    */
4644     GX_ID_NONE,                              /* widget id                      */
4645     #if defined(GX_WIDGET_USER_DATA)
4646     0,                                       /* user data                      */
4647     #endif
4648     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4649     0,                                       /* status flags                   */
4650     sizeof(GX_PROMPT),                       /* control block size             */
4651     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4652     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4653     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4654     gx_studio_prompt_create,                 /* create function                */
4655     GX_NULL,                                 /* drawing function override      */
4656     GX_NULL,                                 /* event function override        */
4657     {44, 121, 66, 138},                      /* widget size                    */
4658     &schedule_screen_r1_hour_define,         /* next widget definition         */
4659     GX_NULL,                                 /* no child widgets               */
4660     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_r1_am_pm), /* control block */
4661     (void *) &schedule_screen_r1_am_pm_properties /* extended properties       */
4662 };
4663 
4664 GX_CONST GX_STUDIO_WIDGET schedule_screen_c7_day_define =
4665 {
4666     "c7_day",
4667     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
4668     GX_ID_NONE,                              /* widget id                      */
4669     #if defined(GX_WIDGET_USER_DATA)
4670     0,                                       /* user data                      */
4671     #endif
4672     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4673     0,                                       /* status flags                   */
4674     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
4675     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4676     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4677     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4678     gx_studio_numeric_prompt_create,         /* create function                */
4679     GX_NULL,                                 /* drawing function override      */
4680     GX_NULL,                                 /* event function override        */
4681     {589, 108, 606, 125},                    /* widget size                    */
4682     &schedule_screen_r1_am_pm_define,        /* next widget definition         */
4683     GX_NULL,                                 /* no child widgets               */
4684     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_c7_day), /* control block */
4685     (void *) &schedule_screen_c7_day_properties /* extended properties         */
4686 };
4687 
4688 GX_CONST GX_STUDIO_WIDGET schedule_screen_c6_day_define =
4689 {
4690     "c6_day",
4691     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
4692     GX_ID_NONE,                              /* widget id                      */
4693     #if defined(GX_WIDGET_USER_DATA)
4694     0,                                       /* user data                      */
4695     #endif
4696     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4697     0,                                       /* status flags                   */
4698     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
4699     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4700     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4701     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4702     gx_studio_numeric_prompt_create,         /* create function                */
4703     GX_NULL,                                 /* drawing function override      */
4704     GX_NULL,                                 /* event function override        */
4705     {512, 108, 529, 125},                    /* widget size                    */
4706     &schedule_screen_c7_day_define,          /* next widget definition         */
4707     GX_NULL,                                 /* no child widgets               */
4708     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_c6_day), /* control block */
4709     (void *) &schedule_screen_c6_day_properties /* extended properties         */
4710 };
4711 
4712 GX_CONST GX_STUDIO_WIDGET schedule_screen_c5_day_define =
4713 {
4714     "c5_day",
4715     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
4716     GX_ID_NONE,                              /* widget id                      */
4717     #if defined(GX_WIDGET_USER_DATA)
4718     0,                                       /* user data                      */
4719     #endif
4720     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4721     0,                                       /* status flags                   */
4722     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
4723     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4724     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4725     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4726     gx_studio_numeric_prompt_create,         /* create function                */
4727     GX_NULL,                                 /* drawing function override      */
4728     GX_NULL,                                 /* event function override        */
4729     {435, 108, 452, 125},                    /* widget size                    */
4730     &schedule_screen_c6_day_define,          /* next widget definition         */
4731     GX_NULL,                                 /* no child widgets               */
4732     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_c5_day), /* control block */
4733     (void *) &schedule_screen_c5_day_properties /* extended properties         */
4734 };
4735 
4736 GX_CONST GX_STUDIO_WIDGET schedule_screen_c4_day_define =
4737 {
4738     "c4_day",
4739     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
4740     GX_ID_NONE,                              /* widget id                      */
4741     #if defined(GX_WIDGET_USER_DATA)
4742     0,                                       /* user data                      */
4743     #endif
4744     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4745     0,                                       /* status flags                   */
4746     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
4747     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4748     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4749     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4750     gx_studio_numeric_prompt_create,         /* create function                */
4751     GX_NULL,                                 /* drawing function override      */
4752     GX_NULL,                                 /* event function override        */
4753     {358, 108, 375, 125},                    /* widget size                    */
4754     &schedule_screen_c5_day_define,          /* next widget definition         */
4755     GX_NULL,                                 /* no child widgets               */
4756     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_c4_day), /* control block */
4757     (void *) &schedule_screen_c4_day_properties /* extended properties         */
4758 };
4759 
4760 GX_CONST GX_STUDIO_WIDGET schedule_screen_c3_day_define =
4761 {
4762     "c3_day",
4763     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
4764     GX_ID_NONE,                              /* widget id                      */
4765     #if defined(GX_WIDGET_USER_DATA)
4766     0,                                       /* user data                      */
4767     #endif
4768     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4769     0,                                       /* status flags                   */
4770     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
4771     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4772     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4773     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4774     gx_studio_numeric_prompt_create,         /* create function                */
4775     GX_NULL,                                 /* drawing function override      */
4776     GX_NULL,                                 /* event function override        */
4777     {281, 108, 298, 125},                    /* widget size                    */
4778     &schedule_screen_c4_day_define,          /* next widget definition         */
4779     GX_NULL,                                 /* no child widgets               */
4780     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_c3_day), /* control block */
4781     (void *) &schedule_screen_c3_day_properties /* extended properties         */
4782 };
4783 
4784 GX_CONST GX_STUDIO_WIDGET schedule_screen_c2_day_define =
4785 {
4786     "c2_day",
4787     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
4788     GX_ID_NONE,                              /* widget id                      */
4789     #if defined(GX_WIDGET_USER_DATA)
4790     0,                                       /* user data                      */
4791     #endif
4792     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4793     0,                                       /* status flags                   */
4794     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
4795     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4796     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4797     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4798     gx_studio_numeric_prompt_create,         /* create function                */
4799     GX_NULL,                                 /* drawing function override      */
4800     GX_NULL,                                 /* event function override        */
4801     {204, 108, 221, 125},                    /* widget size                    */
4802     &schedule_screen_c3_day_define,          /* next widget definition         */
4803     GX_NULL,                                 /* no child widgets               */
4804     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_c2_day), /* control block */
4805     (void *) &schedule_screen_c2_day_properties /* extended properties         */
4806 };
4807 
4808 GX_CONST GX_STUDIO_WIDGET schedule_screen_c1_day_define =
4809 {
4810     "c1_day",
4811     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
4812     GX_ID_NONE,                              /* widget id                      */
4813     #if defined(GX_WIDGET_USER_DATA)
4814     0,                                       /* user data                      */
4815     #endif
4816     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4817     0,                                       /* status flags                   */
4818     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
4819     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4820     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4821     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4822     gx_studio_numeric_prompt_create,         /* create function                */
4823     GX_NULL,                                 /* drawing function override      */
4824     GX_NULL,                                 /* event function override        */
4825     {127, 108, 144, 125},                    /* widget size                    */
4826     &schedule_screen_c2_day_define,          /* next widget definition         */
4827     GX_NULL,                                 /* no child widgets               */
4828     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_c1_day), /* control block */
4829     (void *) &schedule_screen_c1_day_properties /* extended properties         */
4830 };
4831 
4832 GX_CONST GX_STUDIO_WIDGET schedule_screen_c7_week_define =
4833 {
4834     "c7_week",
4835     GX_TYPE_PROMPT,                          /* widget type                    */
4836     GX_ID_NONE,                              /* widget id                      */
4837     #if defined(GX_WIDGET_USER_DATA)
4838     0,                                       /* user data                      */
4839     #endif
4840     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4841     0,                                       /* status flags                   */
4842     sizeof(GX_PROMPT),                       /* control block size             */
4843     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4844     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4845     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4846     gx_studio_prompt_create,                 /* create function                */
4847     GX_NULL,                                 /* drawing function override      */
4848     GX_NULL,                                 /* event function override        */
4849     {553, 108, 585, 125},                    /* widget size                    */
4850     &schedule_screen_c1_day_define,          /* next widget definition         */
4851     GX_NULL,                                 /* no child widgets               */
4852     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_c7_week), /* control block */
4853     (void *) &schedule_screen_c7_week_properties /* extended properties        */
4854 };
4855 
4856 GX_CONST GX_STUDIO_WIDGET schedule_screen_c6_week_define =
4857 {
4858     "c6_week",
4859     GX_TYPE_PROMPT,                          /* widget type                    */
4860     GX_ID_NONE,                              /* widget id                      */
4861     #if defined(GX_WIDGET_USER_DATA)
4862     0,                                       /* user data                      */
4863     #endif
4864     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4865     0,                                       /* status flags                   */
4866     sizeof(GX_PROMPT),                       /* control block size             */
4867     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4868     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4869     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4870     gx_studio_prompt_create,                 /* create function                */
4871     GX_NULL,                                 /* drawing function override      */
4872     GX_NULL,                                 /* event function override        */
4873     {476, 108, 508, 125},                    /* widget size                    */
4874     &schedule_screen_c7_week_define,         /* next widget definition         */
4875     GX_NULL,                                 /* no child widgets               */
4876     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_c6_week), /* control block */
4877     (void *) &schedule_screen_c6_week_properties /* extended properties        */
4878 };
4879 
4880 GX_CONST GX_STUDIO_WIDGET schedule_screen_c5_week_define =
4881 {
4882     "c5_week",
4883     GX_TYPE_PROMPT,                          /* widget type                    */
4884     GX_ID_NONE,                              /* widget id                      */
4885     #if defined(GX_WIDGET_USER_DATA)
4886     0,                                       /* user data                      */
4887     #endif
4888     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4889     0,                                       /* status flags                   */
4890     sizeof(GX_PROMPT),                       /* control block size             */
4891     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4892     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4893     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4894     gx_studio_prompt_create,                 /* create function                */
4895     GX_NULL,                                 /* drawing function override      */
4896     GX_NULL,                                 /* event function override        */
4897     {399, 108, 431, 125},                    /* widget size                    */
4898     &schedule_screen_c6_week_define,         /* next widget definition         */
4899     GX_NULL,                                 /* no child widgets               */
4900     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_c5_week), /* control block */
4901     (void *) &schedule_screen_c5_week_properties /* extended properties        */
4902 };
4903 
4904 GX_CONST GX_STUDIO_WIDGET schedule_screen_c4_week_define =
4905 {
4906     "c4_week",
4907     GX_TYPE_PROMPT,                          /* widget type                    */
4908     GX_ID_NONE,                              /* widget id                      */
4909     #if defined(GX_WIDGET_USER_DATA)
4910     0,                                       /* user data                      */
4911     #endif
4912     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4913     0,                                       /* status flags                   */
4914     sizeof(GX_PROMPT),                       /* control block size             */
4915     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4916     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4917     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4918     gx_studio_prompt_create,                 /* create function                */
4919     GX_NULL,                                 /* drawing function override      */
4920     GX_NULL,                                 /* event function override        */
4921     {322, 108, 354, 125},                    /* widget size                    */
4922     &schedule_screen_c5_week_define,         /* next widget definition         */
4923     GX_NULL,                                 /* no child widgets               */
4924     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_c4_week), /* control block */
4925     (void *) &schedule_screen_c4_week_properties /* extended properties        */
4926 };
4927 
4928 GX_CONST GX_STUDIO_WIDGET schedule_screen_c2_week_define =
4929 {
4930     "c2_week",
4931     GX_TYPE_PROMPT,                          /* widget type                    */
4932     GX_ID_NONE,                              /* widget id                      */
4933     #if defined(GX_WIDGET_USER_DATA)
4934     0,                                       /* user data                      */
4935     #endif
4936     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4937     0,                                       /* status flags                   */
4938     sizeof(GX_PROMPT),                       /* control block size             */
4939     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4940     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4941     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4942     gx_studio_prompt_create,                 /* create function                */
4943     GX_NULL,                                 /* drawing function override      */
4944     GX_NULL,                                 /* event function override        */
4945     {168, 108, 200, 125},                    /* widget size                    */
4946     &schedule_screen_c4_week_define,         /* next widget definition         */
4947     GX_NULL,                                 /* no child widgets               */
4948     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_c2_week), /* control block */
4949     (void *) &schedule_screen_c2_week_properties /* extended properties        */
4950 };
4951 
4952 GX_CONST GX_STUDIO_WIDGET schedule_screen_c3_week_define =
4953 {
4954     "c3_week",
4955     GX_TYPE_PROMPT,                          /* widget type                    */
4956     GX_ID_NONE,                              /* widget id                      */
4957     #if defined(GX_WIDGET_USER_DATA)
4958     0,                                       /* user data                      */
4959     #endif
4960     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4961     0,                                       /* status flags                   */
4962     sizeof(GX_PROMPT),                       /* control block size             */
4963     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4964     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4965     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4966     gx_studio_prompt_create,                 /* create function                */
4967     GX_NULL,                                 /* drawing function override      */
4968     GX_NULL,                                 /* event function override        */
4969     {245, 108, 277, 125},                    /* widget size                    */
4970     &schedule_screen_c2_week_define,         /* next widget definition         */
4971     GX_NULL,                                 /* no child widgets               */
4972     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_c3_week), /* control block */
4973     (void *) &schedule_screen_c3_week_properties /* extended properties        */
4974 };
4975 
4976 GX_CONST GX_STUDIO_WIDGET schedule_screen_c1_week_define =
4977 {
4978     "c1_week",
4979     GX_TYPE_PROMPT,                          /* widget type                    */
4980     GX_ID_NONE,                              /* widget id                      */
4981     #if defined(GX_WIDGET_USER_DATA)
4982     0,                                       /* user data                      */
4983     #endif
4984     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
4985     0,                                       /* status flags                   */
4986     sizeof(GX_PROMPT),                       /* control block size             */
4987     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
4988     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
4989     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
4990     gx_studio_prompt_create,                 /* create function                */
4991     GX_NULL,                                 /* drawing function override      */
4992     GX_NULL,                                 /* event function override        */
4993     {90, 108, 122, 125},                     /* widget size                    */
4994     &schedule_screen_c3_week_define,         /* next widget definition         */
4995     GX_NULL,                                 /* no child widgets               */
4996     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_c1_week), /* control block */
4997     (void *) &schedule_screen_c1_week_properties /* extended properties        */
4998 };
4999 
5000 GX_CONST GX_STUDIO_WIDGET schedule_screen_icon_2_define =
5001 {
5002     "icon_2",
5003     GX_TYPE_ICON,                            /* widget type                    */
5004     GX_ID_NONE,                              /* widget id                      */
5005     #if defined(GX_WIDGET_USER_DATA)
5006     0,                                       /* user data                      */
5007     #endif
5008     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP,   /* style flags */
5009     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
5010     sizeof(GX_ICON),                         /* control block size             */
5011     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
5012     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
5013     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
5014     gx_studio_icon_create,                   /* create function                */
5015     GX_NULL,                                 /* drawing function override      */
5016     GX_NULL,                                 /* event function override        */
5017     {31, 74, 38, 86},                        /* widget size                    */
5018     GX_NULL,                                 /* no next widget                 */
5019     GX_NULL,                                 /* no child widgets               */
5020     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_icon_2), /* control block */
5021     (void *) &schedule_screen_icon_2_properties /* extended properties         */
5022 };
5023 
5024 GX_CONST GX_STUDIO_WIDGET schedule_screen_icon_1_define =
5025 {
5026     "icon_1",
5027     GX_TYPE_ICON,                            /* widget type                    */
5028     GX_ID_NONE,                              /* widget id                      */
5029     #if defined(GX_WIDGET_USER_DATA)
5030     0,                                       /* user data                      */
5031     #endif
5032     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP,   /* style flags */
5033     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
5034     sizeof(GX_ICON),                         /* control block size             */
5035     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
5036     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
5037     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
5038     gx_studio_icon_create,                   /* create function                */
5039     GX_NULL,                                 /* drawing function override      */
5040     GX_NULL,                                 /* event function override        */
5041     {112, 74, 119, 86},                      /* widget size                    */
5042     &schedule_screen_icon_2_define,          /* next widget definition         */
5043     GX_NULL,                                 /* no child widgets               */
5044     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_icon_1), /* control block */
5045     (void *) &schedule_screen_icon_1_properties /* extended properties         */
5046 };
5047 
5048 GX_CONST GX_STUDIO_WIDGET schedule_screen_year_define =
5049 {
5050     "year",
5051     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
5052     GX_ID_NONE,                              /* widget id                      */
5053     #if defined(GX_WIDGET_USER_DATA)
5054     0,                                       /* user data                      */
5055     #endif
5056     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
5057     0,                                       /* status flags                   */
5058     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
5059     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
5060     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
5061     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
5062     gx_studio_numeric_prompt_create,         /* create function                */
5063     GX_NULL,                                 /* drawing function override      */
5064     GX_NULL,                                 /* event function override        */
5065     {74, 73, 109, 90},                       /* widget size                    */
5066     &schedule_screen_icon_1_define,          /* next widget definition         */
5067     GX_NULL,                                 /* no child widgets               */
5068     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_year), /* control block */
5069     (void *) &schedule_screen_year_properties /* extended properties           */
5070 };
5071 
5072 GX_CONST GX_STUDIO_WIDGET schedule_screen_schedule_win_define =
5073 {
5074     "schedule_win",
5075     GX_TYPE_WINDOW,                          /* widget type                    */
5076     GX_ID_NONE,                              /* widget id                      */
5077     #if defined(GX_WIDGET_USER_DATA)
5078     0,                                       /* user data                      */
5079     #endif
5080     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED,   /* style flags */
5081     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
5082     sizeof(GX_WINDOW),                       /* control block size             */
5083     GX_COLOR_ID_WINDOW_FILL,                 /* normal color id                */
5084     GX_COLOR_ID_WINDOW_FILL,                 /* selected color id              */
5085     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
5086     gx_studio_window_create,                 /* create function                */
5087     (VOID (*)(GX_WIDGET *)) schedule_win_draw, /* drawing function override    */
5088     GX_NULL,                                 /* event function override        */
5089     {20, 99, 619, 459},                      /* widget size                    */
5090     &schedule_screen_year_define,            /* next widget definition         */
5091     &schedule_screen_c1_week_define,         /* child widget definition        */
5092     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_schedule_win), /* control block */
5093     (void *) &schedule_screen_schedule_win_properties /* extended properties   */
5094 };
5095 
5096 GX_CONST GX_STUDIO_WIDGET schedule_screen_month_define =
5097 {
5098     "month",
5099     GX_TYPE_PROMPT,                          /* widget type                    */
5100     GX_ID_NONE,                              /* widget id                      */
5101     #if defined(GX_WIDGET_USER_DATA)
5102     0,                                       /* user data                      */
5103     #endif
5104     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
5105     0,                                       /* status flags                   */
5106     sizeof(GX_PROMPT),                       /* control block size             */
5107     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
5108     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
5109     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
5110     gx_studio_prompt_create,                 /* create function                */
5111     GX_NULL,                                 /* drawing function override      */
5112     GX_NULL,                                 /* event function override        */
5113     {39, 73, 73, 90},                        /* widget size                    */
5114     &schedule_screen_schedule_win_define,    /* next widget definition         */
5115     GX_NULL,                                 /* no child widgets               */
5116     offsetof(SCHEDULE_SCREEN_CONTROL_BLOCK, schedule_screen_month), /* control block */
5117     (void *) &schedule_screen_month_properties /* extended properties          */
5118 };
5119 
5120 GX_ANIMATION_INFO schedule_screen_animation_1 = {
5121     (GX_WIDGET *) &schedule_screen.schedule_screen_r10_win,
5122     (GX_WIDGET *) &schedule_screen.schedule_screen_schedule_win,
5123     GX_NULL,
5124     GX_ANIMATION_TRANSLATE, 0, 0, 1,
5125     {82, 405}, {82, 411}, 0, 255, 10
5126 };
5127 
5128 
5129 GX_ANIMATION_INFO schedule_screen_animation_2 = {
5130     (GX_WIDGET *) &schedule_screen.schedule_screen_r9_win,
5131     (GX_WIDGET *) &schedule_screen.schedule_screen_schedule_win,
5132     GX_NULL,
5133     GX_ANIMATION_TRANSLATE, 0, 3, 1,
5134     {82, 374}, {82, 380}, 0, 255, 10
5135 };
5136 
5137 
5138 GX_ANIMATION_INFO schedule_screen_animation_3 = {
5139     (GX_WIDGET *) &schedule_screen.schedule_screen_r8_win,
5140     (GX_WIDGET *) &schedule_screen.schedule_screen_schedule_win,
5141     GX_NULL,
5142     GX_ANIMATION_TRANSLATE, 0, 6, 1,
5143     {82, 343}, {82, 349}, 0, 255, 10
5144 };
5145 
5146 
5147 GX_ANIMATION_INFO schedule_screen_animation_4 = {
5148     (GX_WIDGET *) &schedule_screen.schedule_screen_r7_win,
5149     (GX_WIDGET *) &schedule_screen.schedule_screen_schedule_win,
5150     GX_NULL,
5151     GX_ANIMATION_TRANSLATE, 0, 9, 1,
5152     {82, 312}, {82, 318}, 0, 255, 10
5153 };
5154 
5155 
5156 GX_ANIMATION_INFO schedule_screen_animation_5 = {
5157     (GX_WIDGET *) &schedule_screen.schedule_screen_r6_win,
5158     (GX_WIDGET *) &schedule_screen.schedule_screen_schedule_win,
5159     GX_NULL,
5160     GX_ANIMATION_TRANSLATE, 0, 12, 1,
5161     {82, 281}, {82, 287}, 0, 255, 10
5162 };
5163 
5164 
5165 GX_ANIMATION_INFO schedule_screen_animation_6 = {
5166     (GX_WIDGET *) &schedule_screen.schedule_screen_r5_win,
5167     (GX_WIDGET *) &schedule_screen.schedule_screen_schedule_win,
5168     GX_NULL,
5169     GX_ANIMATION_TRANSLATE, ID_R5_WIN_FADE_IN, 15, 1,
5170     {82, 250}, {82, 256}, 0, 255, 10
5171 };
5172 
5173 
5174 GX_ANIMATION_INFO schedule_screen_animation_7 = {
5175     (GX_WIDGET *) &schedule_screen.schedule_screen_r4_win,
5176     (GX_WIDGET *) &schedule_screen.schedule_screen_schedule_win,
5177     GX_NULL,
5178     GX_ANIMATION_TRANSLATE, 0, 18, 1,
5179     {82, 519}, {82, 525}, 0, 255, 10
5180 };
5181 
5182 
5183 GX_ANIMATION_INFO schedule_screen_animation_8 = {
5184     (GX_WIDGET *) &schedule_screen.schedule_screen_r3_win,
5185     (GX_WIDGET *) &schedule_screen.schedule_screen_schedule_win,
5186     GX_NULL,
5187     GX_ANIMATION_TRANSLATE, 0, 21, 1,
5188     {82, 188}, {82, 194}, 0, 255, 10
5189 };
5190 
5191 
5192 GX_ANIMATION_INFO schedule_screen_animation_9 = {
5193     (GX_WIDGET *) &schedule_screen.schedule_screen_r2_win,
5194     (GX_WIDGET *) &schedule_screen.schedule_screen_schedule_win,
5195     GX_NULL,
5196     GX_ANIMATION_TRANSLATE, 0, 24, 1,
5197     {82, 157}, {82, 163}, 0, 255, 10
5198 };
5199 
5200 
5201 GX_ANIMATION_INFO schedule_screen_animation_10 = {
5202     (GX_WIDGET *) &schedule_screen.schedule_screen_r1_win,
5203     (GX_WIDGET *) &schedule_screen.schedule_screen_schedule_win,
5204     GX_NULL,
5205     GX_ANIMATION_TRANSLATE, 0, 27, 1,
5206     {82, 126}, {82, 132}, 0, 255, 10
5207 };
5208 
5209 
5210 GX_STUDIO_ACTION schedule_screen_on_gx_event_showactions[11] = {
5211     {GX_ACTION_TYPE_ANIMATION, 0, &schedule_screen.schedule_screen_schedule_win, &schedule_screen.schedule_screen_r10_win, &schedule_screen_animation_1},
5212     {GX_ACTION_TYPE_ANIMATION, 0, &schedule_screen.schedule_screen_schedule_win, &schedule_screen.schedule_screen_r9_win, &schedule_screen_animation_2},
5213     {GX_ACTION_TYPE_ANIMATION, 0, &schedule_screen.schedule_screen_schedule_win, &schedule_screen.schedule_screen_r8_win, &schedule_screen_animation_3},
5214     {GX_ACTION_TYPE_ANIMATION, 0, &schedule_screen.schedule_screen_schedule_win, &schedule_screen.schedule_screen_r7_win, &schedule_screen_animation_4},
5215     {GX_ACTION_TYPE_ANIMATION, 0, &schedule_screen.schedule_screen_schedule_win, &schedule_screen.schedule_screen_r6_win, &schedule_screen_animation_5},
5216     {GX_ACTION_TYPE_ANIMATION, 0, &schedule_screen.schedule_screen_schedule_win, &schedule_screen.schedule_screen_r5_win, &schedule_screen_animation_6},
5217     {GX_ACTION_TYPE_ANIMATION, 0, &schedule_screen.schedule_screen_schedule_win, &schedule_screen.schedule_screen_r4_win, &schedule_screen_animation_7},
5218     {GX_ACTION_TYPE_ANIMATION, 0, &schedule_screen.schedule_screen_schedule_win, &schedule_screen.schedule_screen_r3_win, &schedule_screen_animation_8},
5219     {GX_ACTION_TYPE_ANIMATION, 0, &schedule_screen.schedule_screen_schedule_win, &schedule_screen.schedule_screen_r2_win, &schedule_screen_animation_9},
5220     {GX_ACTION_TYPE_ANIMATION, 0, &schedule_screen.schedule_screen_schedule_win, &schedule_screen.schedule_screen_r1_win, &schedule_screen_animation_10},
5221     {0, 0, GX_NULL, GX_NULL, GX_NULL}
5222 };
5223 
5224 static GX_STUDIO_EVENT_ENTRY gx_studio_schedule_screen_event_table[] = {
5225     { GX_EVENT_SHOW, 0, schedule_screen_on_gx_event_showactions},
5226     {0, 0, GX_NULL}
5227 };
5228 
5229 GX_STUDIO_EVENT_PROCESS schedule_screen_event_chain = {gx_studio_schedule_screen_event_table, (UINT (*)(GX_WIDGET *, GX_EVENT *))schedule_screen_event_handler};
gx_studio_schedule_screen_event_process(GX_WIDGET * target,GX_EVENT * event_ptr)5230 static UINT gx_studio_schedule_screen_event_process(GX_WIDGET *target, GX_EVENT *event_ptr)
5231 {
5232     return (gx_studio_auto_event_handler(target, event_ptr, &schedule_screen_event_chain));
5233 }
5234 
5235 
5236 GX_CONST GX_STUDIO_WIDGET schedule_screen_define =
5237 {
5238     "schedule_screen",
5239     GX_TYPE_TEMPLATE,                        /* widget type                    */
5240     ID_SCHEDULE_SCREEN,                      /* widget id                      */
5241     #if defined(GX_WIDGET_USER_DATA)
5242     0,                                       /* user data                      */
5243     #endif
5244     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
5245     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
5246     sizeof(SCHEDULE_SCREEN_CONTROL_BLOCK),   /* control block size             */
5247     GX_COLOR_ID_CANVAS,                      /* normal color id                */
5248     GX_COLOR_ID_CANVAS,                      /* selected color id              */
5249     GX_COLOR_ID_CANVAS,                      /* disabled color id              */
5250     gx_studio_template_create,               /* create function                */
5251     GX_NULL,                                 /* drawing function override      */
5252     (UINT (*)(GX_WIDGET *, GX_EVENT *)) gx_studio_schedule_screen_event_process, /* event function override */
5253     {0, 0, 639, 479},                        /* widget size                    */
5254     GX_NULL,                                 /* next widget                    */
5255     &schedule_screen_month_define,           /* child widget                   */
5256     0,                                       /* control block                  */
5257     (void *) &schedule_screen_properties     /* extended properties            */
5258 };
5259 GX_TEMPLATE_PROPERTIES patients_screen_properties =
5260 {
5261     &template_define,                        /* base info                      */
5262     gx_studio_window_create,                 /* base create function           */
5263     {0, 0, 639, 479}                         /* widget size                    */
5264 };
5265 GX_PROMPT_PROPERTIES patients_screen_patient_name_label_properties =
5266 {
5267     GX_STRING_ID_STRING_8,                   /* string id                      */
5268     GX_FONT_ID_PROMPT,                       /* font id                        */
5269     GX_COLOR_ID_TEXT,                        /* normal text color              */
5270     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
5271     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
5272 };
5273 GX_PROMPT_PROPERTIES patients_screen_total_admited_label_properties =
5274 {
5275     GX_STRING_ID_STRING_6,                   /* string id                      */
5276     GX_FONT_ID_PROMPT,                       /* font id                        */
5277     GX_COLOR_ID_TEXT,                        /* normal text color              */
5278     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
5279     GX_COLOR_ID_DISABLED_TEXT                /* disabled text color            */
5280 };
5281 GX_NUMERIC_PROMPT_PROPERTIES patients_screen_total_admitted_count_properties =
5282 {
5283     0,                                       /* string id                      */
5284     GX_FONT_ID_PROMPT,                       /* font id                        */
5285     GX_COLOR_ID_TEXT,                        /* normal text color              */
5286     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
5287     GX_COLOR_ID_WHITE,                       /* disabled text color            */
5288     GX_NULL,                                 /* format function                */
5289     168                                      /* numeric prompt value           */
5290 };
5291 GX_PROMPT_PROPERTIES patients_screen_DOB_label_properties =
5292 {
5293     GX_STRING_ID_STRING_10,                  /* string id                      */
5294     GX_FONT_ID_PROMPT,                       /* font id                        */
5295     GX_COLOR_ID_TEXT,                        /* normal text color              */
5296     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
5297     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
5298 };
5299 GX_PROMPT_PROPERTIES patients_screen_room_label_properties =
5300 {
5301     GX_STRING_ID_STRING_32,                  /* string id                      */
5302     GX_FONT_ID_PROMPT,                       /* font id                        */
5303     GX_COLOR_ID_TEXT,                        /* normal text color              */
5304     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
5305     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
5306 };
5307 GX_PROMPT_PROPERTIES patients_screen_admission_date_label_properties =
5308 {
5309     GX_STRING_ID_STRING_38,                  /* string id                      */
5310     GX_FONT_ID_PROMPT,                       /* font id                        */
5311     GX_COLOR_ID_TEXT,                        /* normal text color              */
5312     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
5313     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
5314 };
5315 GX_PROMPT_PROPERTIES patients_screen_pa_num_label_properties =
5316 {
5317     GX_STRING_ID_STRING_39,                  /* string id                      */
5318     GX_FONT_ID_PROMPT,                       /* font id                        */
5319     GX_COLOR_ID_TEXT,                        /* normal text color              */
5320     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
5321     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
5322 };
5323 GX_VERTICAL_LIST_PROPERTIES patients_screen_patient_list_properties =
5324 {
5325     0,                                       /* wallpaper id                   */
5326     patient_row_create,                      /* callback function              */
5327     46                                       /* total rows                     */
5328 };
5329 GX_SCROLLBAR_APPEARANCE  patients_screen_vertical_scroll_properties =
5330 {
5331     20,                                      /* scroll width                   */
5332     8,                                       /* thumb width                    */
5333     5,                                       /* thumb travel min               */
5334     5,                                       /* thumb travel max               */
5335     0,                                       /* thumb border style             */
5336     0,                                       /* scroll fill pixelmap           */
5337     GX_PIXELMAP_ID_TABLE_SCROLL_THUMB,       /* scroll thumb pixelmap          */
5338     0,                                       /* scroll up pixelmap             */
5339     0,                                       /* scroll down pixelmap           */
5340     GX_COLOR_ID_SCROLL_BUTTON,               /* scroll thumb color             */
5341     GX_COLOR_ID_SCROLL_BUTTON,               /* scroll thumb border color      */
5342     GX_COLOR_ID_SCROLL_FILL,                 /* scroll button color            */
5343 };
5344 GX_ICON_PROPERTIES patients_screen_icon_properties =
5345 {
5346     GX_PIXELMAP_ID_PATIENTS_HORZ_TOP_LINE,   /* normal pixelmap id             */
5347     0                                        /* selected pixelmap id           */
5348 };
5349 
5350 GX_CONST GX_STUDIO_WIDGET patients_screen_vertical_scroll_define =
5351 {
5352     "vertical_scroll",
5353     GX_TYPE_VERTICAL_SCROLL,                 /* widget type                    */
5354     GX_ID_NONE,                              /* widget id                      */
5355     #if defined(GX_WIDGET_USER_DATA)
5356     0,                                       /* user data                      */
5357     #endif
5358     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED|GX_SCROLLBAR_VERTICAL,   /* style flags */
5359     0,                                       /* status flags                   */
5360     sizeof(GX_SCROLLBAR),                    /* control block size             */
5361     GX_COLOR_ID_BLACK,                       /* normal color id                */
5362     GX_COLOR_ID_BLACK,                       /* selected color id              */
5363     GX_COLOR_ID_BLACK,                       /* disabled color id              */
5364     gx_studio_vertical_scrollbar_create,     /* create function                */
5365     GX_NULL,                                 /* drawing function override      */
5366     GX_NULL,                                 /* event function override        */
5367     {600, 125, 619, 464},                    /* widget size                    */
5368     GX_NULL,                                 /* no next widget                 */
5369     GX_NULL,                                 /* no child widgets               */
5370     offsetof(PATIENTS_SCREEN_CONTROL_BLOCK, patients_screen_vertical_scroll), /* control block */
5371     (void *) &patients_screen_vertical_scroll_properties /* extended properties */
5372 };
5373 
5374 GX_CONST GX_STUDIO_WIDGET patients_screen_icon_define =
5375 {
5376     "icon",
5377     GX_TYPE_ICON,                            /* widget type                    */
5378     GX_ID_NONE,                              /* widget id                      */
5379     #if defined(GX_WIDGET_USER_DATA)
5380     0,                                       /* user data                      */
5381     #endif
5382     GX_STYLE_BORDER_NONE|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP,   /* style flags */
5383     0,                                       /* status flags                   */
5384     sizeof(GX_ICON),                         /* control block size             */
5385     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
5386     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
5387     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
5388     gx_studio_icon_create,                   /* create function                */
5389     GX_NULL,                                 /* drawing function override      */
5390     GX_NULL,                                 /* event function override        */
5391     {20, 122, 599, 124},                     /* widget size                    */
5392     GX_NULL,                                 /* no next widget                 */
5393     GX_NULL,                                 /* no child widgets               */
5394     offsetof(PATIENTS_SCREEN_CONTROL_BLOCK, patients_screen_icon), /* control block */
5395     (void *) &patients_screen_icon_properties /* extended properties           */
5396 };
5397 
5398 GX_CONST GX_STUDIO_WIDGET patients_screen_patient_list_define =
5399 {
5400     "patient_list",
5401     GX_TYPE_VERTICAL_LIST,                   /* widget type                    */
5402     ID_PATIENT_LIST,                         /* widget id                      */
5403     #if defined(GX_WIDGET_USER_DATA)
5404     0,                                       /* user data                      */
5405     #endif
5406     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED|GX_STYLE_REPEAT_SELECT,   /* style flags */
5407     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
5408     sizeof(GX_VERTICAL_LIST),                /* control block size             */
5409     GX_COLOR_ID_BLACK,                       /* normal color id                */
5410     GX_COLOR_ID_BLACK,                       /* selected color id              */
5411     GX_COLOR_ID_BLACK,                       /* disabled color id              */
5412     gx_studio_vertical_list_create,          /* create function                */
5413     GX_NULL,                                 /* drawing function override      */
5414     GX_NULL,                                 /* event function override        */
5415     {20, 125, 619, 464},                     /* widget size                    */
5416     &patients_screen_icon_define,            /* next widget definition         */
5417     &patients_screen_vertical_scroll_define, /* child widget definition        */
5418     offsetof(PATIENTS_SCREEN_CONTROL_BLOCK, patients_screen_patient_list), /* control block */
5419     (void *) &patients_screen_patient_list_properties /* extended properties   */
5420 };
5421 
5422 GX_CONST GX_STUDIO_WIDGET patients_screen_pa_num_label_define =
5423 {
5424     "pa_num_label",
5425     GX_TYPE_PROMPT,                          /* widget type                    */
5426     GX_ID_NONE,                              /* widget id                      */
5427     #if defined(GX_WIDGET_USER_DATA)
5428     0,                                       /* user data                      */
5429     #endif
5430     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
5431     0,                                       /* status flags                   */
5432     sizeof(GX_PROMPT),                       /* control block size             */
5433     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
5434     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
5435     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
5436     gx_studio_prompt_create,                 /* create function                */
5437     GX_NULL,                                 /* drawing function override      */
5438     GX_NULL,                                 /* event function override        */
5439     {531, 98, 591, 115},                     /* widget size                    */
5440     &patients_screen_patient_list_define,    /* next widget definition         */
5441     GX_NULL,                                 /* no child widgets               */
5442     offsetof(PATIENTS_SCREEN_CONTROL_BLOCK, patients_screen_pa_num_label), /* control block */
5443     (void *) &patients_screen_pa_num_label_properties /* extended properties   */
5444 };
5445 
5446 GX_CONST GX_STUDIO_WIDGET patients_screen_admission_date_label_define =
5447 {
5448     "admission_date_label",
5449     GX_TYPE_PROMPT,                          /* widget type                    */
5450     GX_ID_NONE,                              /* widget id                      */
5451     #if defined(GX_WIDGET_USER_DATA)
5452     0,                                       /* user data                      */
5453     #endif
5454     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
5455     0,                                       /* status flags                   */
5456     sizeof(GX_PROMPT),                       /* control block size             */
5457     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
5458     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
5459     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
5460     gx_studio_prompt_create,                 /* create function                */
5461     GX_NULL,                                 /* drawing function override      */
5462     GX_NULL,                                 /* event function override        */
5463     {382, 98, 499, 115},                     /* widget size                    */
5464     &patients_screen_pa_num_label_define,    /* next widget definition         */
5465     GX_NULL,                                 /* no child widgets               */
5466     offsetof(PATIENTS_SCREEN_CONTROL_BLOCK, patients_screen_admission_date_label), /* control block */
5467     (void *) &patients_screen_admission_date_label_properties /* extended properties */
5468 };
5469 
5470 GX_CONST GX_STUDIO_WIDGET patients_screen_room_label_define =
5471 {
5472     "room_label",
5473     GX_TYPE_PROMPT,                          /* widget type                    */
5474     GX_ID_NONE,                              /* widget id                      */
5475     #if defined(GX_WIDGET_USER_DATA)
5476     0,                                       /* user data                      */
5477     #endif
5478     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
5479     0,                                       /* status flags                   */
5480     sizeof(GX_PROMPT),                       /* control block size             */
5481     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
5482     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
5483     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
5484     gx_studio_prompt_create,                 /* create function                */
5485     GX_NULL,                                 /* drawing function override      */
5486     GX_NULL,                                 /* event function override        */
5487     {299, 98, 343, 115},                     /* widget size                    */
5488     &patients_screen_admission_date_label_define, /* next widget definition    */
5489     GX_NULL,                                 /* no child widgets               */
5490     offsetof(PATIENTS_SCREEN_CONTROL_BLOCK, patients_screen_room_label), /* control block */
5491     (void *) &patients_screen_room_label_properties /* extended properties     */
5492 };
5493 
5494 GX_CONST GX_STUDIO_WIDGET patients_screen_DOB_label_define =
5495 {
5496     "DOB_label",
5497     GX_TYPE_PROMPT,                          /* widget type                    */
5498     GX_ID_NONE,                              /* widget id                      */
5499     #if defined(GX_WIDGET_USER_DATA)
5500     0,                                       /* user data                      */
5501     #endif
5502     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
5503     0,                                       /* status flags                   */
5504     sizeof(GX_PROMPT),                       /* control block size             */
5505     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
5506     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
5507     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
5508     gx_studio_prompt_create,                 /* create function                */
5509     GX_NULL,                                 /* drawing function override      */
5510     GX_NULL,                                 /* event function override        */
5511     {191, 97, 224, 114},                     /* widget size                    */
5512     &patients_screen_room_label_define,      /* next widget definition         */
5513     GX_NULL,                                 /* no child widgets               */
5514     offsetof(PATIENTS_SCREEN_CONTROL_BLOCK, patients_screen_DOB_label), /* control block */
5515     (void *) &patients_screen_DOB_label_properties /* extended properties      */
5516 };
5517 
5518 GX_CONST GX_STUDIO_WIDGET patients_screen_total_admitted_count_define =
5519 {
5520     "total_admitted_count",
5521     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
5522     GX_ID_NONE,                              /* widget id                      */
5523     #if defined(GX_WIDGET_USER_DATA)
5524     0,                                       /* user data                      */
5525     #endif
5526     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
5527     0,                                       /* status flags                   */
5528     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
5529     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
5530     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
5531     GX_COLOR_ID_WHITE,                       /* disabled color id              */
5532     gx_studio_numeric_prompt_create,         /* create function                */
5533     GX_NULL,                                 /* drawing function override      */
5534     GX_NULL,                                 /* event function override        */
5535     {141, 70, 167, 87},                      /* widget size                    */
5536     &patients_screen_DOB_label_define,       /* next widget definition         */
5537     GX_NULL,                                 /* no child widgets               */
5538     offsetof(PATIENTS_SCREEN_CONTROL_BLOCK, patients_screen_total_admitted_count), /* control block */
5539     (void *) &patients_screen_total_admitted_count_properties /* extended properties */
5540 };
5541 
5542 GX_CONST GX_STUDIO_WIDGET patients_screen_total_admited_label_define =
5543 {
5544     "total_admited_label",
5545     GX_TYPE_PROMPT,                          /* widget type                    */
5546     GX_ID_NONE,                              /* widget id                      */
5547     #if defined(GX_WIDGET_USER_DATA)
5548     0,                                       /* user data                      */
5549     #endif
5550     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
5551     0,                                       /* status flags                   */
5552     sizeof(GX_PROMPT),                       /* control block size             */
5553     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
5554     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
5555     GX_COLOR_ID_GRAY,                        /* disabled color id              */
5556     gx_studio_prompt_create,                 /* create function                */
5557     GX_NULL,                                 /* drawing function override      */
5558     GX_NULL,                                 /* event function override        */
5559     {20, 70, 133, 87},                       /* widget size                    */
5560     &patients_screen_total_admitted_count_define, /* next widget definition    */
5561     GX_NULL,                                 /* no child widgets               */
5562     offsetof(PATIENTS_SCREEN_CONTROL_BLOCK, patients_screen_total_admited_label), /* control block */
5563     (void *) &patients_screen_total_admited_label_properties /* extended properties */
5564 };
5565 
5566 GX_CONST GX_STUDIO_WIDGET patients_screen_patient_name_label_define =
5567 {
5568     "patient_name_label",
5569     GX_TYPE_PROMPT,                          /* widget type                    */
5570     GX_ID_NONE,                              /* widget id                      */
5571     #if defined(GX_WIDGET_USER_DATA)
5572     0,                                       /* user data                      */
5573     #endif
5574     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
5575     0,                                       /* status flags                   */
5576     sizeof(GX_PROMPT),                       /* control block size             */
5577     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
5578     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
5579     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
5580     gx_studio_prompt_create,                 /* create function                */
5581     GX_NULL,                                 /* drawing function override      */
5582     GX_NULL,                                 /* event function override        */
5583     {30, 98, 132, 115},                      /* widget size                    */
5584     &patients_screen_total_admited_label_define, /* next widget definition     */
5585     GX_NULL,                                 /* no child widgets               */
5586     offsetof(PATIENTS_SCREEN_CONTROL_BLOCK, patients_screen_patient_name_label), /* control block */
5587     (void *) &patients_screen_patient_name_label_properties /* extended properties */
5588 };
5589 
5590 GX_CONST GX_STUDIO_WIDGET patients_screen_define =
5591 {
5592     "patients_screen",
5593     GX_TYPE_TEMPLATE,                        /* widget type                    */
5594     ID_PATIENTS_SCREEN,                      /* widget id                      */
5595     #if defined(GX_WIDGET_USER_DATA)
5596     0,                                       /* user data                      */
5597     #endif
5598     GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED,   /* style flags                    */
5599     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
5600     sizeof(PATIENTS_SCREEN_CONTROL_BLOCK),   /* control block size             */
5601     GX_COLOR_ID_CANVAS,                      /* normal color id                */
5602     GX_COLOR_ID_CANVAS,                      /* selected color id              */
5603     GX_COLOR_ID_CANVAS,                      /* disabled color id              */
5604     gx_studio_template_create,               /* create function                */
5605     GX_NULL,                                 /* drawing function override      */
5606     (UINT (*)(GX_WIDGET *, GX_EVENT *)) patients_screen_event_handler, /* event function override */
5607     {0, 0, 639, 479},                        /* widget size                    */
5608     GX_NULL,                                 /* next widget                    */
5609     &patients_screen_patient_name_label_define, /* child widget                */
5610     0,                                       /* control block                  */
5611     (void *) &patients_screen_properties     /* extended properties            */
5612 };
5613 GX_TEMPLATE_PROPERTIES vitals_screen_properties =
5614 {
5615     &template_define,                        /* base info                      */
5616     gx_studio_window_create,                 /* base create function           */
5617     {0, 0, 639, 479}                         /* widget size                    */
5618 };
5619 GX_WINDOW_PROPERTIES vitals_screen_insulin_win_properties =
5620 {
5621     0                                        /* wallpaper pixelmap id          */
5622 };
5623 GX_ICON_PROPERTIES vitals_screen_insulin_properties =
5624 {
5625     GX_PIXELMAP_ID_BALL_BIG_RED,             /* normal pixelmap id             */
5626     0                                        /* selected pixelmap id           */
5627 };
5628 GX_PROMPT_PROPERTIES vitals_screen_insulin_name_1_properties =
5629 {
5630     GX_STRING_ID_STRING_13,                  /* string id                      */
5631     GX_FONT_ID_SMALL,                        /* font id                        */
5632     GX_COLOR_ID_WHITE,                       /* normal text color              */
5633     GX_COLOR_ID_WHITE,                       /* selected text color            */
5634     GX_COLOR_ID_WHITE                        /* disabled text color            */
5635 };
5636 GX_PROMPT_PROPERTIES vitals_screen_insulin_unit_1_properties =
5637 {
5638     GX_STRING_ID_STRING_14,                  /* string id                      */
5639     GX_FONT_ID_SMALL,                        /* font id                        */
5640     GX_COLOR_ID_WHITE,                       /* normal text color              */
5641     GX_COLOR_ID_WHITE,                       /* selected text color            */
5642     GX_COLOR_ID_WHITE                        /* disabled text color            */
5643 };
5644 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_insulin_value_properties =
5645 {
5646     0,                                       /* string id                      */
5647     GX_FONT_ID_MEDIUM,                       /* font id                        */
5648     GX_COLOR_ID_WHITE,                       /* normal text color              */
5649     GX_COLOR_ID_WHITE,                       /* selected text color            */
5650     GX_COLOR_ID_WHITE,                       /* disabled text color            */
5651     insulin_value_format,                    /* format function                */
5652     71                                       /* numeric prompt value           */
5653 };
5654 GX_PROMPT_PROPERTIES vitals_screen_prompt_17_properties =
5655 {
5656     GX_STRING_ID_STRING_18,                  /* string id                      */
5657     GX_FONT_ID_SYSTEM,                       /* font id                        */
5658     GX_COLOR_ID_TEXT,                        /* normal text color              */
5659     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
5660     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
5661 };
5662 GX_PROMPT_PROPERTIES vitals_screen_prompt_18_properties =
5663 {
5664     GX_STRING_ID_STRING_15,                  /* string id                      */
5665     GX_FONT_ID_SYSTEM,                       /* font id                        */
5666     GX_COLOR_ID_TEXT,                        /* normal text color              */
5667     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
5668     GX_COLOR_ID_GRAY                         /* disabled text color            */
5669 };
5670 GX_PROMPT_PROPERTIES vitals_screen_prompt_19_properties =
5671 {
5672     GX_STRING_ID_STRING_16,                  /* string id                      */
5673     GX_FONT_ID_SYSTEM,                       /* font id                        */
5674     GX_COLOR_ID_TEXT,                        /* normal text color              */
5675     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
5676     GX_COLOR_ID_GRAY                         /* disabled text color            */
5677 };
5678 GX_PROMPT_PROPERTIES vitals_screen_prompt_20_properties =
5679 {
5680     GX_STRING_ID_STRING_18,                  /* string id                      */
5681     GX_FONT_ID_SYSTEM,                       /* font id                        */
5682     GX_COLOR_ID_TEXT,                        /* normal text color              */
5683     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
5684     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
5685 };
5686 GX_PROMPT_PROPERTIES vitals_screen_prompt_21_properties =
5687 {
5688     GX_STRING_ID_STRING_17,                  /* string id                      */
5689     GX_FONT_ID_SYSTEM,                       /* font id                        */
5690     GX_COLOR_ID_TEXT,                        /* normal text color              */
5691     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
5692     GX_COLOR_ID_GRAY                         /* disabled text color            */
5693 };
5694 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_glucose_value_properties =
5695 {
5696     0,                                       /* string id                      */
5697     GX_FONT_ID_MEDIUM,                       /* font id                        */
5698     GX_COLOR_ID_WHITE,                       /* normal text color              */
5699     GX_COLOR_ID_WHITE,                       /* selected text color            */
5700     GX_COLOR_ID_WHITE,                       /* disabled text color            */
5701     GX_NULL,                                 /* format function                */
5702     130                                      /* numeric prompt value           */
5703 };
5704 GX_PROMPT_PROPERTIES vitals_screen_prompt_22_properties =
5705 {
5706     GX_STRING_ID_STRING_20,                  /* string id                      */
5707     GX_FONT_ID_SYSTEM,                       /* font id                        */
5708     GX_COLOR_ID_TEXT,                        /* normal text color              */
5709     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
5710     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
5711 };
5712 GX_PROMPT_PROPERTIES vitals_screen_prompt_1_properties =
5713 {
5714     GX_STRING_ID_STRING_57,                  /* string id                      */
5715     GX_FONT_ID_MEDIUM,                       /* font id                        */
5716     GX_COLOR_ID_WHITE,                       /* normal text color              */
5717     GX_COLOR_ID_WHITE,                       /* selected text color            */
5718     GX_COLOR_ID_WHITE                        /* disabled text color            */
5719 };
5720 GX_PROMPT_PROPERTIES vitals_screen_prompt_2_properties =
5721 {
5722     GX_STRING_ID_STRING_58,                  /* string id                      */
5723     GX_FONT_ID_MEDIUM,                       /* font id                        */
5724     GX_COLOR_ID_WHITE,                       /* normal text color              */
5725     GX_COLOR_ID_WHITE,                       /* selected text color            */
5726     GX_COLOR_ID_WHITE                        /* disabled text color            */
5727 };
5728 GX_WINDOW_PROPERTIES vitals_screen_ekg_win_properties =
5729 {
5730     0                                        /* wallpaper pixelmap id          */
5731 };
5732 GX_ICON_PROPERTIES vitals_screen_heart_rate_icon_properties =
5733 {
5734     GX_PIXELMAP_ID_BALL_BIG_GREEN,           /* normal pixelmap id             */
5735     0                                        /* selected pixelmap id           */
5736 };
5737 GX_PROMPT_PROPERTIES vitals_screen_ekg_label_properties =
5738 {
5739     GX_STRING_ID_STRING_12,                  /* string id                      */
5740     GX_FONT_ID_SMALL,                        /* font id                        */
5741     GX_COLOR_ID_WHITE,                       /* normal text color              */
5742     GX_COLOR_ID_WHITE,                       /* selected text color            */
5743     GX_COLOR_ID_WHITE                        /* disabled text color            */
5744 };
5745 GX_PROMPT_PROPERTIES vitals_screen_BPM_label_properties =
5746 {
5747     GX_STRING_ID_STRING_1,                   /* string id                      */
5748     GX_FONT_ID_SMALL,                        /* font id                        */
5749     GX_COLOR_ID_WHITE,                       /* normal text color              */
5750     GX_COLOR_ID_WHITE,                       /* selected text color            */
5751     GX_COLOR_ID_WHITE                        /* disabled text color            */
5752 };
5753 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_hr_value_properties =
5754 {
5755     0,                                       /* string id                      */
5756     GX_FONT_ID_MEDIUM,                       /* font id                        */
5757     GX_COLOR_ID_WHITE,                       /* normal text color              */
5758     GX_COLOR_ID_WHITE,                       /* selected text color            */
5759     GX_COLOR_ID_WHITE,                       /* disabled text color            */
5760     GX_NULL,                                 /* format function                */
5761     88                                       /* numeric prompt value           */
5762 };
5763 GX_WINDOW_PROPERTIES vitals_screen_ekg_waveform_win_properties =
5764 {
5765     0                                        /* wallpaper pixelmap id          */
5766 };
5767 GX_WINDOW_PROPERTIES vitals_screen_pulse_win_properties =
5768 {
5769     0                                        /* wallpaper pixelmap id          */
5770 };
5771 GX_ICON_PROPERTIES vitals_screen_spo2_icon_properties =
5772 {
5773     GX_PIXELMAP_ID_BALL_BIG_BLUE,            /* normal pixelmap id             */
5774     0                                        /* selected pixelmap id           */
5775 };
5776 GX_PROMPT_PROPERTIES vitals_screen_pulse_label_properties =
5777 {
5778     GX_STRING_ID_STRING_7,                   /* string id                      */
5779     GX_FONT_ID_SMALL,                        /* font id                        */
5780     GX_COLOR_ID_WHITE,                       /* normal text color              */
5781     GX_COLOR_ID_WHITE,                       /* selected text color            */
5782     GX_COLOR_ID_WHITE                        /* disabled text color            */
5783 };
5784 GX_PROMPT_PROPERTIES vitals_screen_spo2_label_properties =
5785 {
5786     GX_STRING_ID_STRING_9,                   /* string id                      */
5787     GX_FONT_ID_SMALL,                        /* font id                        */
5788     GX_COLOR_ID_WHITE,                       /* normal text color              */
5789     GX_COLOR_ID_WHITE,                       /* selected text color            */
5790     GX_COLOR_ID_WHITE                        /* disabled text color            */
5791 };
5792 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_spo2_value_properties =
5793 {
5794     0,                                       /* string id                      */
5795     GX_FONT_ID_MEDIUM,                       /* font id                        */
5796     GX_COLOR_ID_WHITE,                       /* normal text color              */
5797     GX_COLOR_ID_WHITE,                       /* selected text color            */
5798     GX_COLOR_ID_WHITE,                       /* disabled text color            */
5799     GX_NULL,                                 /* format function                */
5800     94                                       /* numeric prompt value           */
5801 };
5802 GX_WINDOW_PROPERTIES vitals_screen_pulse_waveform_win_properties =
5803 {
5804     0                                        /* wallpaper pixelmap id          */
5805 };
5806 GX_WINDOW_PROPERTIES vitals_screen_blood_pressure_win_properties =
5807 {
5808     0                                        /* wallpaper pixelmap id          */
5809 };
5810 GX_PROMPT_PROPERTIES vitals_screen_prompt_23_properties =
5811 {
5812     GX_STRING_ID_STRING_21,                  /* string id                      */
5813     GX_FONT_ID_SYSTEM,                       /* font id                        */
5814     GX_COLOR_ID_TEXT,                        /* normal text color              */
5815     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
5816     GX_COLOR_ID_WHITE                        /* disabled text color            */
5817 };
5818 GX_PROMPT_PROPERTIES vitals_screen_prompt_24_properties =
5819 {
5820     GX_STRING_ID_STRING_22,                  /* string id                      */
5821     GX_FONT_ID_SYSTEM,                       /* font id                        */
5822     GX_COLOR_ID_TEXT,                        /* normal text color              */
5823     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
5824     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
5825 };
5826 GX_PROMPT_PROPERTIES vitals_screen_prompt_25_properties =
5827 {
5828     GX_STRING_ID_STRING_23,                  /* string id                      */
5829     GX_FONT_ID_SMALL,                        /* font id                        */
5830     GX_COLOR_ID_TEXT,                        /* normal text color              */
5831     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
5832     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
5833 };
5834 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_last_bolus_value_9_properties =
5835 {
5836     0,                                       /* string id                      */
5837     GX_FONT_ID_LARGE,                        /* font id                        */
5838     GX_COLOR_ID_WHITE,                       /* normal text color              */
5839     GX_COLOR_ID_WHITE,                       /* selected text color            */
5840     GX_COLOR_ID_WHITE,                       /* disabled text color            */
5841     GX_NULL,                                 /* format function                */
5842     120                                      /* numeric prompt value           */
5843 };
5844 GX_PROMPT_PROPERTIES vitals_screen_prompt_26_properties =
5845 {
5846     GX_STRING_ID_STRING_24,                  /* string id                      */
5847     GX_FONT_ID_SMALL,                        /* font id                        */
5848     GX_COLOR_ID_TEXT,                        /* normal text color              */
5849     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
5850     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
5851 };
5852 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_last_bolus_value_10_properties =
5853 {
5854     0,                                       /* string id                      */
5855     GX_FONT_ID_LARGE,                        /* font id                        */
5856     GX_COLOR_ID_WHITE,                       /* normal text color              */
5857     GX_COLOR_ID_WHITE,                       /* selected text color            */
5858     GX_COLOR_ID_WHITE,                       /* disabled text color            */
5859     GX_NULL,                                 /* format function                */
5860     78                                       /* numeric prompt value           */
5861 };
5862 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_prompt_11_12_properties =
5863 {
5864     0,                                       /* string id                      */
5865     GX_FONT_ID_PROMPT,                       /* font id                        */
5866     GX_COLOR_ID_GRAY,                        /* normal text color              */
5867     GX_COLOR_ID_GRAY,                        /* selected text color            */
5868     GX_COLOR_ID_WHITE,                       /* disabled text color            */
5869     GX_NULL,                                 /* format function                */
5870     10                                       /* numeric prompt value           */
5871 };
5872 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_prompt_11_13_properties =
5873 {
5874     0,                                       /* string id                      */
5875     GX_FONT_ID_PROMPT,                       /* font id                        */
5876     GX_COLOR_ID_GRAY,                        /* normal text color              */
5877     GX_COLOR_ID_GRAY,                        /* selected text color            */
5878     GX_COLOR_ID_WHITE,                       /* disabled text color            */
5879     GX_NULL,                                 /* format function                */
5880     10                                       /* numeric prompt value           */
5881 };
5882 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_prompt_11_14_properties =
5883 {
5884     0,                                       /* string id                      */
5885     GX_FONT_ID_PROMPT,                       /* font id                        */
5886     GX_COLOR_ID_GRAY,                        /* normal text color              */
5887     GX_COLOR_ID_GRAY,                        /* selected text color            */
5888     GX_COLOR_ID_WHITE,                       /* disabled text color            */
5889     GX_NULL,                                 /* format function                */
5890     10                                       /* numeric prompt value           */
5891 };
5892 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_prompt_11_15_properties =
5893 {
5894     0,                                       /* string id                      */
5895     GX_FONT_ID_PROMPT,                       /* font id                        */
5896     GX_COLOR_ID_GRAY,                        /* normal text color              */
5897     GX_COLOR_ID_GRAY,                        /* selected text color            */
5898     GX_COLOR_ID_WHITE,                       /* disabled text color            */
5899     GX_NULL,                                 /* format function                */
5900     10                                       /* numeric prompt value           */
5901 };
5902 GX_PROMPT_PROPERTIES vitals_screen_prompt_12_3_properties =
5903 {
5904     GX_STRING_ID_STRING_26,                  /* string id                      */
5905     GX_FONT_ID_PROMPT,                       /* font id                        */
5906     GX_COLOR_ID_TEXT,                        /* normal text color              */
5907     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
5908     GX_COLOR_ID_GRAY                         /* disabled text color            */
5909 };
5910 GX_PROMPT_PROPERTIES vitals_screen_prompt_12_4_properties =
5911 {
5912     GX_STRING_ID_STRING_26,                  /* string id                      */
5913     GX_FONT_ID_PROMPT,                       /* font id                        */
5914     GX_COLOR_ID_TEXT,                        /* normal text color              */
5915     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
5916     GX_COLOR_ID_GRAY                         /* disabled text color            */
5917 };
5918 GX_PROMPT_PROPERTIES vitals_screen_prompt_12_5_properties =
5919 {
5920     GX_STRING_ID_STRING_26,                  /* string id                      */
5921     GX_FONT_ID_PROMPT,                       /* font id                        */
5922     GX_COLOR_ID_TEXT,                        /* normal text color              */
5923     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
5924     GX_COLOR_ID_GRAY                         /* disabled text color            */
5925 };
5926 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_prompt_11_16_properties =
5927 {
5928     0,                                       /* string id                      */
5929     GX_FONT_ID_PROMPT,                       /* font id                        */
5930     GX_COLOR_ID_GRAY,                        /* normal text color              */
5931     GX_COLOR_ID_GRAY,                        /* selected text color            */
5932     GX_COLOR_ID_WHITE,                       /* disabled text color            */
5933     GX_NULL,                                 /* format function                */
5934     15                                       /* numeric prompt value           */
5935 };
5936 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_prompt_11_17_properties =
5937 {
5938     0,                                       /* string id                      */
5939     GX_FONT_ID_PROMPT,                       /* font id                        */
5940     GX_COLOR_ID_GRAY,                        /* normal text color              */
5941     GX_COLOR_ID_GRAY,                        /* selected text color            */
5942     GX_COLOR_ID_WHITE,                       /* disabled text color            */
5943     GX_NULL,                                 /* format function                */
5944     30                                       /* numeric prompt value           */
5945 };
5946 GX_PROMPT_PROPERTIES vitals_screen_prompt_10_6_properties =
5947 {
5948     GX_STRING_ID_STRING_25,                  /* string id                      */
5949     GX_FONT_ID_SMALL,                        /* font id                        */
5950     GX_COLOR_ID_TEXT,                        /* normal text color              */
5951     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
5952     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
5953 };
5954 GX_PROMPT_PROPERTIES vitals_screen_prompt_10_7_properties =
5955 {
5956     GX_STRING_ID_STRING_25,                  /* string id                      */
5957     GX_FONT_ID_SMALL,                        /* font id                        */
5958     GX_COLOR_ID_TEXT,                        /* normal text color              */
5959     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
5960     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
5961 };
5962 GX_PROMPT_PROPERTIES vitals_screen_prompt_10_8_properties =
5963 {
5964     GX_STRING_ID_STRING_25,                  /* string id                      */
5965     GX_FONT_ID_SMALL,                        /* font id                        */
5966     GX_COLOR_ID_TEXT,                        /* normal text color              */
5967     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
5968     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
5969 };
5970 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_prompt_11_18_properties =
5971 {
5972     0,                                       /* string id                      */
5973     GX_FONT_ID_PROMPT,                       /* font id                        */
5974     GX_COLOR_ID_GRAY,                        /* normal text color              */
5975     GX_COLOR_ID_GRAY,                        /* selected text color            */
5976     GX_COLOR_ID_WHITE,                       /* disabled text color            */
5977     GX_NULL,                                 /* format function                */
5978     115                                      /* numeric prompt value           */
5979 };
5980 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_prompt_11_19_properties =
5981 {
5982     0,                                       /* string id                      */
5983     GX_FONT_ID_PROMPT,                       /* font id                        */
5984     GX_COLOR_ID_WHITE,                       /* normal text color              */
5985     GX_COLOR_ID_WHITE,                       /* selected text color            */
5986     GX_COLOR_ID_WHITE,                       /* disabled text color            */
5987     GX_NULL,                                 /* format function                */
5988     115                                      /* numeric prompt value           */
5989 };
5990 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_prompt_11_20_properties =
5991 {
5992     0,                                       /* string id                      */
5993     GX_FONT_ID_PROMPT,                       /* font id                        */
5994     GX_COLOR_ID_GRAY,                        /* normal text color              */
5995     GX_COLOR_ID_GRAY,                        /* selected text color            */
5996     GX_COLOR_ID_WHITE,                       /* disabled text color            */
5997     GX_NULL,                                 /* format function                */
5998     115                                      /* numeric prompt value           */
5999 };
6000 GX_PROMPT_PROPERTIES vitals_screen_prompt_10_9_properties =
6001 {
6002     GX_STRING_ID_STRING_27,                  /* string id                      */
6003     GX_FONT_ID_PROMPT,                       /* font id                        */
6004     GX_COLOR_ID_TEXT,                        /* normal text color              */
6005     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6006     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
6007 };
6008 GX_PROMPT_PROPERTIES vitals_screen_prompt_10_10_properties =
6009 {
6010     GX_STRING_ID_STRING_27,                  /* string id                      */
6011     GX_FONT_ID_PROMPT,                       /* font id                        */
6012     GX_COLOR_ID_TEXT,                        /* normal text color              */
6013     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6014     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
6015 };
6016 GX_PROMPT_PROPERTIES vitals_screen_prompt_10_11_properties =
6017 {
6018     GX_STRING_ID_STRING_27,                  /* string id                      */
6019     GX_FONT_ID_BUTTON,                       /* font id                        */
6020     GX_COLOR_ID_TEXT,                        /* normal text color              */
6021     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6022     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
6023 };
6024 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_prompt_11_21_properties =
6025 {
6026     0,                                       /* string id                      */
6027     GX_FONT_ID_PROMPT,                       /* font id                        */
6028     GX_COLOR_ID_GRAY,                        /* normal text color              */
6029     GX_COLOR_ID_GRAY,                        /* selected text color            */
6030     GX_COLOR_ID_WHITE,                       /* disabled text color            */
6031     GX_NULL,                                 /* format function                */
6032     80                                       /* numeric prompt value           */
6033 };
6034 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_prompt_11_10_1_properties =
6035 {
6036     0,                                       /* string id                      */
6037     GX_FONT_ID_PROMPT,                       /* font id                        */
6038     GX_COLOR_ID_GRAY,                        /* normal text color              */
6039     GX_COLOR_ID_GRAY,                        /* selected text color            */
6040     GX_COLOR_ID_WHITE,                       /* disabled text color            */
6041     GX_NULL,                                 /* format function                */
6042     84                                       /* numeric prompt value           */
6043 };
6044 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_prompt_11_11_1_properties =
6045 {
6046     0,                                       /* string id                      */
6047     GX_FONT_ID_PROMPT,                       /* font id                        */
6048     GX_COLOR_ID_GRAY,                        /* normal text color              */
6049     GX_COLOR_ID_GRAY,                        /* selected text color            */
6050     GX_COLOR_ID_WHITE,                       /* disabled text color            */
6051     GX_NULL,                                 /* format function                */
6052     81                                       /* numeric prompt value           */
6053 };
6054 GX_PROMPT_PROPERTIES vitals_screen_prompt_26_1_properties =
6055 {
6056     GX_STRING_ID_STRING_27,                  /* string id                      */
6057     GX_FONT_ID_LARGE,                        /* font id                        */
6058     GX_COLOR_ID_TEXT,                        /* normal text color              */
6059     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6060     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
6061 };
6062 GX_WINDOW_PROPERTIES vitals_screen_patien_info_win_properties =
6063 {
6064     0                                        /* wallpaper pixelmap id          */
6065 };
6066 GX_PROMPT_PROPERTIES vitals_screen_patient_gender_properties =
6067 {
6068     GX_STRING_ID_STRING_29,                  /* string id                      */
6069     GX_FONT_ID_PROMPT,                       /* font id                        */
6070     GX_COLOR_ID_TEXT,                        /* normal text color              */
6071     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6072     GX_COLOR_ID_WHITE                        /* disabled text color            */
6073 };
6074 GX_PROMPT_PROPERTIES vitals_screen_patient_name_properties =
6075 {
6076     GX_STRING_ID_STRING_28,                  /* string id                      */
6077     GX_FONT_ID_NORMAL,                       /* font id                        */
6078     GX_COLOR_ID_TEXT,                        /* normal text color              */
6079     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6080     GX_COLOR_ID_WHITE                        /* disabled text color            */
6081 };
6082 GX_PROMPT_PROPERTIES vitals_screen_patient_dob_properties =
6083 {
6084     GX_STRING_ID_STRING_35,                  /* string id                      */
6085     GX_FONT_ID_SYSTEM,                       /* font id                        */
6086     GX_COLOR_ID_TEXT,                        /* normal text color              */
6087     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6088     GX_COLOR_ID_WHITE                        /* disabled text color            */
6089 };
6090 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_patient_age_properties =
6091 {
6092     0,                                       /* string id                      */
6093     GX_FONT_ID_PROMPT,                       /* font id                        */
6094     GX_COLOR_ID_WHITE,                       /* normal text color              */
6095     GX_COLOR_ID_WHITE,                       /* selected text color            */
6096     GX_COLOR_ID_WHITE,                       /* disabled text color            */
6097     GX_NULL,                                 /* format function                */
6098     67                                       /* numeric prompt value           */
6099 };
6100 GX_PROMPT_PROPERTIES vitals_screen_patient_age_label_properties =
6101 {
6102     GX_STRING_ID_STRING_31,                  /* string id                      */
6103     GX_FONT_ID_SYSTEM,                       /* font id                        */
6104     GX_COLOR_ID_TEXT,                        /* normal text color              */
6105     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6106     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
6107 };
6108 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_patient_number_properties =
6109 {
6110     0,                                       /* string id                      */
6111     GX_FONT_ID_SYSTEM,                       /* font id                        */
6112     GX_COLOR_ID_TEXT,                        /* normal text color              */
6113     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6114     GX_COLOR_ID_DARK_GRAY,                   /* disabled text color            */
6115     GX_NULL,                                 /* format function                */
6116     148326                                   /* numeric prompt value           */
6117 };
6118 GX_PROMPT_PROPERTIES vitals_screen_patient_number_label_properties =
6119 {
6120     GX_STRING_ID_STRING_30,                  /* string id                      */
6121     GX_FONT_ID_SYSTEM,                       /* font id                        */
6122     GX_COLOR_ID_TEXT,                        /* normal text color              */
6123     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6124     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
6125 };
6126 GX_PROMPT_PROPERTIES vitals_screen_patient_room_label_properties =
6127 {
6128     GX_STRING_ID_STRING_32,                  /* string id                      */
6129     GX_FONT_ID_SYSTEM,                       /* font id                        */
6130     GX_COLOR_ID_TEXT,                        /* normal text color              */
6131     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6132     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
6133 };
6134 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_patient_room_id_properties =
6135 {
6136     0,                                       /* string id                      */
6137     GX_FONT_ID_PROMPT,                       /* font id                        */
6138     GX_COLOR_ID_WHITE,                       /* normal text color              */
6139     GX_COLOR_ID_WHITE,                       /* selected text color            */
6140     GX_COLOR_ID_WHITE,                       /* disabled text color            */
6141     GX_NULL,                                 /* format function                */
6142     400                                      /* numeric prompt value           */
6143 };
6144 GX_PROMPT_PROPERTIES vitals_screen_patient_bed_label_properties =
6145 {
6146     GX_STRING_ID_STRING_33,                  /* string id                      */
6147     GX_FONT_ID_SYSTEM,                       /* font id                        */
6148     GX_COLOR_ID_TEXT,                        /* normal text color              */
6149     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6150     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
6151 };
6152 GX_PROMPT_PROPERTIES vitals_screen_patient_bed_id_properties =
6153 {
6154     GX_STRING_ID_STRING_34,                  /* string id                      */
6155     GX_FONT_ID_SYSTEM,                       /* font id                        */
6156     GX_COLOR_ID_TEXT,                        /* normal text color              */
6157     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6158     GX_COLOR_ID_WHITE                        /* disabled text color            */
6159 };
6160 GX_WINDOW_PROPERTIES vitals_screen_temperature_win_properties =
6161 {
6162     0                                        /* wallpaper pixelmap id          */
6163 };
6164 GX_PROMPT_PROPERTIES vitals_screen_prompt_15_properties =
6165 {
6166     GX_STRING_ID_STRING_36,                  /* string id                      */
6167     GX_FONT_ID_SYSTEM,                       /* font id                        */
6168     GX_COLOR_ID_TEXT,                        /* normal text color              */
6169     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6170     GX_COLOR_ID_WHITE                        /* disabled text color            */
6171 };
6172 GX_PROMPT_PROPERTIES vitals_screen_prompt_13_17_properties =
6173 {
6174     GX_STRING_ID_STRING_37,                  /* string id                      */
6175     GX_FONT_ID_SMALL,                        /* font id                        */
6176     GX_COLOR_ID_TEXT,                        /* normal text color              */
6177     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6178     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
6179 };
6180 GX_PROMPT_PROPERTIES vitals_screen_prompt_13_18_properties =
6181 {
6182     GX_STRING_ID_STRING_45,                  /* string id                      */
6183     GX_FONT_ID_SMALL,                        /* font id                        */
6184     GX_COLOR_ID_TEXT,                        /* normal text color              */
6185     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6186     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
6187 };
6188 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_prompt_14_3_properties =
6189 {
6190     0,                                       /* string id                      */
6191     GX_FONT_ID_SYSTEM,                       /* font id                        */
6192     GX_COLOR_ID_TEXT,                        /* normal text color              */
6193     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6194     GX_COLOR_ID_WHITE,                       /* disabled text color            */
6195     GX_NULL,                                 /* format function                */
6196     392                                      /* numeric prompt value           */
6197 };
6198 GX_PROMPT_PROPERTIES vitals_screen_prompt_13_13_1_properties =
6199 {
6200     GX_STRING_ID_STRING_47,                  /* string id                      */
6201     GX_FONT_ID_SMALL,                        /* font id                        */
6202     GX_COLOR_ID_TEXT,                        /* normal text color              */
6203     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6204     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
6205 };
6206 GX_PROMPT_PROPERTIES vitals_screen_prompt_properties =
6207 {
6208     GX_STRING_ID_STRING_60,                  /* string id                      */
6209     GX_FONT_ID_LARGE,                        /* font id                        */
6210     GX_COLOR_ID_WHITE,                       /* normal text color              */
6211     GX_COLOR_ID_WHITE,                       /* selected text color            */
6212     GX_COLOR_ID_GRAY                         /* disabled text color            */
6213 };
6214 GX_PROMPT_PROPERTIES vitals_screen_prompt_5_properties =
6215 {
6216     GX_STRING_ID_STRING_59,                  /* string id                      */
6217     GX_FONT_ID_LARGE,                        /* font id                        */
6218     GX_COLOR_ID_WHITE,                       /* normal text color              */
6219     GX_COLOR_ID_WHITE,                       /* selected text color            */
6220     GX_COLOR_ID_WHITE                        /* disabled text color            */
6221 };
6222 GX_PROMPT_PROPERTIES vitals_screen_prompt_13_12_2_properties =
6223 {
6224     GX_STRING_ID_STRING_46,                  /* string id                      */
6225     GX_FONT_ID_SYSTEM,                       /* font id                        */
6226     GX_COLOR_ID_TEXT,                        /* normal text color              */
6227     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6228     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
6229 };
6230 GX_PROMPT_PROPERTIES vitals_screen_prompt_13_12_3_properties =
6231 {
6232     GX_STRING_ID_STRING_46,                  /* string id                      */
6233     GX_FONT_ID_SYSTEM,                       /* font id                        */
6234     GX_COLOR_ID_TEXT,                        /* normal text color              */
6235     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6236     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
6237 };
6238 GX_WINDOW_PROPERTIES vitals_screen_medtype1_win_properties =
6239 {
6240     0                                        /* wallpaper pixelmap id          */
6241 };
6242 GX_PROMPT_PROPERTIES vitals_screen_medtype1_label_properties =
6243 {
6244     GX_STRING_ID_STRING_40,                  /* string id                      */
6245     GX_FONT_ID_PROMPT,                       /* font id                        */
6246     GX_COLOR_ID_TEXT,                        /* normal text color              */
6247     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6248     GX_COLOR_ID_WHITE                        /* disabled text color            */
6249 };
6250 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_medtype1_value_properties =
6251 {
6252     0,                                       /* string id                      */
6253     GX_FONT_ID_MEDIUM,                       /* font id                        */
6254     GX_COLOR_ID_WHITE,                       /* normal text color              */
6255     GX_COLOR_ID_WHITE,                       /* selected text color            */
6256     GX_COLOR_ID_GRAY,                        /* disabled text color            */
6257     GX_NULL,                                 /* format function                */
6258     55                                       /* numeric prompt value           */
6259 };
6260 GX_PROMPT_PROPERTIES vitals_screen_medtype1_percentage_flag_properties =
6261 {
6262     GX_STRING_ID_STRING_43,                  /* string id                      */
6263     GX_FONT_ID_NORMAL,                       /* font id                        */
6264     GX_COLOR_ID_TEXT,                        /* normal text color              */
6265     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6266     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
6267 };
6268 GX_WINDOW_PROPERTIES vitals_screen_medtype1_slider_win_properties =
6269 {
6270     GX_PIXELMAP_ID_PROGRESS_BAR_BG           /* wallpaper pixelmap id          */
6271 };
6272 GX_PIXELMAP_SLIDER_PROPERTIES vitals_screen_medtype1_slider_properties =
6273 {
6274     0,                                       /* minimum value                  */
6275     100,                                     /* maximum value                  */
6276     25,                                      /* current value                  */
6277     10,                                      /* increment                      */
6278     0,                                       /* minimum travel                 */
6279     0,                                       /* maximum travel                 */
6280     5,                                       /* needle width                   */
6281     10,                                      /* needle height                  */
6282     0,                                       /* needle inset                   */
6283     0,                                       /* needle hotspot                 */
6284     GX_PIXELMAP_ID_PROGRESS_BAR_LOWER_FILL,  /* lower pixelmap id              */
6285     GX_PIXELMAP_ID_PROGRESS_UPPER_FILL,      /* upper pixelmap id              */
6286     0                                        /* needle pixelmap id             */
6287 };
6288 GX_WINDOW_PROPERTIES vitals_screen_medtype3_win_properties =
6289 {
6290     0                                        /* wallpaper pixelmap id          */
6291 };
6292 GX_PROMPT_PROPERTIES vitals_screen_medtype3_label_properties =
6293 {
6294     GX_STRING_ID_STRING_42,                  /* string id                      */
6295     GX_FONT_ID_PROMPT,                       /* font id                        */
6296     GX_COLOR_ID_TEXT,                        /* normal text color              */
6297     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6298     GX_COLOR_ID_WHITE                        /* disabled text color            */
6299 };
6300 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_medtype3_value_properties =
6301 {
6302     0,                                       /* string id                      */
6303     GX_FONT_ID_MEDIUM,                       /* font id                        */
6304     GX_COLOR_ID_WHITE,                       /* normal text color              */
6305     GX_COLOR_ID_WHITE,                       /* selected text color            */
6306     GX_COLOR_ID_GRAY,                        /* disabled text color            */
6307     GX_NULL,                                 /* format function                */
6308     45                                       /* numeric prompt value           */
6309 };
6310 GX_PROMPT_PROPERTIES vitals_screen_medtype3_percentage_flag_properties =
6311 {
6312     GX_STRING_ID_STRING_43,                  /* string id                      */
6313     GX_FONT_ID_NORMAL,                       /* font id                        */
6314     GX_COLOR_ID_TEXT,                        /* normal text color              */
6315     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6316     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
6317 };
6318 GX_WINDOW_PROPERTIES vitals_screen_medtype3_slider_win_properties =
6319 {
6320     GX_PIXELMAP_ID_PROGRESS_BAR_BG           /* wallpaper pixelmap id          */
6321 };
6322 GX_PIXELMAP_SLIDER_PROPERTIES vitals_screen_medtype3_slider_properties =
6323 {
6324     0,                                       /* minimum value                  */
6325     100,                                     /* maximum value                  */
6326     45,                                      /* current value                  */
6327     10,                                      /* increment                      */
6328     0,                                       /* minimum travel                 */
6329     0,                                       /* maximum travel                 */
6330     5,                                       /* needle width                   */
6331     10,                                      /* needle height                  */
6332     0,                                       /* needle inset                   */
6333     0,                                       /* needle hotspot                 */
6334     GX_PIXELMAP_ID_PROGRESS_BAR_LOWER_FILL,  /* lower pixelmap id              */
6335     GX_PIXELMAP_ID_PROGRESS_UPPER_FILL,      /* upper pixelmap id              */
6336     0                                        /* needle pixelmap id             */
6337 };
6338 GX_WINDOW_PROPERTIES vitals_screen_medtype2_win_properties =
6339 {
6340     0                                        /* wallpaper pixelmap id          */
6341 };
6342 GX_PROMPT_PROPERTIES vitals_screen_medtype2_label_properties =
6343 {
6344     GX_STRING_ID_STRING_41,                  /* string id                      */
6345     GX_FONT_ID_PROMPT,                       /* font id                        */
6346     GX_COLOR_ID_TEXT,                        /* normal text color              */
6347     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6348     GX_COLOR_ID_WHITE                        /* disabled text color            */
6349 };
6350 GX_NUMERIC_PROMPT_PROPERTIES vitals_screen_medtype2_value_properties =
6351 {
6352     0,                                       /* string id                      */
6353     GX_FONT_ID_MEDIUM,                       /* font id                        */
6354     GX_COLOR_ID_WHITE,                       /* normal text color              */
6355     GX_COLOR_ID_WHITE,                       /* selected text color            */
6356     GX_COLOR_ID_GRAY,                        /* disabled text color            */
6357     GX_NULL,                                 /* format function                */
6358     25                                       /* numeric prompt value           */
6359 };
6360 GX_PROMPT_PROPERTIES vitals_screen_medtype2_percentage_flag_properties =
6361 {
6362     GX_STRING_ID_STRING_43,                  /* string id                      */
6363     GX_FONT_ID_NORMAL,                       /* font id                        */
6364     GX_COLOR_ID_TEXT,                        /* normal text color              */
6365     GX_COLOR_ID_SELECTED_TEXT,               /* selected text color            */
6366     GX_COLOR_ID_DARK_GRAY                    /* disabled text color            */
6367 };
6368 GX_WINDOW_PROPERTIES vitals_screen_medtype2_slider_win_properties =
6369 {
6370     GX_PIXELMAP_ID_PROGRESS_BAR_BG           /* wallpaper pixelmap id          */
6371 };
6372 GX_PIXELMAP_SLIDER_PROPERTIES vitals_screen_medtype2_slider_properties =
6373 {
6374     0,                                       /* minimum value                  */
6375     100,                                     /* maximum value                  */
6376     25,                                      /* current value                  */
6377     10,                                      /* increment                      */
6378     0,                                       /* minimum travel                 */
6379     0,                                       /* maximum travel                 */
6380     5,                                       /* needle width                   */
6381     10,                                      /* needle height                  */
6382     0,                                       /* needle inset                   */
6383     0,                                       /* needle hotspot                 */
6384     GX_PIXELMAP_ID_PROGRESS_BAR_LOWER_FILL,  /* lower pixelmap id              */
6385     GX_PIXELMAP_ID_PROGRESS_UPPER_FILL,      /* upper pixelmap id              */
6386     0                                        /* needle pixelmap id             */
6387 };
6388 
6389 GX_CONST GX_STUDIO_WIDGET vitals_screen_insulin_value_define =
6390 {
6391     "insulin_value",
6392     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
6393     GX_ID_NONE,                              /* widget id                      */
6394     #if defined(GX_WIDGET_USER_DATA)
6395     0,                                       /* user data                      */
6396     #endif
6397     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
6398     0,                                       /* status flags                   */
6399     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
6400     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
6401     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
6402     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
6403     gx_studio_numeric_prompt_create,         /* create function                */
6404     GX_NULL,                                 /* drawing function override      */
6405     GX_NULL,                                 /* event function override        */
6406     {25, 110, 91, 140},                      /* widget size                    */
6407     GX_NULL,                                 /* no next widget                 */
6408     GX_NULL,                                 /* no child widgets               */
6409     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_insulin_value), /* control block */
6410     (void *) &vitals_screen_insulin_value_properties /* extended properties    */
6411 };
6412 
6413 GX_CONST GX_STUDIO_WIDGET vitals_screen_insulin_unit_1_define =
6414 {
6415     "insulin_unit_1",
6416     GX_TYPE_PROMPT,                          /* widget type                    */
6417     GX_ID_NONE,                              /* widget id                      */
6418     #if defined(GX_WIDGET_USER_DATA)
6419     0,                                       /* user data                      */
6420     #endif
6421     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
6422     0,                                       /* status flags                   */
6423     sizeof(GX_PROMPT),                       /* control block size             */
6424     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
6425     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
6426     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
6427     gx_studio_prompt_create,                 /* create function                */
6428     GX_NULL,                                 /* drawing function override      */
6429     GX_NULL,                                 /* event function override        */
6430     {49, 141, 73, 150},                      /* widget size                    */
6431     &vitals_screen_insulin_value_define,     /* next widget definition         */
6432     GX_NULL,                                 /* no child widgets               */
6433     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_insulin_unit_1), /* control block */
6434     (void *) &vitals_screen_insulin_unit_1_properties /* extended properties   */
6435 };
6436 
6437 GX_CONST GX_STUDIO_WIDGET vitals_screen_insulin_name_1_define =
6438 {
6439     "insulin_name_1",
6440     GX_TYPE_PROMPT,                          /* widget type                    */
6441     GX_ID_NONE,                              /* widget id                      */
6442     #if defined(GX_WIDGET_USER_DATA)
6443     0,                                       /* user data                      */
6444     #endif
6445     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
6446     0,                                       /* status flags                   */
6447     sizeof(GX_PROMPT),                       /* control block size             */
6448     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
6449     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
6450     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
6451     gx_studio_prompt_create,                 /* create function                */
6452     GX_NULL,                                 /* drawing function override      */
6453     GX_NULL,                                 /* event function override        */
6454     {37, 97, 81, 106},                       /* widget size                    */
6455     &vitals_screen_insulin_unit_1_define,    /* next widget definition         */
6456     GX_NULL,                                 /* no child widgets               */
6457     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_insulin_name_1), /* control block */
6458     (void *) &vitals_screen_insulin_name_1_properties /* extended properties   */
6459 };
6460 
6461 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_2_define =
6462 {
6463     "prompt_2",
6464     GX_TYPE_PROMPT,                          /* widget type                    */
6465     GX_ID_NONE,                              /* widget id                      */
6466     #if defined(GX_WIDGET_USER_DATA)
6467     0,                                       /* user data                      */
6468     #endif
6469     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
6470     0,                                       /* status flags                   */
6471     sizeof(GX_PROMPT),                       /* control block size             */
6472     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
6473     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
6474     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
6475     gx_studio_prompt_create,                 /* create function                */
6476     GX_NULL,                                 /* drawing function override      */
6477     GX_NULL,                                 /* event function override        */
6478     {190, 108, 244, 143},                    /* widget size                    */
6479     GX_NULL,                                 /* no next widget                 */
6480     GX_NULL,                                 /* no child widgets               */
6481     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_2), /* control block */
6482     (void *) &vitals_screen_prompt_2_properties /* extended properties         */
6483 };
6484 
6485 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_1_define =
6486 {
6487     "prompt_1",
6488     GX_TYPE_PROMPT,                          /* widget type                    */
6489     GX_ID_NONE,                              /* widget id                      */
6490     #if defined(GX_WIDGET_USER_DATA)
6491     0,                                       /* user data                      */
6492     #endif
6493     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
6494     0,                                       /* status flags                   */
6495     sizeof(GX_PROMPT),                       /* control block size             */
6496     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
6497     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
6498     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
6499     gx_studio_prompt_create,                 /* create function                */
6500     GX_NULL,                                 /* drawing function override      */
6501     GX_NULL,                                 /* event function override        */
6502     {102, 108, 156, 143},                    /* widget size                    */
6503     &vitals_screen_prompt_2_define,          /* next widget definition         */
6504     GX_NULL,                                 /* no child widgets               */
6505     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_1), /* control block */
6506     (void *) &vitals_screen_prompt_1_properties /* extended properties         */
6507 };
6508 
6509 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_22_define =
6510 {
6511     "prompt_22",
6512     GX_TYPE_PROMPT,                          /* widget type                    */
6513     GX_ID_NONE,                              /* widget id                      */
6514     #if defined(GX_WIDGET_USER_DATA)
6515     0,                                       /* user data                      */
6516     #endif
6517     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
6518     0,                                       /* status flags                   */
6519     sizeof(GX_PROMPT),                       /* control block size             */
6520     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
6521     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
6522     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
6523     gx_studio_prompt_create,                 /* create function                */
6524     GX_NULL,                                 /* drawing function override      */
6525     GX_NULL,                                 /* event function override        */
6526     {251, 143, 298, 160},                    /* widget size                    */
6527     &vitals_screen_prompt_1_define,          /* next widget definition         */
6528     GX_NULL,                                 /* no child widgets               */
6529     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_22), /* control block */
6530     (void *) &vitals_screen_prompt_22_properties /* extended properties        */
6531 };
6532 
6533 GX_CONST GX_STUDIO_WIDGET vitals_screen_glucose_value_define =
6534 {
6535     "glucose_value",
6536     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
6537     GX_ID_NONE,                              /* widget id                      */
6538     #if defined(GX_WIDGET_USER_DATA)
6539     0,                                       /* user data                      */
6540     #endif
6541     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
6542     0,                                       /* status flags                   */
6543     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
6544     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
6545     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
6546     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
6547     gx_studio_numeric_prompt_create,         /* create function                */
6548     GX_NULL,                                 /* drawing function override      */
6549     GX_NULL,                                 /* event function override        */
6550     {251, 108, 316, 143},                    /* widget size                    */
6551     &vitals_screen_prompt_22_define,         /* next widget definition         */
6552     GX_NULL,                                 /* no child widgets               */
6553     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_glucose_value), /* control block */
6554     (void *) &vitals_screen_glucose_value_properties /* extended properties    */
6555 };
6556 
6557 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_21_define =
6558 {
6559     "prompt_21",
6560     GX_TYPE_PROMPT,                          /* widget type                    */
6561     GX_ID_NONE,                              /* widget id                      */
6562     #if defined(GX_WIDGET_USER_DATA)
6563     0,                                       /* user data                      */
6564     #endif
6565     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
6566     0,                                       /* status flags                   */
6567     sizeof(GX_PROMPT),                       /* control block size             */
6568     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
6569     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
6570     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
6571     gx_studio_prompt_create,                 /* create function                */
6572     GX_NULL,                                 /* drawing function override      */
6573     GX_NULL,                                 /* event function override        */
6574     {251, 89, 311, 106},                     /* widget size                    */
6575     &vitals_screen_glucose_value_define,     /* next widget definition         */
6576     GX_NULL,                                 /* no child widgets               */
6577     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_21), /* control block */
6578     (void *) &vitals_screen_prompt_21_properties /* extended properties        */
6579 };
6580 
6581 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_20_define =
6582 {
6583     "prompt_20",
6584     GX_TYPE_PROMPT,                          /* widget type                    */
6585     GX_ID_NONE,                              /* widget id                      */
6586     #if defined(GX_WIDGET_USER_DATA)
6587     0,                                       /* user data                      */
6588     #endif
6589     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
6590     0,                                       /* status flags                   */
6591     sizeof(GX_PROMPT),                       /* control block size             */
6592     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
6593     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
6594     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
6595     gx_studio_prompt_create,                 /* create function                */
6596     GX_NULL,                                 /* drawing function override      */
6597     GX_NULL,                                 /* event function override        */
6598     {194, 145, 205, 162},                    /* widget size                    */
6599     &vitals_screen_prompt_21_define,         /* next widget definition         */
6600     GX_NULL,                                 /* no child widgets               */
6601     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_20), /* control block */
6602     (void *) &vitals_screen_prompt_20_properties /* extended properties        */
6603 };
6604 
6605 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_19_define =
6606 {
6607     "prompt_19",
6608     GX_TYPE_PROMPT,                          /* widget type                    */
6609     GX_ID_NONE,                              /* widget id                      */
6610     #if defined(GX_WIDGET_USER_DATA)
6611     0,                                       /* user data                      */
6612     #endif
6613     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
6614     0,                                       /* status flags                   */
6615     sizeof(GX_PROMPT),                       /* control block size             */
6616     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
6617     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
6618     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
6619     gx_studio_prompt_create,                 /* create function                */
6620     GX_NULL,                                 /* drawing function override      */
6621     GX_NULL,                                 /* event function override        */
6622     {194, 89, 221, 106},                     /* widget size                    */
6623     &vitals_screen_prompt_20_define,         /* next widget definition         */
6624     GX_NULL,                                 /* no child widgets               */
6625     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_19), /* control block */
6626     (void *) &vitals_screen_prompt_19_properties /* extended properties        */
6627 };
6628 
6629 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_18_define =
6630 {
6631     "prompt_18",
6632     GX_TYPE_PROMPT,                          /* widget type                    */
6633     GX_ID_NONE,                              /* widget id                      */
6634     #if defined(GX_WIDGET_USER_DATA)
6635     0,                                       /* user data                      */
6636     #endif
6637     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
6638     0,                                       /* status flags                   */
6639     sizeof(GX_PROMPT),                       /* control block size             */
6640     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
6641     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
6642     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
6643     gx_studio_prompt_create,                 /* create function                */
6644     GX_NULL,                                 /* drawing function override      */
6645     GX_NULL,                                 /* event function override        */
6646     {105, 89, 184, 106},                     /* widget size                    */
6647     &vitals_screen_prompt_19_define,         /* next widget definition         */
6648     GX_NULL,                                 /* no child widgets               */
6649     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_18), /* control block */
6650     (void *) &vitals_screen_prompt_18_properties /* extended properties        */
6651 };
6652 
6653 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_17_define =
6654 {
6655     "prompt_17",
6656     GX_TYPE_PROMPT,                          /* widget type                    */
6657     GX_ID_NONE,                              /* widget id                      */
6658     #if defined(GX_WIDGET_USER_DATA)
6659     0,                                       /* user data                      */
6660     #endif
6661     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
6662     0,                                       /* status flags                   */
6663     sizeof(GX_PROMPT),                       /* control block size             */
6664     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
6665     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
6666     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
6667     gx_studio_prompt_create,                 /* create function                */
6668     GX_NULL,                                 /* drawing function override      */
6669     GX_NULL,                                 /* event function override        */
6670     {105, 145, 116, 162},                    /* widget size                    */
6671     &vitals_screen_prompt_18_define,         /* next widget definition         */
6672     GX_NULL,                                 /* no child widgets               */
6673     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_17), /* control block */
6674     (void *) &vitals_screen_prompt_17_properties /* extended properties        */
6675 };
6676 
6677 GX_CONST GX_STUDIO_WIDGET vitals_screen_insulin_define =
6678 {
6679     "insulin",
6680     GX_TYPE_ICON,                            /* widget type                    */
6681     GX_ID_NONE,                              /* widget id                      */
6682     #if defined(GX_WIDGET_USER_DATA)
6683     0,                                       /* user data                      */
6684     #endif
6685     GX_STYLE_BORDER_NONE|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP,   /* style flags */
6686     0,                                       /* status flags                   */
6687     sizeof(GX_ICON),                         /* control block size             */
6688     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
6689     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
6690     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
6691     gx_studio_icon_create,                   /* create function                */
6692     GX_NULL,                                 /* drawing function override      */
6693     GX_NULL,                                 /* event function override        */
6694     {25, 88, 93, 156},                       /* widget size                    */
6695     &vitals_screen_prompt_17_define,         /* next widget definition         */
6696     &vitals_screen_insulin_name_1_define,    /* child widget definition        */
6697     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_insulin), /* control block */
6698     (void *) &vitals_screen_insulin_properties /* extended properties          */
6699 };
6700 
6701 GX_CONST GX_STUDIO_WIDGET vitals_screen_hr_value_define =
6702 {
6703     "hr_value",
6704     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
6705     GX_ID_NONE,                              /* widget id                      */
6706     #if defined(GX_WIDGET_USER_DATA)
6707     0,                                       /* user data                      */
6708     #endif
6709     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
6710     0,                                       /* status flags                   */
6711     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
6712     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
6713     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
6714     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
6715     gx_studio_numeric_prompt_create,         /* create function                */
6716     GX_NULL,                                 /* drawing function override      */
6717     GX_NULL,                                 /* event function override        */
6718     {39, 206, 82, 241},                      /* widget size                    */
6719     GX_NULL,                                 /* no next widget                 */
6720     GX_NULL,                                 /* no child widgets               */
6721     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_hr_value), /* control block */
6722     (void *) &vitals_screen_hr_value_properties /* extended properties         */
6723 };
6724 
6725 GX_CONST GX_STUDIO_WIDGET vitals_screen_BPM_label_define =
6726 {
6727     "BPM_label",
6728     GX_TYPE_PROMPT,                          /* widget type                    */
6729     GX_ID_NONE,                              /* widget id                      */
6730     #if defined(GX_WIDGET_USER_DATA)
6731     0,                                       /* user data                      */
6732     #endif
6733     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
6734     0,                                       /* status flags                   */
6735     sizeof(GX_PROMPT),                       /* control block size             */
6736     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
6737     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
6738     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
6739     gx_studio_prompt_create,                 /* create function                */
6740     GX_NULL,                                 /* drawing function override      */
6741     GX_NULL,                                 /* event function override        */
6742     {49, 242, 73, 251},                      /* widget size                    */
6743     &vitals_screen_hr_value_define,          /* next widget definition         */
6744     GX_NULL,                                 /* no child widgets               */
6745     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_BPM_label), /* control block */
6746     (void *) &vitals_screen_BPM_label_properties /* extended properties        */
6747 };
6748 
6749 GX_CONST GX_STUDIO_WIDGET vitals_screen_ekg_label_define =
6750 {
6751     "ekg_label",
6752     GX_TYPE_PROMPT,                          /* widget type                    */
6753     GX_ID_NONE,                              /* widget id                      */
6754     #if defined(GX_WIDGET_USER_DATA)
6755     0,                                       /* user data                      */
6756     #endif
6757     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
6758     0,                                       /* status flags                   */
6759     sizeof(GX_PROMPT),                       /* control block size             */
6760     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
6761     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
6762     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
6763     gx_studio_prompt_create,                 /* create function                */
6764     GX_NULL,                                 /* drawing function override      */
6765     GX_NULL,                                 /* event function override        */
6766     {49, 194, 71, 203},                      /* widget size                    */
6767     &vitals_screen_BPM_label_define,         /* next widget definition         */
6768     GX_NULL,                                 /* no child widgets               */
6769     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_ekg_label), /* control block */
6770     (void *) &vitals_screen_ekg_label_properties /* extended properties        */
6771 };
6772 
6773 GX_CONST GX_STUDIO_WIDGET vitals_screen_ekg_waveform_win_define =
6774 {
6775     "ekg_waveform_win",
6776     GX_TYPE_WINDOW,                          /* widget type                    */
6777     GX_ID_NONE,                              /* widget id                      */
6778     #if defined(GX_WIDGET_USER_DATA)
6779     0,                                       /* user data                      */
6780     #endif
6781     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT,   /* style flags                */
6782     0,                                       /* status flags                   */
6783     sizeof(GX_WINDOW),                       /* control block size             */
6784     GX_COLOR_ID_CANVAS,                      /* normal color id                */
6785     GX_COLOR_ID_CANVAS,                      /* selected color id              */
6786     GX_COLOR_ID_CANVAS,                      /* disabled color id              */
6787     gx_studio_window_create,                 /* create function                */
6788     GX_NULL,                                 /* drawing function override      */
6789     GX_NULL,                                 /* event function override        */
6790     {94, 186, 314, 254},                     /* widget size                    */
6791     GX_NULL,                                 /* no next widget                 */
6792     GX_NULL,                                 /* no child widgets               */
6793     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_ekg_waveform_win), /* control block */
6794     (void *) &vitals_screen_ekg_waveform_win_properties /* extended properties */
6795 };
6796 
6797 GX_CONST GX_STUDIO_WIDGET vitals_screen_heart_rate_icon_define =
6798 {
6799     "heart_rate_icon",
6800     GX_TYPE_ICON,                            /* widget type                    */
6801     GX_ID_NONE,                              /* widget id                      */
6802     #if defined(GX_WIDGET_USER_DATA)
6803     0,                                       /* user data                      */
6804     #endif
6805     GX_STYLE_BORDER_NONE|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP,   /* style flags */
6806     0,                                       /* status flags                   */
6807     sizeof(GX_ICON),                         /* control block size             */
6808     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
6809     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
6810     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
6811     gx_studio_icon_create,                   /* create function                */
6812     GX_NULL,                                 /* drawing function override      */
6813     GX_NULL,                                 /* event function override        */
6814     {25, 187, 93, 255},                      /* widget size                    */
6815     &vitals_screen_ekg_waveform_win_define,  /* next widget definition         */
6816     &vitals_screen_ekg_label_define,         /* child widget definition        */
6817     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_heart_rate_icon), /* control block */
6818     (void *) &vitals_screen_heart_rate_icon_properties /* extended properties  */
6819 };
6820 
6821 GX_CONST GX_STUDIO_WIDGET vitals_screen_spo2_value_define =
6822 {
6823     "spo2_value",
6824     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
6825     GX_ID_NONE,                              /* widget id                      */
6826     #if defined(GX_WIDGET_USER_DATA)
6827     0,                                       /* user data                      */
6828     #endif
6829     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
6830     0,                                       /* status flags                   */
6831     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
6832     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
6833     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
6834     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
6835     gx_studio_numeric_prompt_create,         /* create function                */
6836     GX_NULL,                                 /* drawing function override      */
6837     GX_NULL,                                 /* event function override        */
6838     {39, 304, 82, 339},                      /* widget size                    */
6839     GX_NULL,                                 /* no next widget                 */
6840     GX_NULL,                                 /* no child widgets               */
6841     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_spo2_value), /* control block */
6842     (void *) &vitals_screen_spo2_value_properties /* extended properties       */
6843 };
6844 
6845 GX_CONST GX_STUDIO_WIDGET vitals_screen_spo2_label_define =
6846 {
6847     "spo2_label",
6848     GX_TYPE_PROMPT,                          /* widget type                    */
6849     GX_ID_NONE,                              /* widget id                      */
6850     #if defined(GX_WIDGET_USER_DATA)
6851     0,                                       /* user data                      */
6852     #endif
6853     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
6854     0,                                       /* status flags                   */
6855     sizeof(GX_PROMPT),                       /* control block size             */
6856     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
6857     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
6858     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
6859     gx_studio_prompt_create,                 /* create function                */
6860     GX_NULL,                                 /* drawing function override      */
6861     GX_NULL,                                 /* event function override        */
6862     {48, 339, 77, 348},                      /* widget size                    */
6863     &vitals_screen_spo2_value_define,        /* next widget definition         */
6864     GX_NULL,                                 /* no child widgets               */
6865     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_spo2_label), /* control block */
6866     (void *) &vitals_screen_spo2_label_properties /* extended properties       */
6867 };
6868 
6869 GX_CONST GX_STUDIO_WIDGET vitals_screen_pulse_label_define =
6870 {
6871     "pulse_label",
6872     GX_TYPE_PROMPT,                          /* widget type                    */
6873     GX_ID_NONE,                              /* widget id                      */
6874     #if defined(GX_WIDGET_USER_DATA)
6875     0,                                       /* user data                      */
6876     #endif
6877     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
6878     0,                                       /* status flags                   */
6879     sizeof(GX_PROMPT),                       /* control block size             */
6880     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
6881     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
6882     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
6883     gx_studio_prompt_create,                 /* create function                */
6884     GX_NULL,                                 /* drawing function override      */
6885     GX_NULL,                                 /* event function override        */
6886     {44, 292, 78, 301},                      /* widget size                    */
6887     &vitals_screen_spo2_label_define,        /* next widget definition         */
6888     GX_NULL,                                 /* no child widgets               */
6889     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_pulse_label), /* control block */
6890     (void *) &vitals_screen_pulse_label_properties /* extended properties      */
6891 };
6892 
6893 GX_CONST GX_STUDIO_WIDGET vitals_screen_pulse_waveform_win_define =
6894 {
6895     "pulse_waveform_win",
6896     GX_TYPE_WINDOW,                          /* widget type                    */
6897     GX_ID_NONE,                              /* widget id                      */
6898     #if defined(GX_WIDGET_USER_DATA)
6899     0,                                       /* user data                      */
6900     #endif
6901     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT,   /* style flags                */
6902     0,                                       /* status flags                   */
6903     sizeof(GX_WINDOW),                       /* control block size             */
6904     GX_COLOR_ID_WINDOW_FILL,                 /* normal color id                */
6905     GX_COLOR_ID_WINDOW_FILL,                 /* selected color id              */
6906     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
6907     gx_studio_window_create,                 /* create function                */
6908     GX_NULL,                                 /* drawing function override      */
6909     GX_NULL,                                 /* event function override        */
6910     {94, 285, 314, 353},                     /* widget size                    */
6911     GX_NULL,                                 /* no next widget                 */
6912     GX_NULL,                                 /* no child widgets               */
6913     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_pulse_waveform_win), /* control block */
6914     (void *) &vitals_screen_pulse_waveform_win_properties /* extended properties */
6915 };
6916 
6917 GX_CONST GX_STUDIO_WIDGET vitals_screen_spo2_icon_define =
6918 {
6919     "spo2_icon",
6920     GX_TYPE_ICON,                            /* widget type                    */
6921     GX_ID_NONE,                              /* widget id                      */
6922     #if defined(GX_WIDGET_USER_DATA)
6923     0,                                       /* user data                      */
6924     #endif
6925     GX_STYLE_BORDER_NONE|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP,   /* style flags */
6926     0,                                       /* status flags                   */
6927     sizeof(GX_ICON),                         /* control block size             */
6928     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
6929     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
6930     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
6931     gx_studio_icon_create,                   /* create function                */
6932     GX_NULL,                                 /* drawing function override      */
6933     GX_NULL,                                 /* event function override        */
6934     {25, 285, 93, 353},                      /* widget size                    */
6935     &vitals_screen_pulse_waveform_win_define, /* next widget definition        */
6936     &vitals_screen_pulse_label_define,       /* child widget definition        */
6937     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_spo2_icon), /* control block */
6938     (void *) &vitals_screen_spo2_icon_properties /* extended properties        */
6939 };
6940 
6941 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_26_1_define =
6942 {
6943     "prompt_26_1",
6944     GX_TYPE_PROMPT,                          /* widget type                    */
6945     GX_ID_NONE,                              /* widget id                      */
6946     #if defined(GX_WIDGET_USER_DATA)
6947     0,                                       /* user data                      */
6948     #endif
6949     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
6950     0,                                       /* status flags                   */
6951     sizeof(GX_PROMPT),                       /* control block size             */
6952     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
6953     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
6954     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
6955     gx_studio_prompt_create,                 /* create function                */
6956     GX_NULL,                                 /* drawing function override      */
6957     GX_NULL,                                 /* event function override        */
6958     {120, 414, 134, 460},                    /* widget size                    */
6959     GX_NULL,                                 /* no next widget                 */
6960     GX_NULL,                                 /* no child widgets               */
6961     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_26_1), /* control block */
6962     (void *) &vitals_screen_prompt_26_1_properties /* extended properties      */
6963 };
6964 
6965 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_11_11_1_define =
6966 {
6967     "prompt_11_11_1",
6968     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
6969     GX_ID_NONE,                              /* widget id                      */
6970     #if defined(GX_WIDGET_USER_DATA)
6971     0,                                       /* user data                      */
6972     #endif
6973     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
6974     0,                                       /* status flags                   */
6975     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
6976     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
6977     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
6978     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
6979     gx_studio_numeric_prompt_create,         /* create function                */
6980     GX_NULL,                                 /* drawing function override      */
6981     GX_NULL,                                 /* event function override        */
6982     {302, 441, 319, 458},                    /* widget size                    */
6983     &vitals_screen_prompt_26_1_define,       /* next widget definition         */
6984     GX_NULL,                                 /* no child widgets               */
6985     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_11_11_1), /* control block */
6986     (void *) &vitals_screen_prompt_11_11_1_properties /* extended properties   */
6987 };
6988 
6989 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_11_10_1_define =
6990 {
6991     "prompt_11_10_1",
6992     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
6993     GX_ID_NONE,                              /* widget id                      */
6994     #if defined(GX_WIDGET_USER_DATA)
6995     0,                                       /* user data                      */
6996     #endif
6997     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
6998     0,                                       /* status flags                   */
6999     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
7000     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7001     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7002     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7003     gx_studio_numeric_prompt_create,         /* create function                */
7004     GX_NULL,                                 /* drawing function override      */
7005     GX_NULL,                                 /* event function override        */
7006     {302, 422, 319, 439},                    /* widget size                    */
7007     &vitals_screen_prompt_11_11_1_define,    /* next widget definition         */
7008     GX_NULL,                                 /* no child widgets               */
7009     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_11_10_1), /* control block */
7010     (void *) &vitals_screen_prompt_11_10_1_properties /* extended properties   */
7011 };
7012 
7013 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_11_21_define =
7014 {
7015     "prompt_11_21",
7016     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
7017     GX_ID_NONE,                              /* widget id                      */
7018     #if defined(GX_WIDGET_USER_DATA)
7019     0,                                       /* user data                      */
7020     #endif
7021     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7022     0,                                       /* status flags                   */
7023     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
7024     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7025     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7026     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7027     gx_studio_numeric_prompt_create,         /* create function                */
7028     GX_NULL,                                 /* drawing function override      */
7029     GX_NULL,                                 /* event function override        */
7030     {302, 403, 319, 420},                    /* widget size                    */
7031     &vitals_screen_prompt_11_10_1_define,    /* next widget definition         */
7032     GX_NULL,                                 /* no child widgets               */
7033     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_11_21), /* control block */
7034     (void *) &vitals_screen_prompt_11_21_properties /* extended properties     */
7035 };
7036 
7037 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_10_11_define =
7038 {
7039     "prompt_10_11",
7040     GX_TYPE_PROMPT,                          /* widget type                    */
7041     GX_ID_NONE,                              /* widget id                      */
7042     #if defined(GX_WIDGET_USER_DATA)
7043     0,                                       /* user data                      */
7044     #endif
7045     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7046     0,                                       /* status flags                   */
7047     sizeof(GX_PROMPT),                       /* control block size             */
7048     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7049     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7050     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7051     gx_studio_prompt_create,                 /* create function                */
7052     GX_NULL,                                 /* drawing function override      */
7053     GX_NULL,                                 /* event function override        */
7054     {295, 403, 300, 420},                    /* widget size                    */
7055     &vitals_screen_prompt_11_21_define,      /* next widget definition         */
7056     GX_NULL,                                 /* no child widgets               */
7057     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_10_11), /* control block */
7058     (void *) &vitals_screen_prompt_10_11_properties /* extended properties     */
7059 };
7060 
7061 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_10_10_define =
7062 {
7063     "prompt_10_10",
7064     GX_TYPE_PROMPT,                          /* widget type                    */
7065     GX_ID_NONE,                              /* widget id                      */
7066     #if defined(GX_WIDGET_USER_DATA)
7067     0,                                       /* user data                      */
7068     #endif
7069     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7070     0,                                       /* status flags                   */
7071     sizeof(GX_PROMPT),                       /* control block size             */
7072     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7073     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7074     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7075     gx_studio_prompt_create,                 /* create function                */
7076     GX_NULL,                                 /* drawing function override      */
7077     GX_NULL,                                 /* event function override        */
7078     {295, 422, 300, 439},                    /* widget size                    */
7079     &vitals_screen_prompt_10_11_define,      /* next widget definition         */
7080     GX_NULL,                                 /* no child widgets               */
7081     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_10_10), /* control block */
7082     (void *) &vitals_screen_prompt_10_10_properties /* extended properties     */
7083 };
7084 
7085 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_10_9_define =
7086 {
7087     "prompt_10_9",
7088     GX_TYPE_PROMPT,                          /* widget type                    */
7089     GX_ID_NONE,                              /* widget id                      */
7090     #if defined(GX_WIDGET_USER_DATA)
7091     0,                                       /* user data                      */
7092     #endif
7093     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7094     0,                                       /* status flags                   */
7095     sizeof(GX_PROMPT),                       /* control block size             */
7096     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7097     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7098     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7099     gx_studio_prompt_create,                 /* create function                */
7100     GX_NULL,                                 /* drawing function override      */
7101     GX_NULL,                                 /* event function override        */
7102     {295, 441, 300, 458},                    /* widget size                    */
7103     &vitals_screen_prompt_10_10_define,      /* next widget definition         */
7104     GX_NULL,                                 /* no child widgets               */
7105     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_10_9), /* control block */
7106     (void *) &vitals_screen_prompt_10_9_properties /* extended properties      */
7107 };
7108 
7109 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_11_20_define =
7110 {
7111     "prompt_11_20",
7112     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
7113     GX_ID_NONE,                              /* widget id                      */
7114     #if defined(GX_WIDGET_USER_DATA)
7115     0,                                       /* user data                      */
7116     #endif
7117     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7118     0,                                       /* status flags                   */
7119     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
7120     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7121     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7122     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7123     gx_studio_numeric_prompt_create,         /* create function                */
7124     GX_NULL,                                 /* drawing function override      */
7125     GX_NULL,                                 /* event function override        */
7126     {267, 441, 293, 459},                    /* widget size                    */
7127     &vitals_screen_prompt_10_9_define,       /* next widget definition         */
7128     GX_NULL,                                 /* no child widgets               */
7129     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_11_20), /* control block */
7130     (void *) &vitals_screen_prompt_11_20_properties /* extended properties     */
7131 };
7132 
7133 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_11_19_define =
7134 {
7135     "prompt_11_19",
7136     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
7137     GX_ID_NONE,                              /* widget id                      */
7138     #if defined(GX_WIDGET_USER_DATA)
7139     0,                                       /* user data                      */
7140     #endif
7141     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7142     0,                                       /* status flags                   */
7143     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
7144     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7145     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7146     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7147     gx_studio_numeric_prompt_create,         /* create function                */
7148     GX_NULL,                                 /* drawing function override      */
7149     GX_NULL,                                 /* event function override        */
7150     {267, 422, 293, 439},                    /* widget size                    */
7151     &vitals_screen_prompt_11_20_define,      /* next widget definition         */
7152     GX_NULL,                                 /* no child widgets               */
7153     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_11_19), /* control block */
7154     (void *) &vitals_screen_prompt_11_19_properties /* extended properties     */
7155 };
7156 
7157 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_11_18_define =
7158 {
7159     "prompt_11_18",
7160     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
7161     GX_ID_NONE,                              /* widget id                      */
7162     #if defined(GX_WIDGET_USER_DATA)
7163     0,                                       /* user data                      */
7164     #endif
7165     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7166     0,                                       /* status flags                   */
7167     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
7168     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7169     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7170     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7171     gx_studio_numeric_prompt_create,         /* create function                */
7172     GX_NULL,                                 /* drawing function override      */
7173     GX_NULL,                                 /* event function override        */
7174     {267, 403, 293, 420},                    /* widget size                    */
7175     &vitals_screen_prompt_11_19_define,      /* next widget definition         */
7176     GX_NULL,                                 /* no child widgets               */
7177     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_11_18), /* control block */
7178     (void *) &vitals_screen_prompt_11_18_properties /* extended properties     */
7179 };
7180 
7181 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_10_8_define =
7182 {
7183     "prompt_10_8",
7184     GX_TYPE_PROMPT,                          /* widget type                    */
7185     GX_ID_NONE,                              /* widget id                      */
7186     #if defined(GX_WIDGET_USER_DATA)
7187     0,                                       /* user data                      */
7188     #endif
7189     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7190     0,                                       /* status flags                   */
7191     sizeof(GX_PROMPT),                       /* control block size             */
7192     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7193     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7194     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7195     gx_studio_prompt_create,                 /* create function                */
7196     GX_NULL,                                 /* drawing function override      */
7197     GX_NULL,                                 /* event function override        */
7198     {241, 405, 258, 414},                    /* widget size                    */
7199     &vitals_screen_prompt_11_18_define,      /* next widget definition         */
7200     GX_NULL,                                 /* no child widgets               */
7201     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_10_8), /* control block */
7202     (void *) &vitals_screen_prompt_10_8_properties /* extended properties      */
7203 };
7204 
7205 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_10_7_define =
7206 {
7207     "prompt_10_7",
7208     GX_TYPE_PROMPT,                          /* widget type                    */
7209     GX_ID_NONE,                              /* widget id                      */
7210     #if defined(GX_WIDGET_USER_DATA)
7211     0,                                       /* user data                      */
7212     #endif
7213     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7214     0,                                       /* status flags                   */
7215     sizeof(GX_PROMPT),                       /* control block size             */
7216     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7217     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7218     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7219     gx_studio_prompt_create,                 /* create function                */
7220     GX_NULL,                                 /* drawing function override      */
7221     GX_NULL,                                 /* event function override        */
7222     {241, 425, 258, 434},                    /* widget size                    */
7223     &vitals_screen_prompt_10_8_define,       /* next widget definition         */
7224     GX_NULL,                                 /* no child widgets               */
7225     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_10_7), /* control block */
7226     (void *) &vitals_screen_prompt_10_7_properties /* extended properties      */
7227 };
7228 
7229 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_10_6_define =
7230 {
7231     "prompt_10_6",
7232     GX_TYPE_PROMPT,                          /* widget type                    */
7233     GX_ID_NONE,                              /* widget id                      */
7234     #if defined(GX_WIDGET_USER_DATA)
7235     0,                                       /* user data                      */
7236     #endif
7237     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7238     0,                                       /* status flags                   */
7239     sizeof(GX_PROMPT),                       /* control block size             */
7240     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7241     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7242     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7243     gx_studio_prompt_create,                 /* create function                */
7244     GX_NULL,                                 /* drawing function override      */
7245     GX_NULL,                                 /* event function override        */
7246     {241, 444, 258, 453},                    /* widget size                    */
7247     &vitals_screen_prompt_10_7_define,       /* next widget definition         */
7248     GX_NULL,                                 /* no child widgets               */
7249     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_10_6), /* control block */
7250     (void *) &vitals_screen_prompt_10_6_properties /* extended properties      */
7251 };
7252 
7253 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_11_17_define =
7254 {
7255     "prompt_11_17",
7256     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
7257     GX_ID_NONE,                              /* widget id                      */
7258     #if defined(GX_WIDGET_USER_DATA)
7259     0,                                       /* user data                      */
7260     #endif
7261     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7262     0,                                       /* status flags                   */
7263     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
7264     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7265     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7266     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7267     gx_studio_numeric_prompt_create,         /* create function                */
7268     GX_NULL,                                 /* drawing function override      */
7269     GX_NULL,                                 /* event function override        */
7270     {221, 440, 238, 457},                    /* widget size                    */
7271     &vitals_screen_prompt_10_6_define,       /* next widget definition         */
7272     GX_NULL,                                 /* no child widgets               */
7273     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_11_17), /* control block */
7274     (void *) &vitals_screen_prompt_11_17_properties /* extended properties     */
7275 };
7276 
7277 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_11_16_define =
7278 {
7279     "prompt_11_16",
7280     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
7281     GX_ID_NONE,                              /* widget id                      */
7282     #if defined(GX_WIDGET_USER_DATA)
7283     0,                                       /* user data                      */
7284     #endif
7285     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7286     0,                                       /* status flags                   */
7287     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
7288     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7289     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7290     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7291     gx_studio_numeric_prompt_create,         /* create function                */
7292     GX_NULL,                                 /* drawing function override      */
7293     GX_NULL,                                 /* event function override        */
7294     {221, 421, 238, 438},                    /* widget size                    */
7295     &vitals_screen_prompt_11_17_define,      /* next widget definition         */
7296     GX_NULL,                                 /* no child widgets               */
7297     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_11_16), /* control block */
7298     (void *) &vitals_screen_prompt_11_16_properties /* extended properties     */
7299 };
7300 
7301 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_12_5_define =
7302 {
7303     "prompt_12_5",
7304     GX_TYPE_PROMPT,                          /* widget type                    */
7305     GX_ID_NONE,                              /* widget id                      */
7306     #if defined(GX_WIDGET_USER_DATA)
7307     0,                                       /* user data                      */
7308     #endif
7309     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7310     0,                                       /* status flags                   */
7311     sizeof(GX_PROMPT),                       /* control block size             */
7312     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7313     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7314     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7315     gx_studio_prompt_create,                 /* create function                */
7316     GX_NULL,                                 /* drawing function override      */
7317     GX_NULL,                                 /* event function override        */
7318     {218, 439, 221, 456},                    /* widget size                    */
7319     &vitals_screen_prompt_11_16_define,      /* next widget definition         */
7320     GX_NULL,                                 /* no child widgets               */
7321     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_12_5), /* control block */
7322     (void *) &vitals_screen_prompt_12_5_properties /* extended properties      */
7323 };
7324 
7325 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_12_4_define =
7326 {
7327     "prompt_12_4",
7328     GX_TYPE_PROMPT,                          /* widget type                    */
7329     GX_ID_NONE,                              /* widget id                      */
7330     #if defined(GX_WIDGET_USER_DATA)
7331     0,                                       /* user data                      */
7332     #endif
7333     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7334     0,                                       /* status flags                   */
7335     sizeof(GX_PROMPT),                       /* control block size             */
7336     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7337     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7338     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7339     gx_studio_prompt_create,                 /* create function                */
7340     GX_NULL,                                 /* drawing function override      */
7341     GX_NULL,                                 /* event function override        */
7342     {218, 421, 221, 438},                    /* widget size                    */
7343     &vitals_screen_prompt_12_5_define,       /* next widget definition         */
7344     GX_NULL,                                 /* no child widgets               */
7345     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_12_4), /* control block */
7346     (void *) &vitals_screen_prompt_12_4_properties /* extended properties      */
7347 };
7348 
7349 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_12_3_define =
7350 {
7351     "prompt_12_3",
7352     GX_TYPE_PROMPT,                          /* widget type                    */
7353     GX_ID_NONE,                              /* widget id                      */
7354     #if defined(GX_WIDGET_USER_DATA)
7355     0,                                       /* user data                      */
7356     #endif
7357     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7358     0,                                       /* status flags                   */
7359     sizeof(GX_PROMPT),                       /* control block size             */
7360     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7361     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7362     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7363     gx_studio_prompt_create,                 /* create function                */
7364     GX_NULL,                                 /* drawing function override      */
7365     GX_NULL,                                 /* event function override        */
7366     {218, 401, 221, 418},                    /* widget size                    */
7367     &vitals_screen_prompt_12_4_define,       /* next widget definition         */
7368     GX_NULL,                                 /* no child widgets               */
7369     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_12_3), /* control block */
7370     (void *) &vitals_screen_prompt_12_3_properties /* extended properties      */
7371 };
7372 
7373 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_11_15_define =
7374 {
7375     "prompt_11_15",
7376     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
7377     GX_ID_NONE,                              /* widget id                      */
7378     #if defined(GX_WIDGET_USER_DATA)
7379     0,                                       /* user data                      */
7380     #endif
7381     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7382     0,                                       /* status flags                   */
7383     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
7384     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7385     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7386     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7387     gx_studio_numeric_prompt_create,         /* create function                */
7388     GX_NULL,                                 /* drawing function override      */
7389     GX_NULL,                                 /* event function override        */
7390     {221, 402, 238, 419},                    /* widget size                    */
7391     &vitals_screen_prompt_12_3_define,       /* next widget definition         */
7392     GX_NULL,                                 /* no child widgets               */
7393     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_11_15), /* control block */
7394     (void *) &vitals_screen_prompt_11_15_properties /* extended properties     */
7395 };
7396 
7397 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_11_14_define =
7398 {
7399     "prompt_11_14",
7400     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
7401     GX_ID_NONE,                              /* widget id                      */
7402     #if defined(GX_WIDGET_USER_DATA)
7403     0,                                       /* user data                      */
7404     #endif
7405     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7406     0,                                       /* status flags                   */
7407     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
7408     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7409     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7410     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7411     gx_studio_numeric_prompt_create,         /* create function                */
7412     GX_NULL,                                 /* drawing function override      */
7413     GX_NULL,                                 /* event function override        */
7414     {200, 440, 217, 457},                    /* widget size                    */
7415     &vitals_screen_prompt_11_15_define,      /* next widget definition         */
7416     GX_NULL,                                 /* no child widgets               */
7417     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_11_14), /* control block */
7418     (void *) &vitals_screen_prompt_11_14_properties /* extended properties     */
7419 };
7420 
7421 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_11_13_define =
7422 {
7423     "prompt_11_13",
7424     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
7425     GX_ID_NONE,                              /* widget id                      */
7426     #if defined(GX_WIDGET_USER_DATA)
7427     0,                                       /* user data                      */
7428     #endif
7429     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7430     0,                                       /* status flags                   */
7431     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
7432     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7433     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7434     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7435     gx_studio_numeric_prompt_create,         /* create function                */
7436     GX_NULL,                                 /* drawing function override      */
7437     GX_NULL,                                 /* event function override        */
7438     {200, 421, 217, 438},                    /* widget size                    */
7439     &vitals_screen_prompt_11_14_define,      /* next widget definition         */
7440     GX_NULL,                                 /* no child widgets               */
7441     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_11_13), /* control block */
7442     (void *) &vitals_screen_prompt_11_13_properties /* extended properties     */
7443 };
7444 
7445 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_11_12_define =
7446 {
7447     "prompt_11_12",
7448     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
7449     GX_ID_NONE,                              /* widget id                      */
7450     #if defined(GX_WIDGET_USER_DATA)
7451     0,                                       /* user data                      */
7452     #endif
7453     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7454     0,                                       /* status flags                   */
7455     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
7456     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7457     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7458     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7459     gx_studio_numeric_prompt_create,         /* create function                */
7460     GX_NULL,                                 /* drawing function override      */
7461     GX_NULL,                                 /* event function override        */
7462     {200, 402, 217, 419},                    /* widget size                    */
7463     &vitals_screen_prompt_11_13_define,      /* next widget definition         */
7464     GX_NULL,                                 /* no child widgets               */
7465     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_11_12), /* control block */
7466     (void *) &vitals_screen_prompt_11_12_properties /* extended properties     */
7467 };
7468 
7469 GX_CONST GX_STUDIO_WIDGET vitals_screen_last_bolus_value_10_define =
7470 {
7471     "last_bolus_value_10",
7472     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
7473     GX_ID_NONE,                              /* widget id                      */
7474     #if defined(GX_WIDGET_USER_DATA)
7475     0,                                       /* user data                      */
7476     #endif
7477     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7478     0,                                       /* status flags                   */
7479     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
7480     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7481     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7482     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7483     gx_studio_numeric_prompt_create,         /* create function                */
7484     GX_NULL,                                 /* drawing function override      */
7485     GX_NULL,                                 /* event function override        */
7486     {135, 415, 192, 461},                    /* widget size                    */
7487     &vitals_screen_prompt_11_12_define,      /* next widget definition         */
7488     GX_NULL,                                 /* no child widgets               */
7489     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_last_bolus_value_10), /* control block */
7490     (void *) &vitals_screen_last_bolus_value_10_properties /* extended properties */
7491 };
7492 
7493 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_26_define =
7494 {
7495     "prompt_26",
7496     GX_TYPE_PROMPT,                          /* widget type                    */
7497     GX_ID_NONE,                              /* widget id                      */
7498     #if defined(GX_WIDGET_USER_DATA)
7499     0,                                       /* user data                      */
7500     #endif
7501     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7502     0,                                       /* status flags                   */
7503     sizeof(GX_PROMPT),                       /* control block size             */
7504     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7505     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7506     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7507     gx_studio_prompt_create,                 /* create function                */
7508     GX_NULL,                                 /* drawing function override      */
7509     GX_NULL,                                 /* event function override        */
7510     {137, 402, 156, 411},                    /* widget size                    */
7511     &vitals_screen_last_bolus_value_10_define, /* next widget definition       */
7512     GX_NULL,                                 /* no child widgets               */
7513     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_26), /* control block */
7514     (void *) &vitals_screen_prompt_26_properties /* extended properties        */
7515 };
7516 
7517 GX_CONST GX_STUDIO_WIDGET vitals_screen_last_bolus_value_9_define =
7518 {
7519     "last_bolus_value_9",
7520     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
7521     GX_ID_NONE,                              /* widget id                      */
7522     #if defined(GX_WIDGET_USER_DATA)
7523     0,                                       /* user data                      */
7524     #endif
7525     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7526     0,                                       /* status flags                   */
7527     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
7528     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7529     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7530     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7531     gx_studio_numeric_prompt_create,         /* create function                */
7532     GX_NULL,                                 /* drawing function override      */
7533     GX_NULL,                                 /* event function override        */
7534     {34, 415, 120, 461},                     /* widget size                    */
7535     &vitals_screen_prompt_26_define,         /* next widget definition         */
7536     GX_NULL,                                 /* no child widgets               */
7537     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_last_bolus_value_9), /* control block */
7538     (void *) &vitals_screen_last_bolus_value_9_properties /* extended properties */
7539 };
7540 
7541 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_25_define =
7542 {
7543     "prompt_25",
7544     GX_TYPE_PROMPT,                          /* widget type                    */
7545     GX_ID_NONE,                              /* widget id                      */
7546     #if defined(GX_WIDGET_USER_DATA)
7547     0,                                       /* user data                      */
7548     #endif
7549     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7550     0,                                       /* status flags                   */
7551     sizeof(GX_PROMPT),                       /* control block size             */
7552     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7553     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7554     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7555     gx_studio_prompt_create,                 /* create function                */
7556     GX_NULL,                                 /* drawing function override      */
7557     GX_NULL,                                 /* event function override        */
7558     {35, 402, 55, 411},                      /* widget size                    */
7559     &vitals_screen_last_bolus_value_9_define, /* next widget definition        */
7560     GX_NULL,                                 /* no child widgets               */
7561     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_25), /* control block */
7562     (void *) &vitals_screen_prompt_25_properties /* extended properties        */
7563 };
7564 
7565 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_24_define =
7566 {
7567     "prompt_24",
7568     GX_TYPE_PROMPT,                          /* widget type                    */
7569     GX_ID_NONE,                              /* widget id                      */
7570     #if defined(GX_WIDGET_USER_DATA)
7571     0,                                       /* user data                      */
7572     #endif
7573     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7574     0,                                       /* status flags                   */
7575     sizeof(GX_PROMPT),                       /* control block size             */
7576     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7577     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7578     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7579     gx_studio_prompt_create,                 /* create function                */
7580     GX_NULL,                                 /* drawing function override      */
7581     GX_NULL,                                 /* event function override        */
7582     {156, 381, 208, 398},                    /* widget size                    */
7583     &vitals_screen_prompt_25_define,         /* next widget definition         */
7584     GX_NULL,                                 /* no child widgets               */
7585     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_24), /* control block */
7586     (void *) &vitals_screen_prompt_24_properties /* extended properties        */
7587 };
7588 
7589 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_23_define =
7590 {
7591     "prompt_23",
7592     GX_TYPE_PROMPT,                          /* widget type                    */
7593     GX_ID_NONE,                              /* widget id                      */
7594     #if defined(GX_WIDGET_USER_DATA)
7595     0,                                       /* user data                      */
7596     #endif
7597     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7598     0,                                       /* status flags                   */
7599     sizeof(GX_PROMPT),                       /* control block size             */
7600     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7601     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7602     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7603     gx_studio_prompt_create,                 /* create function                */
7604     GX_NULL,                                 /* drawing function override      */
7605     GX_NULL,                                 /* event function override        */
7606     {33, 381, 148, 398},                     /* widget size                    */
7607     &vitals_screen_prompt_24_define,         /* next widget definition         */
7608     GX_NULL,                                 /* no child widgets               */
7609     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_23), /* control block */
7610     (void *) &vitals_screen_prompt_23_properties /* extended properties        */
7611 };
7612 
7613 GX_CONST GX_STUDIO_WIDGET vitals_screen_patient_bed_id_define =
7614 {
7615     "patient_bed_id",
7616     GX_TYPE_PROMPT,                          /* widget type                    */
7617     GX_ID_NONE,                              /* widget id                      */
7618     #if defined(GX_WIDGET_USER_DATA)
7619     0,                                       /* user data                      */
7620     #endif
7621     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_LEFT,   /* style flags */
7622     0,                                       /* status flags                   */
7623     sizeof(GX_PROMPT),                       /* control block size             */
7624     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7625     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7626     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7627     gx_studio_prompt_create,                 /* create function                */
7628     GX_NULL,                                 /* drawing function override      */
7629     GX_NULL,                                 /* event function override        */
7630     {601, 131, 619, 148},                    /* widget size                    */
7631     GX_NULL,                                 /* no next widget                 */
7632     GX_NULL,                                 /* no child widgets               */
7633     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_patient_bed_id), /* control block */
7634     (void *) &vitals_screen_patient_bed_id_properties /* extended properties   */
7635 };
7636 
7637 GX_CONST GX_STUDIO_WIDGET vitals_screen_patient_bed_label_define =
7638 {
7639     "patient_bed_label",
7640     GX_TYPE_PROMPT,                          /* widget type                    */
7641     GX_ID_NONE,                              /* widget id                      */
7642     #if defined(GX_WIDGET_USER_DATA)
7643     0,                                       /* user data                      */
7644     #endif
7645     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7646     0,                                       /* status flags                   */
7647     sizeof(GX_PROMPT),                       /* control block size             */
7648     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7649     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7650     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7651     gx_studio_prompt_create,                 /* create function                */
7652     GX_NULL,                                 /* drawing function override      */
7653     GX_NULL,                                 /* event function override        */
7654     {567, 131, 596, 148},                    /* widget size                    */
7655     &vitals_screen_patient_bed_id_define,    /* next widget definition         */
7656     GX_NULL,                                 /* no child widgets               */
7657     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_patient_bed_label), /* control block */
7658     (void *) &vitals_screen_patient_bed_label_properties /* extended properties */
7659 };
7660 
7661 GX_CONST GX_STUDIO_WIDGET vitals_screen_patient_room_id_define =
7662 {
7663     "patient_room_id",
7664     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
7665     GX_ID_NONE,                              /* widget id                      */
7666     #if defined(GX_WIDGET_USER_DATA)
7667     0,                                       /* user data                      */
7668     #endif
7669     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_LEFT,   /* style flags */
7670     0,                                       /* status flags                   */
7671     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
7672     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7673     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7674     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7675     gx_studio_numeric_prompt_create,         /* create function                */
7676     GX_NULL,                                 /* drawing function override      */
7677     GX_NULL,                                 /* event function override        */
7678     {512, 132, 538, 149},                    /* widget size                    */
7679     &vitals_screen_patient_bed_label_define, /* next widget definition         */
7680     GX_NULL,                                 /* no child widgets               */
7681     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_patient_room_id), /* control block */
7682     (void *) &vitals_screen_patient_room_id_properties /* extended properties  */
7683 };
7684 
7685 GX_CONST GX_STUDIO_WIDGET vitals_screen_patient_room_label_define =
7686 {
7687     "patient_room_label",
7688     GX_TYPE_PROMPT,                          /* widget type                    */
7689     GX_ID_NONE,                              /* widget id                      */
7690     #if defined(GX_WIDGET_USER_DATA)
7691     0,                                       /* user data                      */
7692     #endif
7693     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7694     0,                                       /* status flags                   */
7695     sizeof(GX_PROMPT),                       /* control block size             */
7696     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7697     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7698     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7699     gx_studio_prompt_create,                 /* create function                */
7700     GX_NULL,                                 /* drawing function override      */
7701     GX_NULL,                                 /* event function override        */
7702     {461, 131, 505, 148},                    /* widget size                    */
7703     &vitals_screen_patient_room_id_define,   /* next widget definition         */
7704     GX_NULL,                                 /* no child widgets               */
7705     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_patient_room_label), /* control block */
7706     (void *) &vitals_screen_patient_room_label_properties /* extended properties */
7707 };
7708 
7709 GX_CONST GX_STUDIO_WIDGET vitals_screen_patient_number_label_define =
7710 {
7711     "patient_number_label",
7712     GX_TYPE_PROMPT,                          /* widget type                    */
7713     GX_ID_NONE,                              /* widget id                      */
7714     #if defined(GX_WIDGET_USER_DATA)
7715     0,                                       /* user data                      */
7716     #endif
7717     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7718     0,                                       /* status flags                   */
7719     sizeof(GX_PROMPT),                       /* control block size             */
7720     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7721     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7722     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7723     gx_studio_prompt_create,                 /* create function                */
7724     GX_NULL,                                 /* drawing function override      */
7725     GX_NULL,                                 /* event function override        */
7726     {380, 131, 388, 148},                    /* widget size                    */
7727     &vitals_screen_patient_room_label_define, /* next widget definition        */
7728     GX_NULL,                                 /* no child widgets               */
7729     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_patient_number_label), /* control block */
7730     (void *) &vitals_screen_patient_number_label_properties /* extended properties */
7731 };
7732 
7733 GX_CONST GX_STUDIO_WIDGET vitals_screen_patient_number_define =
7734 {
7735     "patient_number",
7736     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
7737     GX_ID_NONE,                              /* widget id                      */
7738     #if defined(GX_WIDGET_USER_DATA)
7739     0,                                       /* user data                      */
7740     #endif
7741     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7742     0,                                       /* status flags                   */
7743     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
7744     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7745     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7746     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7747     gx_studio_numeric_prompt_create,         /* create function                */
7748     GX_NULL,                                 /* drawing function override      */
7749     GX_NULL,                                 /* event function override        */
7750     {389, 131, 442, 148},                    /* widget size                    */
7751     &vitals_screen_patient_number_label_define, /* next widget definition      */
7752     GX_NULL,                                 /* no child widgets               */
7753     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_patient_number), /* control block */
7754     (void *) &vitals_screen_patient_number_properties /* extended properties   */
7755 };
7756 
7757 GX_CONST GX_STUDIO_WIDGET vitals_screen_patient_age_label_define =
7758 {
7759     "patient_age_label",
7760     GX_TYPE_PROMPT,                          /* widget type                    */
7761     GX_ID_NONE,                              /* widget id                      */
7762     #if defined(GX_WIDGET_USER_DATA)
7763     0,                                       /* user data                      */
7764     #endif
7765     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7766     0,                                       /* status flags                   */
7767     sizeof(GX_PROMPT),                       /* control block size             */
7768     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7769     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7770     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7771     gx_studio_prompt_create,                 /* create function                */
7772     GX_NULL,                                 /* drawing function override      */
7773     GX_NULL,                                 /* event function override        */
7774     {457, 110, 484, 127},                    /* widget size                    */
7775     &vitals_screen_patient_number_define,    /* next widget definition         */
7776     GX_NULL,                                 /* no child widgets               */
7777     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_patient_age_label), /* control block */
7778     (void *) &vitals_screen_patient_age_label_properties /* extended properties */
7779 };
7780 
7781 GX_CONST GX_STUDIO_WIDGET vitals_screen_patient_age_define =
7782 {
7783     "patient_age",
7784     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
7785     GX_ID_NONE,                              /* widget id                      */
7786     #if defined(GX_WIDGET_USER_DATA)
7787     0,                                       /* user data                      */
7788     #endif
7789     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_LEFT,   /* style flags */
7790     0,                                       /* status flags                   */
7791     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
7792     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7793     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7794     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7795     gx_studio_numeric_prompt_create,         /* create function                */
7796     GX_NULL,                                 /* drawing function override      */
7797     GX_NULL,                                 /* event function override        */
7798     {491, 110, 508, 127},                    /* widget size                    */
7799     &vitals_screen_patient_age_label_define, /* next widget definition         */
7800     GX_NULL,                                 /* no child widgets               */
7801     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_patient_age), /* control block */
7802     (void *) &vitals_screen_patient_age_properties /* extended properties      */
7803 };
7804 
7805 GX_CONST GX_STUDIO_WIDGET vitals_screen_patient_dob_define =
7806 {
7807     "patient_dob",
7808     GX_TYPE_PROMPT,                          /* widget type                    */
7809     GX_ID_NONE,                              /* widget id                      */
7810     #if defined(GX_WIDGET_USER_DATA)
7811     0,                                       /* user data                      */
7812     #endif
7813     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT,   /* style flags */
7814     0,                                       /* status flags                   */
7815     sizeof(GX_PROMPT),                       /* control block size             */
7816     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7817     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7818     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7819     gx_studio_prompt_create,                 /* create function                */
7820     GX_NULL,                                 /* drawing function override      */
7821     GX_NULL,                                 /* event function override        */
7822     {535, 110, 618, 127},                    /* widget size                    */
7823     &vitals_screen_patient_age_define,       /* next widget definition         */
7824     GX_NULL,                                 /* no child widgets               */
7825     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_patient_dob), /* control block */
7826     (void *) &vitals_screen_patient_dob_properties /* extended properties      */
7827 };
7828 
7829 GX_CONST GX_STUDIO_WIDGET vitals_screen_patient_name_define =
7830 {
7831     "patient_name",
7832     GX_TYPE_PROMPT,                          /* widget type                    */
7833     GX_ID_NONE,                              /* widget id                      */
7834     #if defined(GX_WIDGET_USER_DATA)
7835     0,                                       /* user data                      */
7836     #endif
7837     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7838     0,                                       /* status flags                   */
7839     sizeof(GX_PROMPT),                       /* control block size             */
7840     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7841     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7842     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7843     gx_studio_prompt_create,                 /* create function                */
7844     GX_NULL,                                 /* drawing function override      */
7845     GX_NULL,                                 /* event function override        */
7846     {429, 79, 619, 101},                     /* widget size                    */
7847     &vitals_screen_patient_dob_define,       /* next widget definition         */
7848     GX_NULL,                                 /* no child widgets               */
7849     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_patient_name), /* control block */
7850     (void *) &vitals_screen_patient_name_properties /* extended properties     */
7851 };
7852 
7853 GX_CONST GX_STUDIO_WIDGET vitals_screen_patient_gender_define =
7854 {
7855     "patient_gender",
7856     GX_TYPE_PROMPT,                          /* widget type                    */
7857     GX_ID_NONE,                              /* widget id                      */
7858     #if defined(GX_WIDGET_USER_DATA)
7859     0,                                       /* user data                      */
7860     #endif
7861     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7862     0,                                       /* status flags                   */
7863     sizeof(GX_PROMPT),                       /* control block size             */
7864     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7865     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7866     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7867     gx_studio_prompt_create,                 /* create function                */
7868     GX_NULL,                                 /* drawing function override      */
7869     GX_NULL,                                 /* event function override        */
7870     {380, 110, 435, 127},                    /* widget size                    */
7871     &vitals_screen_patient_name_define,      /* next widget definition         */
7872     GX_NULL,                                 /* no child widgets               */
7873     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_patient_gender), /* control block */
7874     (void *) &vitals_screen_patient_gender_properties /* extended properties   */
7875 };
7876 
7877 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_13_12_3_define =
7878 {
7879     "prompt_13_12_3",
7880     GX_TYPE_PROMPT,                          /* widget type                    */
7881     GX_ID_NONE,                              /* widget id                      */
7882     #if defined(GX_WIDGET_USER_DATA)
7883     0,                                       /* user data                      */
7884     #endif
7885     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7886     0,                                       /* status flags                   */
7887     sizeof(GX_PROMPT),                       /* control block size             */
7888     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7889     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7890     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7891     gx_studio_prompt_create,                 /* create function                */
7892     GX_NULL,                                 /* drawing function override      */
7893     GX_NULL,                                 /* event function override        */
7894     {609, 185, 620, 202},                    /* widget size                    */
7895     GX_NULL,                                 /* no next widget                 */
7896     GX_NULL,                                 /* no child widgets               */
7897     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_13_12_3), /* control block */
7898     (void *) &vitals_screen_prompt_13_12_3_properties /* extended properties   */
7899 };
7900 
7901 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_13_12_2_define =
7902 {
7903     "prompt_13_12_2",
7904     GX_TYPE_PROMPT,                          /* widget type                    */
7905     GX_ID_NONE,                              /* widget id                      */
7906     #if defined(GX_WIDGET_USER_DATA)
7907     0,                                       /* user data                      */
7908     #endif
7909     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7910     0,                                       /* status flags                   */
7911     sizeof(GX_PROMPT),                       /* control block size             */
7912     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7913     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7914     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7915     gx_studio_prompt_create,                 /* create function                */
7916     GX_NULL,                                 /* drawing function override      */
7917     GX_NULL,                                 /* event function override        */
7918     {481, 185, 492, 202},                    /* widget size                    */
7919     &vitals_screen_prompt_13_12_3_define,    /* next widget definition         */
7920     GX_NULL,                                 /* no child widgets               */
7921     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_13_12_2), /* control block */
7922     (void *) &vitals_screen_prompt_13_12_2_properties /* extended properties   */
7923 };
7924 
7925 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_5_define =
7926 {
7927     "prompt_5",
7928     GX_TYPE_PROMPT,                          /* widget type                    */
7929     GX_ID_NONE,                              /* widget id                      */
7930     #if defined(GX_WIDGET_USER_DATA)
7931     0,                                       /* user data                      */
7932     #endif
7933     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7934     0,                                       /* status flags                   */
7935     sizeof(GX_PROMPT),                       /* control block size             */
7936     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7937     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7938     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7939     gx_studio_prompt_create,                 /* create function                */
7940     GX_NULL,                                 /* drawing function override      */
7941     GX_NULL,                                 /* event function override        */
7942     {380, 187, 480, 233},                    /* widget size                    */
7943     &vitals_screen_prompt_13_12_2_define,    /* next widget definition         */
7944     GX_NULL,                                 /* no child widgets               */
7945     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_5), /* control block */
7946     (void *) &vitals_screen_prompt_5_properties /* extended properties         */
7947 };
7948 
7949 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_define =
7950 {
7951     "prompt",
7952     GX_TYPE_PROMPT,                          /* widget type                    */
7953     GX_ID_NONE,                              /* widget id                      */
7954     #if defined(GX_WIDGET_USER_DATA)
7955     0,                                       /* user data                      */
7956     #endif
7957     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7958     0,                                       /* status flags                   */
7959     sizeof(GX_PROMPT),                       /* control block size             */
7960     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7961     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7962     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7963     gx_studio_prompt_create,                 /* create function                */
7964     GX_NULL,                                 /* drawing function override      */
7965     GX_NULL,                                 /* event function override        */
7966     {510, 187, 610, 233},                    /* widget size                    */
7967     &vitals_screen_prompt_5_define,          /* next widget definition         */
7968     GX_NULL,                                 /* no child widgets               */
7969     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt), /* control block */
7970     (void *) &vitals_screen_prompt_properties /* extended properties           */
7971 };
7972 
7973 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_13_13_1_define =
7974 {
7975     "prompt_13_13_1",
7976     GX_TYPE_PROMPT,                          /* widget type                    */
7977     GX_ID_NONE,                              /* widget id                      */
7978     #if defined(GX_WIDGET_USER_DATA)
7979     0,                                       /* user data                      */
7980     #endif
7981     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
7982     0,                                       /* status flags                   */
7983     sizeof(GX_PROMPT),                       /* control block size             */
7984     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
7985     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
7986     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
7987     gx_studio_prompt_create,                 /* create function                */
7988     GX_NULL,                                 /* drawing function override      */
7989     GX_NULL,                                 /* event function override        */
7990     {613, 161, 619, 170},                    /* widget size                    */
7991     &vitals_screen_prompt_define,            /* next widget definition         */
7992     GX_NULL,                                 /* no child widgets               */
7993     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_13_13_1), /* control block */
7994     (void *) &vitals_screen_prompt_13_13_1_properties /* extended properties   */
7995 };
7996 
7997 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_14_3_define =
7998 {
7999     "prompt_14_3",
8000     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
8001     GX_ID_NONE,                              /* widget id                      */
8002     #if defined(GX_WIDGET_USER_DATA)
8003     0,                                       /* user data                      */
8004     #endif
8005     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
8006     0,                                       /* status flags                   */
8007     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
8008     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
8009     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
8010     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
8011     gx_studio_numeric_prompt_create,         /* create function                */
8012     GX_NULL,                                 /* drawing function override      */
8013     GX_NULL,                                 /* event function override        */
8014     {586, 162, 612, 179},                    /* widget size                    */
8015     &vitals_screen_prompt_13_13_1_define,    /* next widget definition         */
8016     GX_NULL,                                 /* no child widgets               */
8017     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_14_3), /* control block */
8018     (void *) &vitals_screen_prompt_14_3_properties /* extended properties      */
8019 };
8020 
8021 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_13_18_define =
8022 {
8023     "prompt_13_18",
8024     GX_TYPE_PROMPT,                          /* widget type                    */
8025     GX_ID_NONE,                              /* widget id                      */
8026     #if defined(GX_WIDGET_USER_DATA)
8027     0,                                       /* user data                      */
8028     #endif
8029     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
8030     0,                                       /* status flags                   */
8031     sizeof(GX_PROMPT),                       /* control block size             */
8032     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
8033     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
8034     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
8035     gx_studio_prompt_create,                 /* create function                */
8036     GX_NULL,                                 /* drawing function override      */
8037     GX_NULL,                                 /* event function override        */
8038     {539, 165, 581, 174},                    /* widget size                    */
8039     &vitals_screen_prompt_14_3_define,       /* next widget definition         */
8040     GX_NULL,                                 /* no child widgets               */
8041     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_13_18), /* control block */
8042     (void *) &vitals_screen_prompt_13_18_properties /* extended properties     */
8043 };
8044 
8045 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_13_17_define =
8046 {
8047     "prompt_13_17",
8048     GX_TYPE_PROMPT,                          /* widget type                    */
8049     GX_ID_NONE,                              /* widget id                      */
8050     #if defined(GX_WIDGET_USER_DATA)
8051     0,                                       /* user data                      */
8052     #endif
8053     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
8054     0,                                       /* status flags                   */
8055     sizeof(GX_PROMPT),                       /* control block size             */
8056     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
8057     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
8058     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
8059     gx_studio_prompt_create,                 /* create function                */
8060     GX_NULL,                                 /* drawing function override      */
8061     GX_NULL,                                 /* event function override        */
8062     {487, 165, 525, 174},                    /* widget size                    */
8063     &vitals_screen_prompt_13_18_define,      /* next widget definition         */
8064     GX_NULL,                                 /* no child widgets               */
8065     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_13_17), /* control block */
8066     (void *) &vitals_screen_prompt_13_17_properties /* extended properties     */
8067 };
8068 
8069 GX_CONST GX_STUDIO_WIDGET vitals_screen_prompt_15_define =
8070 {
8071     "prompt_15",
8072     GX_TYPE_PROMPT,                          /* widget type                    */
8073     GX_ID_NONE,                              /* widget id                      */
8074     #if defined(GX_WIDGET_USER_DATA)
8075     0,                                       /* user data                      */
8076     #endif
8077     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
8078     0,                                       /* status flags                   */
8079     sizeof(GX_PROMPT),                       /* control block size             */
8080     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
8081     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
8082     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
8083     gx_studio_prompt_create,                 /* create function                */
8084     GX_NULL,                                 /* drawing function override      */
8085     GX_NULL,                                 /* event function override        */
8086     {380, 161, 478, 178},                    /* widget size                    */
8087     &vitals_screen_prompt_13_17_define,      /* next widget definition         */
8088     GX_NULL,                                 /* no child widgets               */
8089     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_prompt_15), /* control block */
8090     (void *) &vitals_screen_prompt_15_properties /* extended properties        */
8091 };
8092 
8093 GX_CONST GX_STUDIO_WIDGET vitals_screen_medtype1_slider_define =
8094 {
8095     "medtype1_slider",
8096     GX_TYPE_PIXELMAP_SLIDER,                 /* widget type                    */
8097     ID_MEDTYPE1_SLIDER,                      /* widget id                      */
8098     #if defined(GX_WIDGET_USER_DATA)
8099     0,                                       /* user data                      */
8100     #endif
8101     GX_STYLE_BORDER_RAISED|GX_STYLE_ENABLED|GX_STYLE_TILE_BACKGROUND,   /* style flags */
8102     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
8103     sizeof(GX_PIXELMAP_SLIDER),              /* control block size             */
8104     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
8105     GX_COLOR_ID_WIDGET_FILL,                 /* selected color id              */
8106     GX_COLOR_ID_WIDGET_FILL,                 /* disabled color id              */
8107     gx_studio_pixelmap_slider_create,        /* create function                */
8108     GX_NULL,                                 /* drawing function override      */
8109     GX_NULL,                                 /* event function override        */
8110     {381, 282, 619, 301},                    /* widget size                    */
8111     GX_NULL,                                 /* no next widget                 */
8112     GX_NULL,                                 /* no child widgets               */
8113     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_medtype1_slider), /* control block */
8114     (void *) &vitals_screen_medtype1_slider_properties /* extended properties  */
8115 };
8116 
8117 GX_CONST GX_STUDIO_WIDGET vitals_screen_medtype1_slider_win_define =
8118 {
8119     "medtype1_slider_win",
8120     GX_TYPE_WINDOW,                          /* widget type                    */
8121     GX_ID_NONE,                              /* widget id                      */
8122     #if defined(GX_WIDGET_USER_DATA)
8123     0,                                       /* user data                      */
8124     #endif
8125     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED|GX_STYLE_TILE_WALLPAPER,   /* style flags */
8126     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
8127     sizeof(GX_WINDOW),                       /* control block size             */
8128     GX_COLOR_ID_DARK_GRAY,                   /* normal color id                */
8129     GX_COLOR_ID_DARK_GRAY,                   /* selected color id              */
8130     GX_COLOR_ID_DARK_GRAY,                   /* disabled color id              */
8131     gx_studio_window_create,                 /* create function                */
8132     GX_NULL,                                 /* drawing function override      */
8133     GX_NULL,                                 /* event function override        */
8134     {381, 282, 619, 301},                    /* widget size                    */
8135     GX_NULL,                                 /* no next widget                 */
8136     &vitals_screen_medtype1_slider_define,   /* child widget definition        */
8137     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_medtype1_slider_win), /* control block */
8138     (void *) &vitals_screen_medtype1_slider_win_properties /* extended properties */
8139 };
8140 
8141 GX_CONST GX_STUDIO_WIDGET vitals_screen_medtype1_percentage_flag_define =
8142 {
8143     "medtype1_percentage_flag",
8144     GX_TYPE_PROMPT,                          /* widget type                    */
8145     GX_ID_NONE,                              /* widget id                      */
8146     #if defined(GX_WIDGET_USER_DATA)
8147     0,                                       /* user data                      */
8148     #endif
8149     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
8150     0,                                       /* status flags                   */
8151     sizeof(GX_PROMPT),                       /* control block size             */
8152     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
8153     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
8154     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
8155     gx_studio_prompt_create,                 /* create function                */
8156     GX_NULL,                                 /* drawing function override      */
8157     GX_NULL,                                 /* event function override        */
8158     {599, 246, 619, 268},                    /* widget size                    */
8159     &vitals_screen_medtype1_slider_win_define, /* next widget definition       */
8160     GX_NULL,                                 /* no child widgets               */
8161     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_medtype1_percentage_flag), /* control block */
8162     (void *) &vitals_screen_medtype1_percentage_flag_properties /* extended properties */
8163 };
8164 
8165 GX_CONST GX_STUDIO_WIDGET vitals_screen_medtype1_value_define =
8166 {
8167     "medtype1_value",
8168     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
8169     GX_ID_NONE,                              /* widget id                      */
8170     #if defined(GX_WIDGET_USER_DATA)
8171     0,                                       /* user data                      */
8172     #endif
8173     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT,   /* style flags */
8174     0,                                       /* status flags                   */
8175     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
8176     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
8177     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
8178     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
8179     gx_studio_numeric_prompt_create,         /* create function                */
8180     GX_NULL,                                 /* drawing function override      */
8181     GX_NULL,                                 /* event function override        */
8182     {560, 247, 597, 277},                    /* widget size                    */
8183     &vitals_screen_medtype1_percentage_flag_define, /* next widget definition  */
8184     GX_NULL,                                 /* no child widgets               */
8185     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_medtype1_value), /* control block */
8186     (void *) &vitals_screen_medtype1_value_properties /* extended properties   */
8187 };
8188 
8189 GX_CONST GX_STUDIO_WIDGET vitals_screen_medtype1_label_define =
8190 {
8191     "medtype1_label",
8192     GX_TYPE_PROMPT,                          /* widget type                    */
8193     GX_ID_NONE,                              /* widget id                      */
8194     #if defined(GX_WIDGET_USER_DATA)
8195     0,                                       /* user data                      */
8196     #endif
8197     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
8198     0,                                       /* status flags                   */
8199     sizeof(GX_PROMPT),                       /* control block size             */
8200     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
8201     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
8202     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
8203     gx_studio_prompt_create,                 /* create function                */
8204     GX_NULL,                                 /* drawing function override      */
8205     GX_NULL,                                 /* event function override        */
8206     {380, 251, 426, 268},                    /* widget size                    */
8207     &vitals_screen_medtype1_value_define,    /* next widget definition         */
8208     GX_NULL,                                 /* no child widgets               */
8209     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_medtype1_label), /* control block */
8210     (void *) &vitals_screen_medtype1_label_properties /* extended properties   */
8211 };
8212 
8213 GX_CONST GX_STUDIO_WIDGET vitals_screen_medtype3_slider_define =
8214 {
8215     "medtype3_slider",
8216     GX_TYPE_PIXELMAP_SLIDER,                 /* widget type                    */
8217     ID_MEDTYPE3_SLIDER,                      /* widget id                      */
8218     #if defined(GX_WIDGET_USER_DATA)
8219     0,                                       /* user data                      */
8220     #endif
8221     GX_STYLE_BORDER_RAISED|GX_STYLE_ENABLED|GX_STYLE_TILE_BACKGROUND,   /* style flags */
8222     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
8223     sizeof(GX_PIXELMAP_SLIDER),              /* control block size             */
8224     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
8225     GX_COLOR_ID_WIDGET_FILL,                 /* selected color id              */
8226     GX_COLOR_ID_WIDGET_FILL,                 /* disabled color id              */
8227     gx_studio_pixelmap_slider_create,        /* create function                */
8228     GX_NULL,                                 /* drawing function override      */
8229     GX_NULL,                                 /* event function override        */
8230     {381, 432, 619, 451},                    /* widget size                    */
8231     GX_NULL,                                 /* no next widget                 */
8232     GX_NULL,                                 /* no child widgets               */
8233     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_medtype3_slider), /* control block */
8234     (void *) &vitals_screen_medtype3_slider_properties /* extended properties  */
8235 };
8236 
8237 GX_CONST GX_STUDIO_WIDGET vitals_screen_medtype3_slider_win_define =
8238 {
8239     "medtype3_slider_win",
8240     GX_TYPE_WINDOW,                          /* widget type                    */
8241     GX_ID_NONE,                              /* widget id                      */
8242     #if defined(GX_WIDGET_USER_DATA)
8243     0,                                       /* user data                      */
8244     #endif
8245     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED|GX_STYLE_TILE_WALLPAPER,   /* style flags */
8246     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
8247     sizeof(GX_WINDOW),                       /* control block size             */
8248     GX_COLOR_ID_DARK_GRAY,                   /* normal color id                */
8249     GX_COLOR_ID_DARK_GRAY,                   /* selected color id              */
8250     GX_COLOR_ID_DARK_GRAY,                   /* disabled color id              */
8251     gx_studio_window_create,                 /* create function                */
8252     GX_NULL,                                 /* drawing function override      */
8253     GX_NULL,                                 /* event function override        */
8254     {381, 432, 619, 451},                    /* widget size                    */
8255     GX_NULL,                                 /* no next widget                 */
8256     &vitals_screen_medtype3_slider_define,   /* child widget definition        */
8257     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_medtype3_slider_win), /* control block */
8258     (void *) &vitals_screen_medtype3_slider_win_properties /* extended properties */
8259 };
8260 
8261 GX_CONST GX_STUDIO_WIDGET vitals_screen_medtype3_percentage_flag_define =
8262 {
8263     "medtype3_percentage_flag",
8264     GX_TYPE_PROMPT,                          /* widget type                    */
8265     GX_ID_NONE,                              /* widget id                      */
8266     #if defined(GX_WIDGET_USER_DATA)
8267     0,                                       /* user data                      */
8268     #endif
8269     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
8270     0,                                       /* status flags                   */
8271     sizeof(GX_PROMPT),                       /* control block size             */
8272     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
8273     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
8274     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
8275     gx_studio_prompt_create,                 /* create function                */
8276     GX_NULL,                                 /* drawing function override      */
8277     GX_NULL,                                 /* event function override        */
8278     {599, 396, 619, 418},                    /* widget size                    */
8279     &vitals_screen_medtype3_slider_win_define, /* next widget definition       */
8280     GX_NULL,                                 /* no child widgets               */
8281     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_medtype3_percentage_flag), /* control block */
8282     (void *) &vitals_screen_medtype3_percentage_flag_properties /* extended properties */
8283 };
8284 
8285 GX_CONST GX_STUDIO_WIDGET vitals_screen_medtype3_value_define =
8286 {
8287     "medtype3_value",
8288     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
8289     GX_ID_NONE,                              /* widget id                      */
8290     #if defined(GX_WIDGET_USER_DATA)
8291     0,                                       /* user data                      */
8292     #endif
8293     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT,   /* style flags */
8294     0,                                       /* status flags                   */
8295     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
8296     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
8297     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
8298     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
8299     gx_studio_numeric_prompt_create,         /* create function                */
8300     GX_NULL,                                 /* drawing function override      */
8301     GX_NULL,                                 /* event function override        */
8302     {560, 397, 597, 427},                    /* widget size                    */
8303     &vitals_screen_medtype3_percentage_flag_define, /* next widget definition  */
8304     GX_NULL,                                 /* no child widgets               */
8305     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_medtype3_value), /* control block */
8306     (void *) &vitals_screen_medtype3_value_properties /* extended properties   */
8307 };
8308 
8309 GX_CONST GX_STUDIO_WIDGET vitals_screen_medtype3_label_define =
8310 {
8311     "medtype3_label",
8312     GX_TYPE_PROMPT,                          /* widget type                    */
8313     GX_ID_NONE,                              /* widget id                      */
8314     #if defined(GX_WIDGET_USER_DATA)
8315     0,                                       /* user data                      */
8316     #endif
8317     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
8318     0,                                       /* status flags                   */
8319     sizeof(GX_PROMPT),                       /* control block size             */
8320     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
8321     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
8322     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
8323     gx_studio_prompt_create,                 /* create function                */
8324     GX_NULL,                                 /* drawing function override      */
8325     GX_NULL,                                 /* event function override        */
8326     {380, 399, 464, 416},                    /* widget size                    */
8327     &vitals_screen_medtype3_value_define,    /* next widget definition         */
8328     GX_NULL,                                 /* no child widgets               */
8329     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_medtype3_label), /* control block */
8330     (void *) &vitals_screen_medtype3_label_properties /* extended properties   */
8331 };
8332 
8333 GX_CONST GX_STUDIO_WIDGET vitals_screen_medtype2_slider_define =
8334 {
8335     "medtype2_slider",
8336     GX_TYPE_PIXELMAP_SLIDER,                 /* widget type                    */
8337     ID_MEDTYPE2_SLIDER,                      /* widget id                      */
8338     #if defined(GX_WIDGET_USER_DATA)
8339     0,                                       /* user data                      */
8340     #endif
8341     GX_STYLE_BORDER_RAISED|GX_STYLE_ENABLED|GX_STYLE_TILE_BACKGROUND,   /* style flags */
8342     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
8343     sizeof(GX_PIXELMAP_SLIDER),              /* control block size             */
8344     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
8345     GX_COLOR_ID_WIDGET_FILL,                 /* selected color id              */
8346     GX_COLOR_ID_WIDGET_FILL,                 /* disabled color id              */
8347     gx_studio_pixelmap_slider_create,        /* create function                */
8348     GX_NULL,                                 /* drawing function override      */
8349     GX_NULL,                                 /* event function override        */
8350     {381, 357, 619, 376},                    /* widget size                    */
8351     GX_NULL,                                 /* no next widget                 */
8352     GX_NULL,                                 /* no child widgets               */
8353     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_medtype2_slider), /* control block */
8354     (void *) &vitals_screen_medtype2_slider_properties /* extended properties  */
8355 };
8356 
8357 GX_CONST GX_STUDIO_WIDGET vitals_screen_medtype2_slider_win_define =
8358 {
8359     "medtype2_slider_win",
8360     GX_TYPE_WINDOW,                          /* widget type                    */
8361     GX_ID_NONE,                              /* widget id                      */
8362     #if defined(GX_WIDGET_USER_DATA)
8363     0,                                       /* user data                      */
8364     #endif
8365     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED|GX_STYLE_TILE_WALLPAPER,   /* style flags */
8366     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
8367     sizeof(GX_WINDOW),                       /* control block size             */
8368     GX_COLOR_ID_DARK_GRAY,                   /* normal color id                */
8369     GX_COLOR_ID_DARK_GRAY,                   /* selected color id              */
8370     GX_COLOR_ID_DARK_GRAY,                   /* disabled color id              */
8371     gx_studio_window_create,                 /* create function                */
8372     GX_NULL,                                 /* drawing function override      */
8373     GX_NULL,                                 /* event function override        */
8374     {381, 357, 619, 376},                    /* widget size                    */
8375     GX_NULL,                                 /* no next widget                 */
8376     &vitals_screen_medtype2_slider_define,   /* child widget definition        */
8377     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_medtype2_slider_win), /* control block */
8378     (void *) &vitals_screen_medtype2_slider_win_properties /* extended properties */
8379 };
8380 
8381 GX_CONST GX_STUDIO_WIDGET vitals_screen_medtype2_percentage_flag_define =
8382 {
8383     "medtype2_percentage_flag",
8384     GX_TYPE_PROMPT,                          /* widget type                    */
8385     GX_ID_NONE,                              /* widget id                      */
8386     #if defined(GX_WIDGET_USER_DATA)
8387     0,                                       /* user data                      */
8388     #endif
8389     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
8390     0,                                       /* status flags                   */
8391     sizeof(GX_PROMPT),                       /* control block size             */
8392     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
8393     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
8394     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
8395     gx_studio_prompt_create,                 /* create function                */
8396     GX_NULL,                                 /* drawing function override      */
8397     GX_NULL,                                 /* event function override        */
8398     {599, 321, 619, 343},                    /* widget size                    */
8399     &vitals_screen_medtype2_slider_win_define, /* next widget definition       */
8400     GX_NULL,                                 /* no child widgets               */
8401     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_medtype2_percentage_flag), /* control block */
8402     (void *) &vitals_screen_medtype2_percentage_flag_properties /* extended properties */
8403 };
8404 
8405 GX_CONST GX_STUDIO_WIDGET vitals_screen_medtype2_value_define =
8406 {
8407     "medtype2_value",
8408     GX_TYPE_NUMERIC_PROMPT,                  /* widget type                    */
8409     GX_ID_NONE,                              /* widget id                      */
8410     #if defined(GX_WIDGET_USER_DATA)
8411     0,                                       /* user data                      */
8412     #endif
8413     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT,   /* style flags */
8414     0,                                       /* status flags                   */
8415     sizeof(GX_NUMERIC_PROMPT),               /* control block size             */
8416     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
8417     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
8418     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
8419     gx_studio_numeric_prompt_create,         /* create function                */
8420     GX_NULL,                                 /* drawing function override      */
8421     GX_NULL,                                 /* event function override        */
8422     {560, 322, 597, 352},                    /* widget size                    */
8423     &vitals_screen_medtype2_percentage_flag_define, /* next widget definition  */
8424     GX_NULL,                                 /* no child widgets               */
8425     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_medtype2_value), /* control block */
8426     (void *) &vitals_screen_medtype2_value_properties /* extended properties   */
8427 };
8428 
8429 GX_CONST GX_STUDIO_WIDGET vitals_screen_medtype2_label_define =
8430 {
8431     "medtype2_label",
8432     GX_TYPE_PROMPT,                          /* widget type                    */
8433     GX_ID_NONE,                              /* widget id                      */
8434     #if defined(GX_WIDGET_USER_DATA)
8435     0,                                       /* user data                      */
8436     #endif
8437     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER,   /* style flags */
8438     0,                                       /* status flags                   */
8439     sizeof(GX_PROMPT),                       /* control block size             */
8440     GX_COLOR_ID_WIDGET_FILL,                 /* normal color id                */
8441     GX_COLOR_ID_SELECTED_FILL,               /* selected color id              */
8442     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
8443     gx_studio_prompt_create,                 /* create function                */
8444     GX_NULL,                                 /* drawing function override      */
8445     GX_NULL,                                 /* event function override        */
8446     {380, 326, 427, 343},                    /* widget size                    */
8447     &vitals_screen_medtype2_value_define,    /* next widget definition         */
8448     GX_NULL,                                 /* no child widgets               */
8449     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_medtype2_label), /* control block */
8450     (void *) &vitals_screen_medtype2_label_properties /* extended properties   */
8451 };
8452 
8453 GX_CONST GX_STUDIO_WIDGET vitals_screen_medtype2_win_define =
8454 {
8455     "medtype2_win",
8456     GX_TYPE_WINDOW,                          /* widget type                    */
8457     GX_ID_NONE,                              /* widget id                      */
8458     #if defined(GX_WIDGET_USER_DATA)
8459     0,                                       /* user data                      */
8460     #endif
8461     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED,   /* style flags */
8462     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
8463     sizeof(GX_WINDOW),                       /* control block size             */
8464     GX_COLOR_ID_WINDOW_FILL,                 /* normal color id                */
8465     GX_COLOR_ID_WINDOW_FILL,                 /* selected color id              */
8466     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
8467     gx_studio_window_create,                 /* create function                */
8468     GX_NULL,                                 /* drawing function override      */
8469     GX_NULL,                                 /* event function override        */
8470     {378, 319, 619, 385},                    /* widget size                    */
8471     GX_NULL,                                 /* no next widget                 */
8472     &vitals_screen_medtype2_label_define,    /* child widget definition        */
8473     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_medtype2_win), /* control block */
8474     (void *) &vitals_screen_medtype2_win_properties /* extended properties     */
8475 };
8476 
8477 GX_CONST GX_STUDIO_WIDGET vitals_screen_medtype3_win_define =
8478 {
8479     "medtype3_win",
8480     GX_TYPE_WINDOW,                          /* widget type                    */
8481     GX_ID_NONE,                              /* widget id                      */
8482     #if defined(GX_WIDGET_USER_DATA)
8483     0,                                       /* user data                      */
8484     #endif
8485     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED,   /* style flags */
8486     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
8487     sizeof(GX_WINDOW),                       /* control block size             */
8488     GX_COLOR_ID_WINDOW_FILL,                 /* normal color id                */
8489     GX_COLOR_ID_WINDOW_FILL,                 /* selected color id              */
8490     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
8491     gx_studio_window_create,                 /* create function                */
8492     GX_NULL,                                 /* drawing function override      */
8493     GX_NULL,                                 /* event function override        */
8494     {378, 394, 619, 460},                    /* widget size                    */
8495     &vitals_screen_medtype2_win_define,      /* next widget definition         */
8496     &vitals_screen_medtype3_label_define,    /* child widget definition        */
8497     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_medtype3_win), /* control block */
8498     (void *) &vitals_screen_medtype3_win_properties /* extended properties     */
8499 };
8500 
8501 GX_CONST GX_STUDIO_WIDGET vitals_screen_medtype1_win_define =
8502 {
8503     "medtype1_win",
8504     GX_TYPE_WINDOW,                          /* widget type                    */
8505     GX_ID_NONE,                              /* widget id                      */
8506     #if defined(GX_WIDGET_USER_DATA)
8507     0,                                       /* user data                      */
8508     #endif
8509     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED,   /* style flags */
8510     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
8511     sizeof(GX_WINDOW),                       /* control block size             */
8512     GX_COLOR_ID_WINDOW_FILL,                 /* normal color id                */
8513     GX_COLOR_ID_WINDOW_FILL,                 /* selected color id              */
8514     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
8515     gx_studio_window_create,                 /* create function                */
8516     GX_NULL,                                 /* drawing function override      */
8517     GX_NULL,                                 /* event function override        */
8518     {378, 244, 619, 310},                    /* widget size                    */
8519     &vitals_screen_medtype3_win_define,      /* next widget definition         */
8520     &vitals_screen_medtype1_label_define,    /* child widget definition        */
8521     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_medtype1_win), /* control block */
8522     (void *) &vitals_screen_medtype1_win_properties /* extended properties     */
8523 };
8524 
8525 GX_CONST GX_STUDIO_WIDGET vitals_screen_temperature_win_define =
8526 {
8527     "temperature_win",
8528     GX_TYPE_WINDOW,                          /* widget type                    */
8529     GX_ID_NONE,                              /* widget id                      */
8530     #if defined(GX_WIDGET_USER_DATA)
8531     0,                                       /* user data                      */
8532     #endif
8533     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED,   /* style flags */
8534     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
8535     sizeof(GX_WINDOW),                       /* control block size             */
8536     GX_COLOR_ID_WINDOW_FILL,                 /* normal color id                */
8537     GX_COLOR_ID_WINDOW_FILL,                 /* selected color id              */
8538     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
8539     gx_studio_window_create,                 /* create function                */
8540     GX_NULL,                                 /* drawing function override      */
8541     GX_NULL,                                 /* event function override        */
8542     {378, 154, 619, 229},                    /* widget size                    */
8543     &vitals_screen_medtype1_win_define,      /* next widget definition         */
8544     &vitals_screen_prompt_15_define,         /* child widget definition        */
8545     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_temperature_win), /* control block */
8546     (void *) &vitals_screen_temperature_win_properties /* extended properties  */
8547 };
8548 
8549 GX_CONST GX_STUDIO_WIDGET vitals_screen_patien_info_win_define =
8550 {
8551     "patien_info_win",
8552     GX_TYPE_WINDOW,                          /* widget type                    */
8553     GX_ID_NONE,                              /* widget id                      */
8554     #if defined(GX_WIDGET_USER_DATA)
8555     0,                                       /* user data                      */
8556     #endif
8557     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED,   /* style flags */
8558     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
8559     sizeof(GX_WINDOW),                       /* control block size             */
8560     GX_COLOR_ID_WINDOW_FILL,                 /* normal color id                */
8561     GX_COLOR_ID_WINDOW_FILL,                 /* selected color id              */
8562     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
8563     gx_studio_window_create,                 /* create function                */
8564     GX_NULL,                                 /* drawing function override      */
8565     GX_NULL,                                 /* event function override        */
8566     {378, 77, 619, 151},                     /* widget size                    */
8567     &vitals_screen_temperature_win_define,   /* next widget definition         */
8568     &vitals_screen_patient_gender_define,    /* child widget definition        */
8569     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_patien_info_win), /* control block */
8570     (void *) &vitals_screen_patien_info_win_properties /* extended properties  */
8571 };
8572 
8573 GX_CONST GX_STUDIO_WIDGET vitals_screen_blood_pressure_win_define =
8574 {
8575     "blood_pressure_win",
8576     GX_TYPE_WINDOW,                          /* widget type                    */
8577     GX_ID_NONE,                              /* widget id                      */
8578     #if defined(GX_WIDGET_USER_DATA)
8579     0,                                       /* user data                      */
8580     #endif
8581     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED,   /* style flags */
8582     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
8583     sizeof(GX_WINDOW),                       /* control block size             */
8584     GX_COLOR_ID_WINDOW_FILL,                 /* normal color id                */
8585     GX_COLOR_ID_WINDOW_FILL,                 /* selected color id              */
8586     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
8587     gx_studio_window_create,                 /* create function                */
8588     GX_NULL,                                 /* drawing function override      */
8589     GX_NULL,                                 /* event function override        */
8590     {30, 375, 329, 466},                     /* widget size                    */
8591     &vitals_screen_patien_info_win_define,   /* next widget definition         */
8592     &vitals_screen_prompt_23_define,         /* child widget definition        */
8593     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_blood_pressure_win), /* control block */
8594     (void *) &vitals_screen_blood_pressure_win_properties /* extended properties */
8595 };
8596 
8597 GX_CONST GX_STUDIO_WIDGET vitals_screen_pulse_win_define =
8598 {
8599     "pulse_win",
8600     GX_TYPE_WINDOW,                          /* widget type                    */
8601     GX_ID_NONE,                              /* widget id                      */
8602     #if defined(GX_WIDGET_USER_DATA)
8603     0,                                       /* user data                      */
8604     #endif
8605     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT,   /* style flags                */
8606     0,                                       /* status flags                   */
8607     sizeof(GX_WINDOW),                       /* control block size             */
8608     GX_COLOR_ID_WINDOW_FILL,                 /* normal color id                */
8609     GX_COLOR_ID_WINDOW_FILL,                 /* selected color id              */
8610     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
8611     gx_studio_window_create,                 /* create function                */
8612     GX_NULL,                                 /* drawing function override      */
8613     GX_NULL,                                 /* event function override        */
8614     {20, 278, 319, 361},                     /* widget size                    */
8615     &vitals_screen_blood_pressure_win_define, /* next widget definition        */
8616     &vitals_screen_spo2_icon_define,         /* child widget definition        */
8617     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_pulse_win), /* control block */
8618     (void *) &vitals_screen_pulse_win_properties /* extended properties        */
8619 };
8620 
8621 GX_CONST GX_STUDIO_WIDGET vitals_screen_ekg_win_define =
8622 {
8623     "ekg_win",
8624     GX_TYPE_WINDOW,                          /* widget type                    */
8625     GX_ID_NONE,                              /* widget id                      */
8626     #if defined(GX_WIDGET_USER_DATA)
8627     0,                                       /* user data                      */
8628     #endif
8629     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT,   /* style flags                */
8630     0,                                       /* status flags                   */
8631     sizeof(GX_WINDOW),                       /* control block size             */
8632     GX_COLOR_ID_WINDOW_FILL,                 /* normal color id                */
8633     GX_COLOR_ID_WINDOW_FILL,                 /* selected color id              */
8634     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
8635     gx_studio_window_create,                 /* create function                */
8636     GX_NULL,                                 /* drawing function override      */
8637     GX_NULL,                                 /* event function override        */
8638     {20, 180, 319, 263},                     /* widget size                    */
8639     &vitals_screen_pulse_win_define,         /* next widget definition         */
8640     &vitals_screen_heart_rate_icon_define,   /* child widget definition        */
8641     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_ekg_win), /* control block */
8642     (void *) &vitals_screen_ekg_win_properties /* extended properties          */
8643 };
8644 
8645 GX_CONST GX_STUDIO_WIDGET vitals_screen_insulin_win_define =
8646 {
8647     "insulin_win",
8648     GX_TYPE_WINDOW,                          /* widget type                    */
8649     GX_ID_NONE,                              /* widget id                      */
8650     #if defined(GX_WIDGET_USER_DATA)
8651     0,                                       /* user data                      */
8652     #endif
8653     GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED,   /* style flags */
8654     GX_STATUS_ACCEPTS_FOCUS,                 /* status flags                   */
8655     sizeof(GX_WINDOW),                       /* control block size             */
8656     GX_COLOR_ID_WINDOW_FILL,                 /* normal color id                */
8657     GX_COLOR_ID_WINDOW_FILL,                 /* selected color id              */
8658     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
8659     gx_studio_window_create,                 /* create function                */
8660     GX_NULL,                                 /* drawing function override      */
8661     GX_NULL,                                 /* event function override        */
8662     {20, 81, 319, 164},                      /* widget size                    */
8663     &vitals_screen_ekg_win_define,           /* next widget definition         */
8664     &vitals_screen_insulin_define,           /* child widget definition        */
8665     offsetof(VITALS_SCREEN_CONTROL_BLOCK, vitals_screen_insulin_win), /* control block */
8666     (void *) &vitals_screen_insulin_win_properties /* extended properties      */
8667 };
8668 
8669 GX_ANIMATION_INFO vitals_screen_animation_1 = {
8670     (GX_WIDGET *) &vitals_screen.vitals_screen_insulin_win,
8671     (GX_WIDGET *) &vitals_screen,
8672     GX_NULL,
8673     GX_ANIMATION_TRANSLATE|GX_ANIMATION_SINE_EASE_IN, 0, 0, 1,
8674     {20, 381}, {20, 81}, 0, 255, 30
8675 };
8676 
8677 
8678 GX_ANIMATION_INFO vitals_screen_animation_2 = {
8679     (GX_WIDGET *) &vitals_screen.vitals_screen_ekg_win,
8680     (GX_WIDGET *) &vitals_screen,
8681     GX_NULL,
8682     GX_ANIMATION_TRANSLATE|GX_ANIMATION_SINE_EASE_IN, ID_EKG_WIN_SLIDE_IN, 5, 1,
8683     {20, 480}, {20, 180}, 0, 255, 30
8684 };
8685 
8686 
8687 GX_ANIMATION_INFO vitals_screen_animation_3 = {
8688     (GX_WIDGET *) &vitals_screen.vitals_screen_pulse_win,
8689     (GX_WIDGET *) &vitals_screen,
8690     GX_NULL,
8691     GX_ANIMATION_TRANSLATE|GX_ANIMATION_SINE_EASE_IN, ID_PULSE_WIN_SLIDE_IN, 10, 1,
8692     {20, 578}, {20, 278}, 0, 255, 30
8693 };
8694 
8695 
8696 GX_ANIMATION_INFO vitals_screen_animation_4 = {
8697     (GX_WIDGET *) &vitals_screen.vitals_screen_blood_pressure_win,
8698     (GX_WIDGET *) &vitals_screen,
8699     GX_NULL,
8700     GX_ANIMATION_TRANSLATE, 0, 15, 1,
8701     {30, 675}, {30, 375}, 0, 255, 30
8702 };
8703 
8704 
8705 GX_ANIMATION_INFO vitals_screen_animation_5 = {
8706     (GX_WIDGET *) &vitals_screen.vitals_screen_temperature_win,
8707     (GX_WIDGET *) &vitals_screen,
8708     GX_NULL,
8709     GX_ANIMATION_TRANSLATE, 0, 5, 1,
8710     {378, 154}, {378, 154}, 0, 255, 20
8711 };
8712 
8713 
8714 GX_ANIMATION_INFO vitals_screen_animation_6 = {
8715     (GX_WIDGET *) &vitals_screen.vitals_screen_medtype1_win,
8716     (GX_WIDGET *) &vitals_screen,
8717     GX_NULL,
8718     GX_ANIMATION_TRANSLATE, 0, 10, 1,
8719     {378, 244}, {378, 244}, 0, 255, 20
8720 };
8721 
8722 
8723 GX_ANIMATION_INFO vitals_screen_animation_7 = {
8724     (GX_WIDGET *) &vitals_screen.vitals_screen_medtype2_win,
8725     (GX_WIDGET *) &vitals_screen,
8726     GX_NULL,
8727     GX_ANIMATION_TRANSLATE, 0, 15, 1,
8728     {378, 319}, {378, 319}, 0, 255, 20
8729 };
8730 
8731 
8732 GX_ANIMATION_INFO vitals_screen_animation_8 = {
8733     (GX_WIDGET *) &vitals_screen.vitals_screen_medtype3_win,
8734     (GX_WIDGET *) &vitals_screen,
8735     GX_NULL,
8736     GX_ANIMATION_TRANSLATE, 0, 20, 1,
8737     {378, 394}, {378, 394}, 0, 255, 20
8738 };
8739 
8740 
8741 GX_ANIMATION_INFO vitals_screen_animation_9 = {
8742     (GX_WIDGET *) &vitals_screen.vitals_screen_patien_info_win,
8743     (GX_WIDGET *) &vitals_screen,
8744     GX_NULL,
8745     GX_ANIMATION_TRANSLATE, 0, 0, 1,
8746     {378, 77}, {378, 77}, 0, 255, 20
8747 };
8748 
8749 
8750 GX_STUDIO_ACTION vitals_screen_on_gx_event_showactions[10] = {
8751     {GX_ACTION_TYPE_ANIMATION, 0, &vitals_screen, &vitals_screen.vitals_screen_insulin_win, &vitals_screen_animation_1},
8752     {GX_ACTION_TYPE_ANIMATION, 0, &vitals_screen, &vitals_screen.vitals_screen_ekg_win, &vitals_screen_animation_2},
8753     {GX_ACTION_TYPE_ANIMATION, 0, &vitals_screen, &vitals_screen.vitals_screen_pulse_win, &vitals_screen_animation_3},
8754     {GX_ACTION_TYPE_ANIMATION, 0, &vitals_screen, &vitals_screen.vitals_screen_blood_pressure_win, &vitals_screen_animation_4},
8755     {GX_ACTION_TYPE_ANIMATION, 0, &vitals_screen, &vitals_screen.vitals_screen_temperature_win, &vitals_screen_animation_5},
8756     {GX_ACTION_TYPE_ANIMATION, 0, &vitals_screen, &vitals_screen.vitals_screen_medtype1_win, &vitals_screen_animation_6},
8757     {GX_ACTION_TYPE_ANIMATION, 0, &vitals_screen, &vitals_screen.vitals_screen_medtype2_win, &vitals_screen_animation_7},
8758     {GX_ACTION_TYPE_ANIMATION, 0, &vitals_screen, &vitals_screen.vitals_screen_medtype3_win, &vitals_screen_animation_8},
8759     {GX_ACTION_TYPE_ANIMATION, 0, &vitals_screen, &vitals_screen.vitals_screen_patien_info_win, &vitals_screen_animation_9},
8760     {0, 0, GX_NULL, GX_NULL, GX_NULL}
8761 };
8762 
8763 static GX_STUDIO_EVENT_ENTRY gx_studio_vitals_screen_event_table[] = {
8764     { GX_EVENT_SHOW, 0, vitals_screen_on_gx_event_showactions},
8765     {0, 0, GX_NULL}
8766 };
8767 
8768 GX_STUDIO_EVENT_PROCESS vitals_screen_event_chain = {gx_studio_vitals_screen_event_table, (UINT (*)(GX_WIDGET *, GX_EVENT *))vitals_screen_event_process};
gx_studio_vitals_screen_event_process(GX_WIDGET * target,GX_EVENT * event_ptr)8769 static UINT gx_studio_vitals_screen_event_process(GX_WIDGET *target, GX_EVENT *event_ptr)
8770 {
8771     return (gx_studio_auto_event_handler(target, event_ptr, &vitals_screen_event_chain));
8772 }
8773 
8774 
8775 GX_CONST GX_STUDIO_WIDGET vitals_screen_define =
8776 {
8777     "vitals_screen",
8778     GX_TYPE_TEMPLATE,                        /* widget type                    */
8779     ID_VITALS_SCREEN,                        /* widget id                      */
8780     #if defined(GX_WIDGET_USER_DATA)
8781     0,                                       /* user data                      */
8782     #endif
8783     GX_STYLE_BORDER_NONE,                    /* style flags                    */
8784     0,                                       /* status flags                   */
8785     sizeof(VITALS_SCREEN_CONTROL_BLOCK),     /* control block size             */
8786     GX_COLOR_ID_CANVAS,                      /* normal color id                */
8787     GX_COLOR_ID_WINDOW_FILL,                 /* selected color id              */
8788     GX_COLOR_ID_DISABLED_FILL,               /* disabled color id              */
8789     gx_studio_template_create,               /* create function                */
8790     GX_NULL,                                 /* drawing function override      */
8791     (UINT (*)(GX_WIDGET *, GX_EVENT *)) gx_studio_vitals_screen_event_process, /* event function override */
8792     {0, 0, 639, 479},                        /* widget size                    */
8793     GX_NULL,                                 /* next widget                    */
8794     &vitals_screen_insulin_win_define,       /* child widget                   */
8795     0,                                       /* control block                  */
8796     (void *) &vitals_screen_properties       /* extended properties            */
8797 };
8798 GX_CONST GX_STUDIO_WIDGET_ENTRY guix_medical_widget_table[] =
8799 {
8800     { &schedule_screen_define, (GX_WIDGET *) &schedule_screen },
8801     { &patients_screen_define, (GX_WIDGET *) &patients_screen },
8802     { &vitals_screen_define, (GX_WIDGET *) &vitals_screen },
8803     {GX_NULL, GX_NULL}
8804 };
8805 
gx_studio_nested_widget_create(GX_BYTE * control,GX_CONST GX_STUDIO_WIDGET * definition,GX_WIDGET * parent)8806 static GX_WIDGET *gx_studio_nested_widget_create(GX_BYTE *control, GX_CONST GX_STUDIO_WIDGET *definition, GX_WIDGET *parent)
8807 {
8808     UINT status = GX_SUCCESS;
8809     GX_WIDGET *widget = GX_NULL;
8810     GX_VALUE   list_count = 0;
8811     GX_VALUE   list_total_count = 0;
8812 
8813     if(parent && (parent->gx_widget_type == GX_TYPE_MENU))
8814     {
8815         list_total_count = ((GX_MENU *)parent)->gx_menu_list_total_count;
8816     }
8817 
8818     while(definition && status == GX_SUCCESS)
8819     {
8820         if (definition->create_function)
8821         {
8822             if (definition->style & GX_STYLE_DYNAMICALLY_ALLOCATED)
8823             {
8824                 status = gx_widget_allocate(&widget, definition->control_block_size);
8825                 if (status != GX_SUCCESS)
8826                 {
8827                     return GX_NULL;
8828                 }
8829             }
8830             else
8831             {
8832                 if (control == GX_NULL)
8833                 {
8834                     return GX_NULL;
8835                 }
8836                 widget = (GX_WIDGET *) (control + definition->control_block_offset);
8837             }
8838 
8839             status = definition->create_function(definition, widget, parent);
8840 
8841             if(list_count < list_total_count)
8842             {
8843                 gx_menu_insert((GX_MENU *)parent, widget);
8844                 ((GX_MENU *)parent)->gx_menu_list_total_count--;
8845                 list_count++;
8846             }
8847 
8848             if (status == GX_SUCCESS)
8849             {
8850                 if (definition->widget_type != GX_TYPE_TEMPLATE)
8851                 {
8852 #if defined(GUIX_5_4_0_COMPATIBILITY)
8853                     gx_widget_fill_color_set(widget, definition->normal_fill_color_id, definition->selected_fill_color_id);
8854 #else
8855                     gx_widget_fill_color_set(widget, definition->normal_fill_color_id, definition->selected_fill_color_id, definition->disabled_fill_color_id);
8856 #endif
8857                 }
8858 
8859                 if (!(definition->status & GX_STATUS_ACCEPTS_FOCUS))
8860                 {
8861                     gx_widget_status_remove(widget, GX_STATUS_ACCEPTS_FOCUS);
8862                 }
8863 
8864                 if (definition->draw_function)
8865                 {
8866                     gx_widget_draw_set(widget, definition->draw_function);
8867                 }
8868                 if (definition->event_function)
8869                 {
8870                     gx_widget_event_process_set(widget, definition->event_function);
8871                 }
8872 
8873                 #if defined(GX_WIDGET_USER_DATA)
8874                 widget->gx_widget_user_data = definition->user_data;
8875                 #endif
8876 
8877                 if (definition->child_widget)
8878                 {
8879                     gx_studio_nested_widget_create(control, definition->child_widget, widget);
8880                 }
8881             }
8882             definition = definition->next_widget;
8883         }
8884     }
8885     return widget;
8886 }
8887 
gx_studio_widget_create(GX_BYTE * control,GX_CONST GX_STUDIO_WIDGET * definition,GX_WIDGET * parent)8888 GX_WIDGET *gx_studio_widget_create(GX_BYTE *control, GX_CONST GX_STUDIO_WIDGET *definition, GX_WIDGET *parent)
8889 {
8890     GX_WIDGET *widget;
8891     widget = gx_studio_nested_widget_create(control, definition, GX_NULL);
8892 
8893     if (parent && widget)
8894     {
8895         gx_widget_attach(parent, widget);
8896     }
8897     return widget;
8898 }
8899 
gx_studio_named_widget_create(char * name,GX_WIDGET * parent,GX_WIDGET ** new_widget)8900 UINT gx_studio_named_widget_create(char *name, GX_WIDGET *parent, GX_WIDGET **new_widget)
8901 {
8902     UINT status = GX_FAILURE;
8903     GX_CONST GX_STUDIO_WIDGET_ENTRY *entry = guix_medical_widget_table;
8904     GX_WIDGET *widget = GX_NULL;
8905 
8906     while(entry->widget_information)
8907     {
8908         if (!strcmp(name, entry->widget_information->widget_name))
8909         {
8910             widget = gx_studio_widget_create((GX_BYTE *) entry->widget, entry->widget_information, parent);
8911             if (widget)
8912             {
8913                 status = GX_SUCCESS;
8914             }
8915             break;
8916         }
8917         entry++;
8918     }
8919 
8920     if (new_widget)
8921     {
8922         *new_widget = widget;
8923     }
8924     return status;
8925 }
8926 
8927 
gx_studio_display_configure(USHORT display,UINT (* driver)(GX_DISPLAY *),GX_UBYTE language,USHORT theme,GX_WINDOW_ROOT ** return_root)8928 UINT gx_studio_display_configure(USHORT display, UINT (*driver)(GX_DISPLAY *),
8929     GX_UBYTE language, USHORT theme, GX_WINDOW_ROOT **return_root)
8930 {
8931     GX_CONST GX_THEME *theme_ptr;
8932     GX_RECTANGLE size;
8933 
8934     GX_STUDIO_DISPLAY_INFO *display_info = &guix_medical_display_table[display];
8935 
8936 
8937 /* create the requested display                                                */
8938 
8939     gx_display_create(display_info->display,
8940                       display_info->name,
8941                       driver,
8942                       (GX_VALUE) display_info->x_resolution,
8943                       (GX_VALUE) display_info->y_resolution);
8944 
8945 
8946 /* install the request theme                                                   */
8947 
8948     if(display_info->theme_table)
8949     {
8950         theme_ptr = display_info->theme_table[theme];
8951         if(theme_ptr)
8952         {
8953             gx_display_color_table_set(display_info->display, theme_ptr->theme_color_table, theme_ptr->theme_color_table_size);
8954 
8955 /* install the color palette if required                                       */
8956             if (display_info->display->gx_display_driver_palette_set &&
8957                 theme_ptr->theme_palette != NULL)
8958             {
8959                 display_info->display->gx_display_driver_palette_set(display_info->display, theme_ptr->theme_palette, theme_ptr->theme_palette_size);
8960             }
8961 
8962             gx_display_font_table_set(display_info->display, theme_ptr->theme_font_table, theme_ptr->theme_font_table_size);
8963             gx_display_pixelmap_table_set(display_info->display, theme_ptr->theme_pixelmap_table, theme_ptr->theme_pixelmap_table_size);
8964             gx_system_scroll_appearance_set(theme_ptr->theme_vertical_scroll_style, (GX_SCROLLBAR_APPEARANCE *) &theme_ptr->theme_vertical_scrollbar_appearance);
8965             gx_system_scroll_appearance_set(theme_ptr->theme_horizontal_scroll_style, (GX_SCROLLBAR_APPEARANCE *) &theme_ptr->theme_horizontal_scrollbar_appearance);
8966         }
8967     }
8968 
8969 /* Install the language table.                                                 */
8970 
8971     if(display_info->language_table)
8972     {
8973         gx_display_language_table_set_ext(display_info->display, display_info->language_table, (GX_UBYTE) display_info->language_table_size, display_info->string_table_size);
8974         gx_display_active_language_set(display_info->display, language);
8975     }
8976 
8977 /* Set screen rotation angle.                                                  */
8978 
8979     display_info->display->gx_display_rotation_angle = display_info->rotation_angle;
8980 
8981 /* create the canvas for this display                                          */
8982 
8983     gx_canvas_create(display_info->canvas,
8984                      display_info->canvas_name,
8985                      display_info->display,
8986                      GX_CANVAS_MANAGED | GX_CANVAS_VISIBLE,
8987                      display_info->x_resolution,
8988                      display_info->y_resolution,
8989                      display_info->canvas_memory,
8990                      display_info->canvas_memory_size);
8991 
8992 /* Create the root window for this canvas                                      */
8993 
8994     gx_utility_rectangle_define(&size,
8995                                 0, 0,
8996                                 (GX_VALUE) (display_info->x_resolution - 1),
8997                                 (GX_VALUE) (display_info->y_resolution - 1));
8998 
8999     gx_window_root_create(display_info->root_window,
9000                           display_info->name,
9001                           display_info->canvas, GX_STYLE_NONE, 0, &size);
9002     if (return_root)
9003     {
9004         *return_root = display_info->root_window;
9005     }
9006     return GX_SUCCESS;
9007 }
9008 #undef GUIX_STUDIO_GENERATED_FILE
9009