mirror of
https://github.com/azure-rtos/guix.git
synced 2025-01-28 07:03:11 +08:00
5602 lines
323 KiB
C
5602 lines
323 KiB
C
/*******************************************************************************/
|
|
/* This file is auto-generated by Azure RTOS GUIX Studio. Do not edit this */
|
|
/* file by hand. Modifications to this file should only be made by running */
|
|
/* the Azure RTOS GUIX Studio application and re-generating the application */
|
|
/* specification file(s). For more information please refer to the Azure RTOS */
|
|
/* GUIX Studio User Guide, or visit our web site at azure.com/rtos */
|
|
/* */
|
|
/* GUIX Studio Revision 6.0.1.14 */
|
|
/* Date (dd.mm.yyyy): 18.12.2020 Time (hh:mm): 16:59 */
|
|
/*******************************************************************************/
|
|
|
|
|
|
#define GUIX_STUDIO_GENERATED_FILE
|
|
#include <stddef.h>
|
|
#include "demo_guix_industrial_resources.h"
|
|
#include "demo_guix_industrial_specifications.h"
|
|
|
|
static GX_WIDGET *gx_studio_nested_widget_create(GX_BYTE *control, GX_CONST GX_STUDIO_WIDGET *definition, GX_WIDGET *parent);
|
|
SEQUENCE_NUMBER_CONTROL_BLOCK sequence_number;
|
|
COMPLETE_WINDOW_CONTROL_BLOCK complete_window;
|
|
SEQUENCE_WINDOW_CONTROL_BLOCK sequence_window;
|
|
MAIN_SCREEN_CONTROL_BLOCK main_screen;
|
|
GX_DISPLAY main_display_control_block;
|
|
GX_WINDOW_ROOT main_display_root_window;
|
|
GX_CANVAS main_display_canvas_control_block;
|
|
ULONG main_display_canvas_memory[307200];
|
|
|
|
extern GX_CONST GX_THEME *main_display_theme_table[];
|
|
extern GX_CONST GX_STRING *main_display_language_table[];
|
|
|
|
GX_STUDIO_DISPLAY_INFO demo_guix_industrial_display_table[1] =
|
|
{
|
|
{
|
|
"main_display",
|
|
"main_display_canvas",
|
|
main_display_theme_table,
|
|
main_display_language_table,
|
|
MAIN_DISPLAY_THEME_TABLE_SIZE,
|
|
MAIN_DISPLAY_LANGUAGE_TABLE_SIZE,
|
|
MAIN_DISPLAY_STRING_TABLE_SIZE,
|
|
640, /* x resolution */
|
|
480, /* y resolution */
|
|
&main_display_control_block,
|
|
&main_display_canvas_control_block,
|
|
&main_display_root_window,
|
|
main_display_canvas_memory, /* canvas memory area */
|
|
1228800, /* canvas memory size in bytes */
|
|
0 /* rotation angle */
|
|
}
|
|
};
|
|
|
|
static VOID gx_studio_screen_toggle(GX_WIDGET *target1, GX_WIDGET *target2)
|
|
{
|
|
GX_WIDGET *parent = target1->gx_widget_parent;
|
|
if (parent)
|
|
{
|
|
gx_widget_detach(target1);
|
|
gx_widget_attach(parent, target2);
|
|
if (target1->gx_widget_status & GX_STATUS_STUDIO_CREATED)
|
|
{
|
|
gx_widget_delete(target1);
|
|
}
|
|
}
|
|
}
|
|
|
|
static GX_WIDGET *gx_studio_action_target_get(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action)
|
|
{
|
|
GX_WIDGET *parent = GX_NULL;
|
|
GX_WIDGET *target = GX_NULL;
|
|
INT search_depth;
|
|
GX_STUDIO_WIDGET *widget_define;
|
|
|
|
if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET)
|
|
{
|
|
/* dynamically create the target widget */
|
|
widget_define = (GX_STUDIO_WIDGET *) action->target;
|
|
if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT)
|
|
{
|
|
gx_window_root_find(current, (GX_WINDOW_ROOT **)&parent);
|
|
search_depth = GX_SEARCH_DEPTH_INFINITE;
|
|
}
|
|
else
|
|
{
|
|
parent = (GX_WIDGET *)action->parent;
|
|
search_depth = 1;
|
|
}
|
|
gx_widget_find(parent, widget_define->widget_id, search_depth, &target);
|
|
if (target == GX_NULL)
|
|
{
|
|
target = gx_studio_widget_create(GX_NULL, widget_define, GX_NULL);
|
|
}
|
|
if (target)
|
|
{
|
|
target->gx_widget_status |= GX_STATUS_STUDIO_CREATED;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
target = (GX_WIDGET *) action->target;
|
|
}
|
|
return target;
|
|
}
|
|
|
|
static GX_WIDGET *gx_studio_action_target_find(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action)
|
|
{
|
|
GX_WIDGET *parent = GX_NULL;
|
|
GX_WIDGET *target = GX_NULL;
|
|
GX_STUDIO_WIDGET *widget_define;
|
|
|
|
if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET)
|
|
{
|
|
/* Find the dynamically created target */
|
|
widget_define = (GX_STUDIO_WIDGET *) action->target;
|
|
if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT)
|
|
{
|
|
gx_window_root_find(current, (GX_WINDOW_ROOT **)&parent);
|
|
}
|
|
else
|
|
{
|
|
parent = (GX_WIDGET *)action->parent;
|
|
}
|
|
gx_widget_find(parent, widget_define->widget_id, GX_SEARCH_DEPTH_INFINITE, &target);
|
|
}
|
|
else
|
|
{
|
|
target = (GX_WIDGET *) action->target;
|
|
}
|
|
return target;
|
|
}
|
|
|
|
static GX_WIDGET *gx_studio_action_parent_find(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action)
|
|
{
|
|
GX_WIDGET *parent = GX_NULL;
|
|
GX_STUDIO_WIDGET *widget_define;
|
|
|
|
if (action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT)
|
|
{
|
|
/* Find the dynamically created target */
|
|
widget_define = (GX_STUDIO_WIDGET *)action->parent;
|
|
gx_window_root_find(current, (GX_WINDOW_ROOT **)&parent);
|
|
gx_widget_find(parent, widget_define->widget_id, GX_SEARCH_DEPTH_INFINITE, &parent);
|
|
}
|
|
else
|
|
{
|
|
parent = (GX_WIDGET *)action->parent;
|
|
}
|
|
return parent;
|
|
}
|
|
|
|
static VOID gx_studio_animation_execute(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action)
|
|
{
|
|
GX_ANIMATION *animation;
|
|
GX_ANIMATION_INFO animation_info;
|
|
GX_WIDGET *parent = GX_NULL;
|
|
GX_WIDGET *target = GX_NULL;
|
|
gx_system_animation_get(&animation);
|
|
if (animation)
|
|
{
|
|
animation_info = *action->animation;
|
|
|
|
if((action->flags & GX_ACTION_FLAG_POP_TARGET) ||
|
|
(action->flags & GX_ACTION_FLAG_POP_PARENT))
|
|
{
|
|
gx_system_screen_stack_get((GX_WIDGET **)&parent, &target);
|
|
}
|
|
|
|
if(action->flags & GX_ACTION_FLAG_POP_TARGET)
|
|
{
|
|
animation_info.gx_animation_target = target;
|
|
}
|
|
|
|
if(action->flags & GX_ACTION_FLAG_POP_PARENT)
|
|
{
|
|
animation_info.gx_animation_parent = (GX_WIDGET *)parent;
|
|
}
|
|
|
|
if ((!animation_info.gx_animation_target) &&
|
|
(action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET))
|
|
{
|
|
target = gx_studio_action_target_get(current, action);
|
|
animation_info.gx_animation_target = target;
|
|
}
|
|
|
|
if (!animation_info.gx_animation_parent)
|
|
{
|
|
animation_info.gx_animation_parent = gx_studio_action_parent_find(current, action);
|
|
}
|
|
|
|
if (animation_info.gx_animation_target &&
|
|
animation_info.gx_animation_parent)
|
|
{
|
|
gx_animation_start(animation, &animation_info);
|
|
}
|
|
}
|
|
}
|
|
|
|
UINT gx_studio_auto_event_handler(GX_WIDGET *widget, GX_EVENT *event_ptr, GX_CONST GX_STUDIO_EVENT_PROCESS *record)
|
|
{
|
|
UINT status = GX_SUCCESS;
|
|
GX_CONST GX_STUDIO_ACTION *action;
|
|
GX_CONST GX_WIDGET *parent = GX_NULL;
|
|
GX_WIDGET *target = GX_NULL;
|
|
GX_CONST GX_STUDIO_EVENT_ENTRY *entry = record->event_table;
|
|
|
|
while(entry->event_type)
|
|
{
|
|
if (entry->event_type == event_ptr->gx_event_type)
|
|
{
|
|
if((entry->event_type == GX_EVENT_ANIMATION_COMPLETE) &&
|
|
(entry->event_sender != event_ptr->gx_event_sender))
|
|
{
|
|
entry++;
|
|
continue;
|
|
}
|
|
action = entry->action_list;
|
|
|
|
while(action->opcode)
|
|
{
|
|
switch(action->opcode)
|
|
{
|
|
case GX_ACTION_TYPE_ATTACH:
|
|
if((action->flags & GX_ACTION_FLAG_POP_TARGET) ||
|
|
(action->flags & GX_ACTION_FLAG_POP_PARENT))
|
|
{
|
|
gx_system_screen_stack_get((GX_WIDGET **)&parent, &target);
|
|
}
|
|
|
|
if(!(action->flags & GX_ACTION_FLAG_POP_PARENT))
|
|
{
|
|
parent = action->parent;
|
|
}
|
|
if(!(action->flags & GX_ACTION_FLAG_POP_TARGET))
|
|
{
|
|
target = gx_studio_action_target_get(widget, action);
|
|
}
|
|
if (parent && target)
|
|
{
|
|
gx_widget_attach(parent, target);
|
|
}
|
|
break;
|
|
|
|
case GX_ACTION_TYPE_DETACH:
|
|
target = gx_studio_action_target_find(widget, action);
|
|
if (target)
|
|
{
|
|
gx_widget_detach(target);
|
|
if (target->gx_widget_status & GX_STATUS_STUDIO_CREATED)
|
|
{
|
|
gx_widget_delete(target);
|
|
}
|
|
}
|
|
break;
|
|
|
|
case GX_ACTION_TYPE_TOGGLE:
|
|
if(action->flags & GX_ACTION_FLAG_POP_TARGET)
|
|
{
|
|
gx_system_screen_stack_get(GX_NULL, &target);
|
|
}
|
|
else
|
|
{
|
|
target = gx_studio_action_target_get(widget, action);
|
|
}
|
|
gx_studio_screen_toggle(widget, target);
|
|
break;
|
|
|
|
case GX_ACTION_TYPE_SHOW:
|
|
target = gx_studio_action_target_get(widget, action);
|
|
if(target)
|
|
{
|
|
gx_widget_show(target);
|
|
}
|
|
break;
|
|
|
|
case GX_ACTION_TYPE_HIDE:
|
|
target = gx_studio_action_target_find(widget, action);
|
|
if(target)
|
|
{
|
|
gx_widget_hide(target);
|
|
}
|
|
break;
|
|
|
|
case GX_ACTION_TYPE_ANIMATION:
|
|
gx_studio_animation_execute(widget, action);
|
|
break;
|
|
|
|
case GX_ACTION_TYPE_WINDOW_EXECUTE:
|
|
if((action->flags & GX_ACTION_FLAG_POP_TARGET) ||
|
|
(action->flags & GX_ACTION_FLAG_POP_PARENT))
|
|
{
|
|
gx_system_screen_stack_get((GX_WIDGET **)&parent, &target);
|
|
}
|
|
|
|
if(!(action->flags & GX_ACTION_FLAG_POP_PARENT))
|
|
{
|
|
parent = widget->gx_widget_parent;
|
|
}
|
|
if(!(action->flags & GX_ACTION_FLAG_POP_TARGET))
|
|
{
|
|
target = gx_studio_action_target_get(widget, action);
|
|
}
|
|
if (parent && target)
|
|
{
|
|
gx_widget_attach(parent, target);
|
|
gx_window_execute((GX_WINDOW *) target, GX_NULL);
|
|
}
|
|
break;
|
|
|
|
case GX_ACTION_TYPE_WINDOW_EXECUTE_STOP:
|
|
return event_ptr->gx_event_sender;
|
|
|
|
case GX_ACTION_TYPE_SCREEN_STACK_PUSH:
|
|
target = gx_studio_action_target_get(widget, action);
|
|
if(target)
|
|
{
|
|
gx_system_screen_stack_push(target);
|
|
}
|
|
break;
|
|
|
|
case GX_ACTION_TYPE_SCREEN_STACK_POP:
|
|
gx_system_screen_stack_pop();
|
|
break;
|
|
|
|
case GX_ACTION_TYPE_SCREEN_STACK_RESET:
|
|
gx_system_screen_stack_reset();
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
action++;
|
|
}
|
|
}
|
|
entry++;
|
|
}
|
|
|
|
if (record->chain_event_handler)
|
|
{
|
|
status = record->chain_event_handler(widget, event_ptr);
|
|
}
|
|
return status;
|
|
}
|
|
|
|
|
|
UINT gx_studio_pixelmap_button_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent)
|
|
{
|
|
UINT status;
|
|
GX_PIXELMAP_BUTTON *button = (GX_PIXELMAP_BUTTON *) control_block;
|
|
GX_PIXELMAP_BUTTON_PROPERTIES *props = (GX_PIXELMAP_BUTTON_PROPERTIES *) info->properties;
|
|
status = gx_pixelmap_button_create(button, info->widget_name, parent,
|
|
props->normal_pixelmap_id,
|
|
props->selected_pixelmap_id,
|
|
props->disabled_pixelmap_id,
|
|
info->style, info->widget_id, &info->size);
|
|
return status;
|
|
}
|
|
|
|
UINT gx_studio_icon_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent)
|
|
{
|
|
UINT status;
|
|
GX_ICON *icon = (GX_ICON *) control_block;
|
|
GX_ICON_PROPERTIES *props = (GX_ICON_PROPERTIES *) info->properties;
|
|
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);
|
|
if (props->selected_pixelmap_id)
|
|
{
|
|
gx_icon_pixelmap_set(icon, props->normal_pixelmap_id, props->selected_pixelmap_id);
|
|
}
|
|
return status;
|
|
}
|
|
|
|
UINT gx_studio_progress_bar_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent)
|
|
{
|
|
UINT status;
|
|
GX_PROGRESS_BAR *bar = (GX_PROGRESS_BAR *) control_block;
|
|
GX_PROGRESS_BAR_INFO *bar_info = (GX_PROGRESS_BAR_INFO *) info->properties;
|
|
status = gx_progress_bar_create(bar,
|
|
info->widget_name,
|
|
parent,
|
|
bar_info,
|
|
info->style,
|
|
info->widget_id,
|
|
&info->size);
|
|
return status;
|
|
}
|
|
|
|
UINT gx_studio_radial_progress_bar_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent)
|
|
{
|
|
UINT status;
|
|
GX_RADIAL_PROGRESS_BAR *bar = (GX_RADIAL_PROGRESS_BAR *) control_block;
|
|
GX_RADIAL_PROGRESS_BAR_INFO *bar_info = (GX_RADIAL_PROGRESS_BAR_INFO *) info->properties;
|
|
status = gx_radial_progress_bar_create(bar,
|
|
info->widget_name,
|
|
parent,
|
|
bar_info,
|
|
info->style,
|
|
info->widget_id);
|
|
return status;
|
|
}
|
|
|
|
UINT gx_studio_sprite_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent)
|
|
{
|
|
UINT status;
|
|
GX_SPRITE *sprite = (GX_SPRITE *) control_block;
|
|
GX_SPRITE_PROPERTIES *props = (GX_SPRITE_PROPERTIES *) info->properties;
|
|
status = gx_sprite_create(sprite, info->widget_name, parent,
|
|
props->frame_list, props->frame_count,
|
|
info->style, info->widget_id, &info->size);
|
|
return status;
|
|
}
|
|
|
|
UINT gx_studio_prompt_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent)
|
|
{
|
|
UINT status;
|
|
GX_PROMPT *prompt = (GX_PROMPT *) control_block;
|
|
GX_PROMPT_PROPERTIES *props = (GX_PROMPT_PROPERTIES *) info->properties;
|
|
status = gx_prompt_create(prompt, info->widget_name, parent, props->string_id, info->style, info->widget_id, &info->size);
|
|
if (status == GX_SUCCESS)
|
|
{
|
|
gx_prompt_font_set(prompt, props->font_id);
|
|
#if defined(GUIX_5_4_0_COMPATIBILITY)
|
|
gx_prompt_text_color_set(prompt, props->normal_text_color_id, props->selected_text_color_id);
|
|
#else
|
|
gx_prompt_text_color_set(prompt, props->normal_text_color_id, props->selected_text_color_id, props->disabled_text_color_id);
|
|
#endif
|
|
}
|
|
return status;
|
|
}
|
|
|
|
UINT gx_studio_numeric_prompt_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent)
|
|
{
|
|
UINT status;
|
|
GX_NUMERIC_PROMPT *prompt = (GX_NUMERIC_PROMPT *) control_block;
|
|
GX_NUMERIC_PROMPT_PROPERTIES *props = (GX_NUMERIC_PROMPT_PROPERTIES *) info->properties;
|
|
status = gx_numeric_prompt_create(prompt, info->widget_name, parent, props->string_id, info->style, info->widget_id, &info->size);
|
|
if (status == GX_SUCCESS)
|
|
{
|
|
gx_prompt_font_set((GX_PROMPT *)prompt, props->font_id);
|
|
#if defined(GUIX_5_4_0_COMPATIBILITY)
|
|
gx_prompt_text_color_set((GX_PROMPT *)prompt, props->normal_text_color_id, props->selected_text_color_id);
|
|
#else
|
|
gx_prompt_text_color_set((GX_PROMPT *)prompt, props->normal_text_color_id, props->selected_text_color_id, props->disabled_text_color_id);
|
|
#endif
|
|
if(!props->string_id)
|
|
{
|
|
gx_numeric_prompt_value_set(prompt, props->numeric_prompt_value);
|
|
}
|
|
if(props->format_func)
|
|
{
|
|
gx_numeric_prompt_format_function_set(prompt, props->format_func);
|
|
}
|
|
}
|
|
return status;
|
|
}
|
|
|
|
UINT gx_studio_window_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent)
|
|
{
|
|
UINT status;
|
|
GX_WINDOW *window = (GX_WINDOW *) control_block;
|
|
GX_WINDOW_PROPERTIES *props = (GX_WINDOW_PROPERTIES *) info->properties;
|
|
status = gx_window_create(window, info->widget_name, parent, info->style, info->widget_id, &info->size);
|
|
if (status == GX_SUCCESS)
|
|
{
|
|
if (props->wallpaper_id)
|
|
{
|
|
gx_window_wallpaper_set(window, props->wallpaper_id, info->style & GX_STYLE_TILE_WALLPAPER);
|
|
}
|
|
}
|
|
return status;
|
|
}
|
|
GX_WINDOW_PROPERTIES sequence_number_properties =
|
|
{
|
|
0 /* wallpaper pixelmap id */
|
|
};
|
|
GX_ICON_PROPERTIES sequence_number_icon_12_3_properties =
|
|
{
|
|
GX_PIXELMAP_ID_VERTICAL_DIVIDER, /* normal pixelmap id */
|
|
0 /* selected pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_number_prompt_18_2_properties =
|
|
{
|
|
GX_STRING_ID_STRING_66, /* string id */
|
|
GX_FONT_ID_NORMAL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_number_prompt_18_3_properties =
|
|
{
|
|
GX_STRING_ID_STRING_67, /* string id */
|
|
GX_FONT_ID_MIDDLE_30, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_number_prompt_18_3_define =
|
|
{
|
|
"prompt_18_3",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{380, 20, 436, 50}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_NUMBER_CONTROL_BLOCK, sequence_number_prompt_18_3), /* control block */
|
|
(void *) &sequence_number_prompt_18_3_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_number_prompt_18_2_define =
|
|
{
|
|
"prompt_18_2",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{328, 28, 377, 45}, /* widget size */
|
|
&sequence_number_prompt_18_3_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_NUMBER_CONTROL_BLOCK, sequence_number_prompt_18_2), /* control block */
|
|
(void *) &sequence_number_prompt_18_2_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_number_icon_12_3_define =
|
|
{
|
|
"icon_12_3",
|
|
GX_TYPE_ICON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_ICON), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_icon_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{316, 15, 317, 48}, /* widget size */
|
|
&sequence_number_prompt_18_2_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_NUMBER_CONTROL_BLOCK, sequence_number_icon_12_3), /* control block */
|
|
(void *) &sequence_number_icon_12_3_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_number_define =
|
|
{
|
|
"sequence_number",
|
|
GX_TYPE_WINDOW, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(SEQUENCE_NUMBER_CONTROL_BLOCK), /* control block size */
|
|
GX_COLOR_ID_WINDOW_FILL, /* normal color id */
|
|
GX_COLOR_ID_WINDOW_FILL, /* selected color id */
|
|
GX_COLOR_ID_WINDOW_FILL, /* disabled color id */
|
|
gx_studio_window_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{313, 12, 438, 53}, /* widget size */
|
|
GX_NULL, /* next widget */
|
|
&sequence_number_icon_12_3_define, /* child widget */
|
|
0, /* control block */
|
|
(void *) &sequence_number_properties /* extended properties */
|
|
};
|
|
GX_WINDOW_PROPERTIES complete_window_properties =
|
|
{
|
|
0 /* wallpaper pixelmap id */
|
|
};
|
|
GX_ICON_PROPERTIES complete_window_icon_12_2_properties =
|
|
{
|
|
GX_PIXELMAP_ID_ICON_THUMB_UP, /* normal pixelmap id */
|
|
0 /* selected pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES complete_window_prompt_17_7_properties =
|
|
{
|
|
GX_STRING_ID_STRING_65, /* string id */
|
|
GX_FONT_ID_MIDDLE_45, /* font id */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_LIGHT_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES complete_window_prompt_17_properties =
|
|
{
|
|
GX_STRING_ID_STRING_66, /* string id */
|
|
GX_FONT_ID_MIDDLE_30, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES complete_window_prompt_17_2_properties =
|
|
{
|
|
GX_STRING_ID_STRING_67, /* string id */
|
|
GX_FONT_ID_MIDDLE_45, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES complete_window_prompt_17_3_properties =
|
|
{
|
|
GX_STRING_ID_STRING_69, /* string id */
|
|
GX_FONT_ID_MIDDLE, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES complete_window_prompt_17_4_properties =
|
|
{
|
|
GX_STRING_ID_STRING_39, /* string id */
|
|
GX_FONT_ID_MIDDLE, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_NUMERIC_PROMPT_PROPERTIES complete_window_countdown_properties =
|
|
{
|
|
0, /* string id */
|
|
GX_FONT_ID_MIDDLE_30, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY, /* disabled text color */
|
|
GX_NULL, /* format function */
|
|
8 /* numeric prompt value */
|
|
};
|
|
GX_ICON_PROPERTIES complete_window_icon_13_2_properties =
|
|
{
|
|
GX_PIXELMAP_ID_VERTICAL_DIVIDER_CONFIRMATION, /* normal pixelmap id */
|
|
0 /* selected pixelmap id */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET complete_window_countdown_define =
|
|
{
|
|
"countdown",
|
|
GX_TYPE_NUMERIC_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_NUMERIC_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_numeric_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{380, 340, 398, 370}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(COMPLETE_WINDOW_CONTROL_BLOCK, complete_window_countdown), /* control block */
|
|
(void *) &complete_window_countdown_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET complete_window_icon_13_2_define =
|
|
{
|
|
"icon_13_2",
|
|
GX_TYPE_ICON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_ICON), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_icon_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{309, 123, 310, 195}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(COMPLETE_WINDOW_CONTROL_BLOCK, complete_window_icon_13_2), /* control block */
|
|
(void *) &complete_window_icon_13_2_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET complete_window_prompt_17_4_define =
|
|
{
|
|
"prompt_17_4",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_BLACK, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_BLACK, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{188, 341, 462, 365}, /* widget size */
|
|
&complete_window_icon_13_2_define, /* next widget definition */
|
|
&complete_window_countdown_define, /* child widget definition */
|
|
offsetof(COMPLETE_WINDOW_CONTROL_BLOCK, complete_window_prompt_17_4), /* control block */
|
|
(void *) &complete_window_prompt_17_4_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET complete_window_prompt_17_3_define =
|
|
{
|
|
"prompt_17_3",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_BLACK, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_BLACK, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{182, 311, 474, 335}, /* widget size */
|
|
&complete_window_prompt_17_4_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(COMPLETE_WINDOW_CONTROL_BLOCK, complete_window_prompt_17_3), /* control block */
|
|
(void *) &complete_window_prompt_17_3_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET complete_window_prompt_17_2_define =
|
|
{
|
|
"prompt_17_2",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{346, 153, 432, 199}, /* widget size */
|
|
&complete_window_prompt_17_3_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(COMPLETE_WINDOW_CONTROL_BLOCK, complete_window_prompt_17_2), /* control block */
|
|
(void *) &complete_window_prompt_17_2_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET complete_window_prompt_17_define =
|
|
{
|
|
"prompt_17",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{351, 119, 434, 149}, /* widget size */
|
|
&complete_window_prompt_17_2_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(COMPLETE_WINDOW_CONTROL_BLOCK, complete_window_prompt_17), /* control block */
|
|
(void *) &complete_window_prompt_17_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET complete_window_prompt_17_7_define =
|
|
{
|
|
"prompt_17_7",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{85, 233, 571, 279}, /* widget size */
|
|
&complete_window_prompt_17_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(COMPLETE_WINDOW_CONTROL_BLOCK, complete_window_prompt_17_7), /* control block */
|
|
(void *) &complete_window_prompt_17_7_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET complete_window_icon_12_2_define =
|
|
{
|
|
"icon_12_2",
|
|
GX_TYPE_ICON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_ICON), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_icon_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{190, 110, 267, 194}, /* widget size */
|
|
&complete_window_prompt_17_7_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(COMPLETE_WINDOW_CONTROL_BLOCK, complete_window_icon_12_2), /* control block */
|
|
(void *) &complete_window_icon_12_2_properties /* extended properties */
|
|
};
|
|
|
|
GX_ANIMATION_INFO complete_window_animation_1 = {
|
|
(GX_WIDGET *) &complete_window,
|
|
(GX_WIDGET *) &main_screen,
|
|
GX_NULL,
|
|
GX_ANIMATION_TRANSLATE, ANI_ID_COMPLETE_WIN_FADE_IN, 0, 1,
|
|
{74, 104}, {74, 104}, 0, 255, 20
|
|
};
|
|
|
|
|
|
GX_ANIMATION_INFO complete_window_animation_2 = {
|
|
(GX_WIDGET *) &complete_window,
|
|
(GX_WIDGET *) &main_screen,
|
|
GX_NULL,
|
|
GX_ANIMATION_TRANSLATE|GX_ANIMATION_DETACH, ANI_ID_COMPLETE_WIN_FADE_OUT, 0, 1,
|
|
{74, 104}, {74, 104}, 255, 0, 20
|
|
};
|
|
|
|
|
|
GX_STUDIO_ACTION complete_window_on_user_event_complete_win_fade_inactions[2] = {
|
|
{GX_ACTION_TYPE_ANIMATION, 0, &main_screen, &complete_window, &complete_window_animation_1},
|
|
{0, 0, GX_NULL, GX_NULL, GX_NULL}
|
|
};
|
|
|
|
|
|
GX_STUDIO_ACTION complete_window_on_user_event_complete_win_fade_outactions[2] = {
|
|
{GX_ACTION_TYPE_ANIMATION, 0, &main_screen, &complete_window, &complete_window_animation_2},
|
|
{0, 0, GX_NULL, GX_NULL, GX_NULL}
|
|
};
|
|
|
|
static GX_STUDIO_EVENT_ENTRY gx_studio_complete_window_event_table[] = {
|
|
{ USER_EVENT_COMPLETE_WIN_FADE_IN, 0, complete_window_on_user_event_complete_win_fade_inactions},
|
|
{ USER_EVENT_COMPLETE_WIN_FADE_OUT, 0, complete_window_on_user_event_complete_win_fade_outactions},
|
|
{0, 0, GX_NULL}
|
|
};
|
|
|
|
GX_STUDIO_EVENT_PROCESS complete_window_event_chain = {gx_studio_complete_window_event_table, (UINT (*)(GX_WIDGET *, GX_EVENT *))complete_window_event_process};
|
|
static UINT gx_studio_complete_window_event_process(GX_WIDGET *target, GX_EVENT *event_ptr)
|
|
{
|
|
return (gx_studio_auto_event_handler(target, event_ptr, &complete_window_event_chain));
|
|
}
|
|
|
|
|
|
GX_CONST GX_STUDIO_WIDGET complete_window_define =
|
|
{
|
|
"complete_window",
|
|
GX_TYPE_WINDOW, /* widget type */
|
|
ID_COMPLETE_WINDOW, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(COMPLETE_WINDOW_CONTROL_BLOCK), /* control block size */
|
|
GX_COLOR_ID_WINDOW_FILL, /* normal color id */
|
|
GX_COLOR_ID_WINDOW_FILL, /* selected color id */
|
|
GX_COLOR_ID_WINDOW_FILL, /* disabled color id */
|
|
gx_studio_window_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
(UINT (*)(GX_WIDGET *, GX_EVENT *)) gx_studio_complete_window_event_process, /* event function override */
|
|
{74, 104, 580, 400}, /* widget size */
|
|
GX_NULL, /* next widget */
|
|
&complete_window_icon_12_2_define, /* child widget */
|
|
0, /* control block */
|
|
(void *) &complete_window_properties /* extended properties */
|
|
};
|
|
GX_WINDOW_PROPERTIES sequence_window_properties =
|
|
{
|
|
0 /* wallpaper pixelmap id */
|
|
};
|
|
GX_WINDOW_PROPERTIES sequence_window_window_progress_properties =
|
|
{
|
|
GX_PIXELMAP_ID_PROGRESS_BAR_BG /* wallpaper pixelmap id */
|
|
};
|
|
GX_PROGRESS_BAR_INFO sequence_window_bottom_progress_properties =
|
|
{
|
|
0, /* mimimun value */
|
|
100, /* maximum value */
|
|
50, /* current value */
|
|
GX_FONT_ID_SYSTEM, /* font_id */
|
|
GX_COLOR_ID_TEXT, /* normal text color */
|
|
GX_COLOR_ID_TEXT, /* selected text color */
|
|
GX_COLOR_ID_TEXT, /* disabled text color */
|
|
GX_PIXELMAP_ID_PROGRESS_FILL /* fill pixelmap */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_1_properties =
|
|
{
|
|
GX_STRING_ID_STRING_29, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_progress_1_title_properties =
|
|
{
|
|
GX_STRING_ID_STRING_31, /* string id */
|
|
GX_FONT_ID_SYSTEM, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_progress_2_title_properties =
|
|
{
|
|
GX_STRING_ID_STRING_32, /* string id */
|
|
GX_FONT_ID_SYSTEM, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_progress_3_title_properties =
|
|
{
|
|
GX_STRING_ID_STRING_33, /* string id */
|
|
GX_FONT_ID_SYSTEM, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_progress_4_title_properties =
|
|
{
|
|
GX_STRING_ID_STRING_34, /* string id */
|
|
GX_FONT_ID_SYSTEM, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROGRESS_BAR_INFO sequence_window_progress_1_properties =
|
|
{
|
|
0, /* mimimun value */
|
|
100, /* maximum value */
|
|
100, /* current value */
|
|
GX_FONT_ID_SYSTEM, /* font_id */
|
|
GX_COLOR_ID_TEXT, /* normal text color */
|
|
GX_COLOR_ID_TEXT, /* selected text color */
|
|
GX_COLOR_ID_TEXT, /* disabled text color */
|
|
0 /* fill pixelmap */
|
|
};
|
|
GX_PROGRESS_BAR_INFO sequence_window_progress_2_properties =
|
|
{
|
|
0, /* mimimun value */
|
|
100, /* maximum value */
|
|
100, /* current value */
|
|
GX_FONT_ID_SYSTEM, /* font_id */
|
|
GX_COLOR_ID_TEXT, /* normal text color */
|
|
GX_COLOR_ID_TEXT, /* selected text color */
|
|
GX_COLOR_ID_TEXT, /* disabled text color */
|
|
0 /* fill pixelmap */
|
|
};
|
|
GX_PROGRESS_BAR_INFO sequence_window_progress_3_properties =
|
|
{
|
|
0, /* mimimun value */
|
|
100, /* maximum value */
|
|
100, /* current value */
|
|
GX_FONT_ID_SYSTEM, /* font_id */
|
|
GX_COLOR_ID_TEXT, /* normal text color */
|
|
GX_COLOR_ID_TEXT, /* selected text color */
|
|
GX_COLOR_ID_TEXT, /* disabled text color */
|
|
0 /* fill pixelmap */
|
|
};
|
|
GX_PROGRESS_BAR_INFO sequence_window_progress_4_properties =
|
|
{
|
|
0, /* mimimun value */
|
|
100, /* maximum value */
|
|
100, /* current value */
|
|
GX_FONT_ID_SYSTEM, /* font_id */
|
|
GX_COLOR_ID_TEXT, /* normal text color */
|
|
GX_COLOR_ID_TEXT, /* selected text color */
|
|
GX_COLOR_ID_TEXT, /* disabled text color */
|
|
0 /* fill pixelmap */
|
|
};
|
|
GX_ICON_PROPERTIES sequence_window_complete_icon_1_properties =
|
|
{
|
|
GX_PIXELMAP_ID_LEFT_SIDE_CHECK_MARK, /* normal pixelmap id */
|
|
0 /* selected pixelmap id */
|
|
};
|
|
GX_ICON_PROPERTIES sequence_window_complete_icon_2_properties =
|
|
{
|
|
GX_PIXELMAP_ID_LEFT_SIDE_CHECK_MARK, /* normal pixelmap id */
|
|
0 /* selected pixelmap id */
|
|
};
|
|
GX_ICON_PROPERTIES sequence_window_complete_icon_3_properties =
|
|
{
|
|
GX_PIXELMAP_ID_LEFT_SIDE_CHECK_MARK, /* normal pixelmap id */
|
|
0 /* selected pixelmap id */
|
|
};
|
|
GX_ICON_PROPERTIES sequence_window_complete_icon_4_properties =
|
|
{
|
|
GX_PIXELMAP_ID_LEFT_SIDE_CHECK_MARK, /* normal pixelmap id */
|
|
0 /* selected pixelmap id */
|
|
};
|
|
GX_WINDOW_PROPERTIES sequence_window_window_4_properties =
|
|
{
|
|
GX_PIXELMAP_ID_OUTLINED_BUTTON_HOLDER_SHORT /* wallpaper pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_5_properties =
|
|
{
|
|
GX_STRING_ID_STRING_38, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_6_properties =
|
|
{
|
|
GX_STRING_ID_STRING_35, /* string id */
|
|
GX_FONT_ID_SYSTEM, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_7_properties =
|
|
{
|
|
GX_STRING_ID_STRING_36, /* string id */
|
|
GX_FONT_ID_SYSTEM, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_8_properties =
|
|
{
|
|
GX_STRING_ID_STRING_37, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_10_1_properties =
|
|
{
|
|
GX_STRING_ID_STRING_37, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_11_5_properties =
|
|
{
|
|
GX_STRING_ID_STRING_12, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_LIGHT_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_12_1_properties =
|
|
{
|
|
GX_STRING_ID_STRING_42, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_RADIAL_PROGRESS_BAR_INFO sequence_window_radial_progress_speed_properties =
|
|
{
|
|
591, /* xcenter */
|
|
146, /* ycenter */
|
|
22, /* radius */
|
|
-220, /* current val */
|
|
90, /* anchor val */
|
|
GX_FONT_ID_SMALL, /* font_id */
|
|
GX_COLOR_ID_WHITE, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_WHITE, /* disabled text color */
|
|
4, /* normal brush width */
|
|
4, /* selected brush width */
|
|
GX_COLOR_ID_PROGRESS_BG, /* normal brush color */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* selected brush color */
|
|
};
|
|
GX_NUMERIC_PROMPT_PROPERTIES sequence_window_prompt_SX_properties =
|
|
{
|
|
0, /* string id */
|
|
GX_FONT_ID_PROMPT, /* font id */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* disabled text color */
|
|
mode_value_format, /* format function */
|
|
0 /* numeric prompt value */
|
|
};
|
|
GX_NUMERIC_PROMPT_PROPERTIES sequence_window_prompt_SY_properties =
|
|
{
|
|
0, /* string id */
|
|
GX_FONT_ID_PROMPT, /* font id */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* disabled text color */
|
|
mode_value_format, /* format function */
|
|
0 /* numeric prompt value */
|
|
};
|
|
GX_WINDOW_PROPERTIES sequence_window_window_5_properties =
|
|
{
|
|
GX_PIXELMAP_ID_OUTLINED_BUTTON_HOLDER_SHORT /* wallpaper pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_13_2_properties =
|
|
{
|
|
GX_STRING_ID_STRING_27, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_14_2_properties =
|
|
{
|
|
GX_STRING_ID_STRING_44, /* string id */
|
|
GX_FONT_ID_SYSTEM, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_15_2_properties =
|
|
{
|
|
GX_STRING_ID_STRING_45, /* string id */
|
|
GX_FONT_ID_SYSTEM, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_RADIAL_PROGRESS_BAR_INFO sequence_window_radial_progress_rotation_properties =
|
|
{
|
|
592, /* xcenter */
|
|
217, /* ycenter */
|
|
22, /* radius */
|
|
-250, /* current val */
|
|
90, /* anchor val */
|
|
GX_FONT_ID_SMALL, /* font_id */
|
|
GX_COLOR_ID_WHITE, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_WHITE, /* disabled text color */
|
|
4, /* normal brush width */
|
|
4, /* selected brush width */
|
|
GX_COLOR_ID_PROGRESS_BG, /* normal brush color */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* selected brush color */
|
|
};
|
|
GX_NUMERIC_PROMPT_PROPERTIES sequence_window_prompt_RY_properties =
|
|
{
|
|
0, /* string id */
|
|
GX_FONT_ID_PROMPT, /* font id */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* disabled text color */
|
|
mode_value_format, /* format function */
|
|
0 /* numeric prompt value */
|
|
};
|
|
GX_NUMERIC_PROMPT_PROPERTIES sequence_window_prompt_RX_properties =
|
|
{
|
|
0, /* string id */
|
|
GX_FONT_ID_PROMPT, /* font id */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* disabled text color */
|
|
mode_value_format, /* format function */
|
|
0 /* numeric prompt value */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_11_2_properties =
|
|
{
|
|
GX_STRING_ID_STRING_47, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_11_properties =
|
|
{
|
|
GX_STRING_ID_STRING_47, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_WINDOW_PROPERTIES sequence_window_window_6_properties =
|
|
{
|
|
GX_PIXELMAP_ID_OUTLINED_BUTTON_HOLDER_SHORT /* wallpaper pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_13_properties =
|
|
{
|
|
GX_STRING_ID_STRING_49, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_14_properties =
|
|
{
|
|
GX_STRING_ID_STRING_50, /* string id */
|
|
GX_FONT_ID_SYSTEM, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_15_properties =
|
|
{
|
|
GX_STRING_ID_STRING_52, /* string id */
|
|
GX_FONT_ID_SYSTEM, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_NUMERIC_PROMPT_PROPERTIES sequence_window_prompt_DN_properties =
|
|
{
|
|
0, /* string id */
|
|
GX_FONT_ID_PROMPT, /* font id */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* disabled text color */
|
|
mode_value_format, /* format function */
|
|
0 /* numeric prompt value */
|
|
};
|
|
GX_NUMERIC_PROMPT_PROPERTIES sequence_window_prompt_UP_properties =
|
|
{
|
|
0, /* string id */
|
|
GX_FONT_ID_PROMPT, /* font id */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* disabled text color */
|
|
mode_value_format, /* format function */
|
|
0 /* numeric prompt value */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_11_1_properties =
|
|
{
|
|
GX_STRING_ID_STRING_56, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_11_3_properties =
|
|
{
|
|
GX_STRING_ID_STRING_56, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_RADIAL_PROGRESS_BAR_INFO sequence_window_radial_progress_force_properties =
|
|
{
|
|
592, /* xcenter */
|
|
286, /* ycenter */
|
|
22, /* radius */
|
|
-250, /* current val */
|
|
90, /* anchor val */
|
|
GX_FONT_ID_SMALL, /* font_id */
|
|
GX_COLOR_ID_WHITE, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_WHITE, /* disabled text color */
|
|
4, /* normal brush width */
|
|
4, /* selected brush width */
|
|
GX_COLOR_ID_PROGRESS_BG, /* normal brush color */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* selected brush color */
|
|
};
|
|
GX_ICON_PROPERTIES sequence_window_icon_12_1_properties =
|
|
{
|
|
GX_PIXELMAP_ID_ICON_PIN, /* normal pixelmap id */
|
|
0 /* selected pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_16_4_properties =
|
|
{
|
|
GX_STRING_ID_STRING_60, /* string id */
|
|
GX_FONT_ID_SYSTEM, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_16_3_properties =
|
|
{
|
|
GX_STRING_ID_STRING_60, /* string id */
|
|
GX_FONT_ID_SYSTEM, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_NUMERIC_PROMPT_PROPERTIES sequence_window_prompt_X_properties =
|
|
{
|
|
0, /* string id */
|
|
GX_FONT_ID_PROMPT, /* font id */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* disabled text color */
|
|
position_value_format, /* format function */
|
|
0 /* numeric prompt value */
|
|
};
|
|
GX_NUMERIC_PROMPT_PROPERTIES sequence_window_prompt_Y_properties =
|
|
{
|
|
0, /* string id */
|
|
GX_FONT_ID_PROMPT, /* font id */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* disabled text color */
|
|
position_value_format, /* format function */
|
|
0 /* numeric prompt value */
|
|
};
|
|
GX_NUMERIC_PROMPT_PROPERTIES sequence_window_prompt_Z_properties =
|
|
{
|
|
0, /* string id */
|
|
GX_FONT_ID_PROMPT, /* font id */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* disabled text color */
|
|
mode_value_format, /* format function */
|
|
0 /* numeric prompt value */
|
|
};
|
|
GX_NUMERIC_PROMPT_PROPERTIES sequence_window_progress_1_value_properties =
|
|
{
|
|
0, /* string id */
|
|
GX_FONT_ID_PROMPT, /* font id */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* disabled text color */
|
|
progress_value_format, /* format function */
|
|
0 /* numeric prompt value */
|
|
};
|
|
GX_NUMERIC_PROMPT_PROPERTIES sequence_window_progress_2_value_properties =
|
|
{
|
|
0, /* string id */
|
|
GX_FONT_ID_PROMPT, /* font id */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* disabled text color */
|
|
progress_value_format, /* format function */
|
|
0 /* numeric prompt value */
|
|
};
|
|
GX_NUMERIC_PROMPT_PROPERTIES sequence_window_progress_3_value_properties =
|
|
{
|
|
0, /* string id */
|
|
GX_FONT_ID_PROMPT, /* font id */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* disabled text color */
|
|
progress_value_format, /* format function */
|
|
0 /* numeric prompt value */
|
|
};
|
|
GX_NUMERIC_PROMPT_PROPERTIES sequence_window_progress_4_value_properties =
|
|
{
|
|
0, /* string id */
|
|
GX_FONT_ID_PROMPT, /* font id */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_LIGHT_GRAY, /* disabled text color */
|
|
progress_value_format, /* format function */
|
|
0 /* numeric prompt value */
|
|
};
|
|
GX_ICON_PROPERTIES sequence_window_icon_13_1_properties =
|
|
{
|
|
GX_PIXELMAP_ID_ICON_TIMER, /* normal pixelmap id */
|
|
0 /* selected pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_16_5_properties =
|
|
{
|
|
GX_STRING_ID_STRING_62, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_16_6_properties =
|
|
{
|
|
GX_STRING_ID_STRING_19, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_NUMERIC_PROMPT_PROPERTIES sequence_window_timer_tick_properties =
|
|
{
|
|
0, /* string id */
|
|
GX_FONT_ID_PROMPT, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY, /* disabled text color */
|
|
timer_value_format, /* format function */
|
|
10 /* numeric prompt value */
|
|
};
|
|
GX_NUMERIC_PROMPT_PROPERTIES sequence_window_timer_minute_properties =
|
|
{
|
|
0, /* string id */
|
|
GX_FONT_ID_NORMAL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY, /* disabled text color */
|
|
timer_value_format, /* format function */
|
|
10 /* numeric prompt value */
|
|
};
|
|
GX_NUMERIC_PROMPT_PROPERTIES sequence_window_timer_second_properties =
|
|
{
|
|
0, /* string id */
|
|
GX_FONT_ID_NORMAL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY, /* disabled text color */
|
|
timer_value_format, /* format function */
|
|
10 /* numeric prompt value */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_16_7_properties =
|
|
{
|
|
GX_STRING_ID_STRING_63, /* string id */
|
|
GX_FONT_ID_NORMAL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_16_8_properties =
|
|
{
|
|
GX_STRING_ID_STRING_64, /* string id */
|
|
GX_FONT_ID_NORMAL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_16_9_properties =
|
|
{
|
|
GX_STRING_ID_STRING_57, /* string id */
|
|
GX_FONT_ID_SYSTEM, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_16_2_properties =
|
|
{
|
|
GX_STRING_ID_STRING_59, /* string id */
|
|
GX_FONT_ID_SYSTEM, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_16_1_properties =
|
|
{
|
|
GX_STRING_ID_STRING_58, /* string id */
|
|
GX_FONT_ID_SYSTEM, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_prompt_15_16_10_properties =
|
|
{
|
|
GX_STRING_ID_STRING_60, /* string id */
|
|
GX_FONT_ID_SYSTEM, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_ICON_PROPERTIES sequence_window_mode_icon_properties =
|
|
{
|
|
GX_PIXELMAP_ID_CIRCLE_ICON_PALLET, /* normal pixelmap id */
|
|
0 /* selected pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES sequence_window_mode_title_properties =
|
|
{
|
|
GX_STRING_ID_STRING_25, /* string id */
|
|
GX_FONT_ID_MIDDLE, /* font id */
|
|
GX_COLOR_ID_GREEN, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_GREEN /* disabled text color */
|
|
};
|
|
GX_NUMERIC_PROMPT_PROPERTIES sequence_window_bottom_progress_value_properties =
|
|
{
|
|
0, /* string id */
|
|
GX_FONT_ID_MIDDLE, /* font id */
|
|
GX_COLOR_ID_WHITE, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_WHITE, /* disabled text color */
|
|
progress_value_format, /* format function */
|
|
0 /* numeric prompt value */
|
|
};
|
|
GX_SPRITE_FRAME sequence_window_sprite_frame_list[21] =
|
|
{
|
|
{
|
|
GX_PIXELMAP_ID_S1, /* pixelmap id */
|
|
0, /* x offset */
|
|
0, /* y offset */
|
|
5, /* frame delay */
|
|
GX_SPRITE_BACKGROUND_NO_ACTION, /* background operation */
|
|
255 /* alpha value */
|
|
},
|
|
{
|
|
GX_PIXELMAP_ID_S2, /* pixelmap id */
|
|
0, /* x offset */
|
|
0, /* y offset */
|
|
5, /* frame delay */
|
|
GX_SPRITE_BACKGROUND_NO_ACTION, /* background operation */
|
|
255 /* alpha value */
|
|
},
|
|
{
|
|
GX_PIXELMAP_ID_S3, /* pixelmap id */
|
|
0, /* x offset */
|
|
0, /* y offset */
|
|
5, /* frame delay */
|
|
GX_SPRITE_BACKGROUND_NO_ACTION, /* background operation */
|
|
255 /* alpha value */
|
|
},
|
|
{
|
|
GX_PIXELMAP_ID_S4, /* pixelmap id */
|
|
0, /* x offset */
|
|
0, /* y offset */
|
|
5, /* frame delay */
|
|
GX_SPRITE_BACKGROUND_NO_ACTION, /* background operation */
|
|
255 /* alpha value */
|
|
},
|
|
{
|
|
GX_PIXELMAP_ID_S5, /* pixelmap id */
|
|
0, /* x offset */
|
|
0, /* y offset */
|
|
5, /* frame delay */
|
|
GX_SPRITE_BACKGROUND_NO_ACTION, /* background operation */
|
|
255 /* alpha value */
|
|
},
|
|
{
|
|
GX_PIXELMAP_ID_S6, /* pixelmap id */
|
|
0, /* x offset */
|
|
0, /* y offset */
|
|
5, /* frame delay */
|
|
GX_SPRITE_BACKGROUND_NO_ACTION, /* background operation */
|
|
255 /* alpha value */
|
|
},
|
|
{
|
|
GX_PIXELMAP_ID_S7, /* pixelmap id */
|
|
0, /* x offset */
|
|
0, /* y offset */
|
|
5, /* frame delay */
|
|
GX_SPRITE_BACKGROUND_NO_ACTION, /* background operation */
|
|
255 /* alpha value */
|
|
},
|
|
{
|
|
GX_PIXELMAP_ID_S8, /* pixelmap id */
|
|
0, /* x offset */
|
|
0, /* y offset */
|
|
2, /* frame delay */
|
|
GX_SPRITE_BACKGROUND_NO_ACTION, /* background operation */
|
|
255 /* alpha value */
|
|
},
|
|
{
|
|
GX_PIXELMAP_ID_S9, /* pixelmap id */
|
|
0, /* x offset */
|
|
0, /* y offset */
|
|
2, /* frame delay */
|
|
GX_SPRITE_BACKGROUND_NO_ACTION, /* background operation */
|
|
255 /* alpha value */
|
|
},
|
|
{
|
|
GX_PIXELMAP_ID_S10, /* pixelmap id */
|
|
0, /* x offset */
|
|
0, /* y offset */
|
|
5, /* frame delay */
|
|
GX_SPRITE_BACKGROUND_NO_ACTION, /* background operation */
|
|
255 /* alpha value */
|
|
},
|
|
{
|
|
GX_PIXELMAP_ID_S10, /* pixelmap id */
|
|
0, /* x offset */
|
|
0, /* y offset */
|
|
5, /* frame delay */
|
|
GX_SPRITE_BACKGROUND_NO_ACTION, /* background operation */
|
|
255 /* alpha value */
|
|
},
|
|
{
|
|
GX_PIXELMAP_ID_S12, /* pixelmap id */
|
|
0, /* x offset */
|
|
0, /* y offset */
|
|
5, /* frame delay */
|
|
GX_SPRITE_BACKGROUND_NO_ACTION, /* background operation */
|
|
255 /* alpha value */
|
|
},
|
|
{
|
|
GX_PIXELMAP_ID_S13, /* pixelmap id */
|
|
0, /* x offset */
|
|
0, /* y offset */
|
|
5, /* frame delay */
|
|
GX_SPRITE_BACKGROUND_NO_ACTION, /* background operation */
|
|
255 /* alpha value */
|
|
},
|
|
{
|
|
GX_PIXELMAP_ID_S14, /* pixelmap id */
|
|
0, /* x offset */
|
|
0, /* y offset */
|
|
5, /* frame delay */
|
|
GX_SPRITE_BACKGROUND_NO_ACTION, /* background operation */
|
|
255 /* alpha value */
|
|
},
|
|
{
|
|
GX_PIXELMAP_ID_S15, /* pixelmap id */
|
|
0, /* x offset */
|
|
0, /* y offset */
|
|
5, /* frame delay */
|
|
GX_SPRITE_BACKGROUND_NO_ACTION, /* background operation */
|
|
255 /* alpha value */
|
|
},
|
|
{
|
|
GX_PIXELMAP_ID_S16, /* pixelmap id */
|
|
0, /* x offset */
|
|
0, /* y offset */
|
|
5, /* frame delay */
|
|
GX_SPRITE_BACKGROUND_NO_ACTION, /* background operation */
|
|
255 /* alpha value */
|
|
},
|
|
{
|
|
GX_PIXELMAP_ID_S17, /* pixelmap id */
|
|
0, /* x offset */
|
|
0, /* y offset */
|
|
5, /* frame delay */
|
|
GX_SPRITE_BACKGROUND_NO_ACTION, /* background operation */
|
|
255 /* alpha value */
|
|
},
|
|
{
|
|
GX_PIXELMAP_ID_S18, /* pixelmap id */
|
|
0, /* x offset */
|
|
0, /* y offset */
|
|
5, /* frame delay */
|
|
GX_SPRITE_BACKGROUND_NO_ACTION, /* background operation */
|
|
255 /* alpha value */
|
|
},
|
|
{
|
|
GX_PIXELMAP_ID_S19, /* pixelmap id */
|
|
0, /* x offset */
|
|
0, /* y offset */
|
|
5, /* frame delay */
|
|
GX_SPRITE_BACKGROUND_NO_ACTION, /* background operation */
|
|
255 /* alpha value */
|
|
},
|
|
{
|
|
GX_PIXELMAP_ID_S20, /* pixelmap id */
|
|
0, /* x offset */
|
|
0, /* y offset */
|
|
5, /* frame delay */
|
|
GX_SPRITE_BACKGROUND_NO_ACTION, /* background operation */
|
|
255 /* alpha value */
|
|
},
|
|
{
|
|
GX_PIXELMAP_ID_S21, /* pixelmap id */
|
|
0, /* x offset */
|
|
0, /* y offset */
|
|
5, /* frame delay */
|
|
GX_SPRITE_BACKGROUND_NO_ACTION, /* background operation */
|
|
255 /* alpha value */
|
|
}
|
|
};
|
|
|
|
GX_SPRITE_PROPERTIES sequence_window_sprite_properties =
|
|
{
|
|
sequence_window_sprite_frame_list, /* address of frame list */
|
|
21, /* frame count */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_bottom_progress_define =
|
|
{
|
|
"bottom_progress",
|
|
GX_TYPE_PROGRESS_BAR, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_PROGRESS_PERCENT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROGRESS_BAR), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_progress_bar_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{24, 355, 615, 386}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_bottom_progress), /* control block */
|
|
(void *) &sequence_window_bottom_progress_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_SY_define =
|
|
{
|
|
"prompt_SY",
|
|
GX_TYPE_NUMERIC_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_NUMERIC_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_numeric_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{504, 155, 534, 172}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_SY), /* control block */
|
|
(void *) &sequence_window_prompt_SY_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_SX_define =
|
|
{
|
|
"prompt_SX",
|
|
GX_TYPE_NUMERIC_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_NUMERIC_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_numeric_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{504, 139, 534, 156}, /* widget size */
|
|
&sequence_window_prompt_SY_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_SX), /* control block */
|
|
(void *) &sequence_window_prompt_SX_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_radial_progress_speed_define =
|
|
{
|
|
"radial_progress_speed",
|
|
GX_TYPE_RADIAL_PROGRESS_BAR, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_PROGRESS_PERCENT|GX_STYLE_PROGRESS_TEXT_DRAW|GX_STYLE_RADIAL_PROGRESS_ALIAS|GX_STYLE_RADIAL_PROGRESS_ROUND, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_RADIAL_PROGRESS_BAR), /* control block size */
|
|
GX_COLOR_ID_RADIAL_PROGRESS_BAR_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_RADIAL_PROGRESS_BAR_FILL, /* disabled color id */
|
|
gx_studio_radial_progress_bar_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{567, 122, 615, 170}, /* widget size */
|
|
&sequence_window_prompt_SX_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_radial_progress_speed), /* control block */
|
|
(void *) &sequence_window_radial_progress_speed_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_12_1_define =
|
|
{
|
|
"prompt_15_12_1",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{538, 123, 542, 135}, /* widget size */
|
|
&sequence_window_radial_progress_speed_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_12_1), /* control block */
|
|
(void *) &sequence_window_prompt_15_12_1_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_11_5_define =
|
|
{
|
|
"prompt_15_11_5",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_LEFT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{514, 123, 537, 135}, /* widget size */
|
|
&sequence_window_prompt_15_12_1_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_11_5), /* control block */
|
|
(void *) &sequence_window_prompt_15_11_5_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_10_1_define =
|
|
{
|
|
"prompt_15_10_1",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{535, 158, 556, 170}, /* widget size */
|
|
&sequence_window_prompt_15_11_5_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_10_1), /* control block */
|
|
(void *) &sequence_window_prompt_15_10_1_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_8_define =
|
|
{
|
|
"prompt_15_8",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{535, 142, 556, 154}, /* widget size */
|
|
&sequence_window_prompt_15_10_1_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_8), /* control block */
|
|
(void *) &sequence_window_prompt_15_8_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_7_define =
|
|
{
|
|
"prompt_15_7",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{466, 156, 484, 173}, /* widget size */
|
|
&sequence_window_prompt_15_8_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_7), /* control block */
|
|
(void *) &sequence_window_prompt_15_7_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_6_define =
|
|
{
|
|
"prompt_15_6",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{466, 140, 484, 157}, /* widget size */
|
|
&sequence_window_prompt_15_7_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_6), /* control block */
|
|
(void *) &sequence_window_prompt_15_6_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_5_define =
|
|
{
|
|
"prompt_15_5",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{467, 123, 513, 135}, /* widget size */
|
|
&sequence_window_prompt_15_6_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_5), /* control block */
|
|
(void *) &sequence_window_prompt_15_5_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_11_define =
|
|
{
|
|
"prompt_15_11",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{551, 226, 557, 238}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_11), /* control block */
|
|
(void *) &sequence_window_prompt_15_11_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_11_2_define =
|
|
{
|
|
"prompt_15_11_2",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{551, 209, 557, 221}, /* widget size */
|
|
&sequence_window_prompt_15_11_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_11_2), /* control block */
|
|
(void *) &sequence_window_prompt_15_11_2_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_RX_define =
|
|
{
|
|
"prompt_RX",
|
|
GX_TYPE_NUMERIC_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_NUMERIC_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_numeric_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{501, 211, 550, 228}, /* widget size */
|
|
&sequence_window_prompt_15_11_2_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_RX), /* control block */
|
|
(void *) &sequence_window_prompt_RX_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_RY_define =
|
|
{
|
|
"prompt_RY",
|
|
GX_TYPE_NUMERIC_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_NUMERIC_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_numeric_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{501, 228, 550, 245}, /* widget size */
|
|
&sequence_window_prompt_RX_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_RY), /* control block */
|
|
(void *) &sequence_window_prompt_RY_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_radial_progress_rotation_define =
|
|
{
|
|
"radial_progress_rotation",
|
|
GX_TYPE_RADIAL_PROGRESS_BAR, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_PROGRESS_PERCENT|GX_STYLE_PROGRESS_TEXT_DRAW|GX_STYLE_RADIAL_PROGRESS_ALIAS|GX_STYLE_RADIAL_PROGRESS_ROUND, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_RADIAL_PROGRESS_BAR), /* control block size */
|
|
GX_COLOR_ID_RADIAL_PROGRESS_BAR_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_RADIAL_PROGRESS_BAR_FILL, /* disabled color id */
|
|
gx_studio_radial_progress_bar_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{568, 193, 616, 241}, /* widget size */
|
|
&sequence_window_prompt_RY_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_radial_progress_rotation), /* control block */
|
|
(void *) &sequence_window_radial_progress_rotation_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_15_2_define =
|
|
{
|
|
"prompt_15_15_2",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{466, 227, 484, 244}, /* widget size */
|
|
&sequence_window_radial_progress_rotation_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_15_2), /* control block */
|
|
(void *) &sequence_window_prompt_15_15_2_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_14_2_define =
|
|
{
|
|
"prompt_15_14_2",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{466, 211, 484, 228}, /* widget size */
|
|
&sequence_window_prompt_15_15_2_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_14_2), /* control block */
|
|
(void *) &sequence_window_prompt_15_14_2_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_13_2_define =
|
|
{
|
|
"prompt_15_13_2",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{467, 194, 554, 206}, /* widget size */
|
|
&sequence_window_prompt_15_14_2_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_13_2), /* control block */
|
|
(void *) &sequence_window_prompt_15_13_2_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_radial_progress_force_define =
|
|
{
|
|
"radial_progress_force",
|
|
GX_TYPE_RADIAL_PROGRESS_BAR, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_PROGRESS_PERCENT|GX_STYLE_PROGRESS_TEXT_DRAW|GX_STYLE_RADIAL_PROGRESS_ALIAS|GX_STYLE_RADIAL_PROGRESS_ROUND, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_RADIAL_PROGRESS_BAR), /* control block size */
|
|
GX_COLOR_ID_RADIAL_PROGRESS_BAR_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_RADIAL_PROGRESS_BAR_FILL, /* disabled color id */
|
|
gx_studio_radial_progress_bar_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{568, 262, 616, 310}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_radial_progress_force), /* control block */
|
|
(void *) &sequence_window_radial_progress_force_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_11_3_define =
|
|
{
|
|
"prompt_15_11_3",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{533, 298, 558, 310}, /* widget size */
|
|
&sequence_window_radial_progress_force_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_11_3), /* control block */
|
|
(void *) &sequence_window_prompt_15_11_3_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_11_1_define =
|
|
{
|
|
"prompt_15_11_1",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{533, 282, 558, 294}, /* widget size */
|
|
&sequence_window_prompt_15_11_3_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_11_1), /* control block */
|
|
(void *) &sequence_window_prompt_15_11_1_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_UP_define =
|
|
{
|
|
"prompt_UP",
|
|
GX_TYPE_NUMERIC_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_NUMERIC_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_numeric_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{492, 280, 531, 297}, /* widget size */
|
|
&sequence_window_prompt_15_11_1_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_UP), /* control block */
|
|
(void *) &sequence_window_prompt_UP_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_DN_define =
|
|
{
|
|
"prompt_DN",
|
|
GX_TYPE_NUMERIC_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_NUMERIC_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_numeric_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{489, 296, 531, 313}, /* widget size */
|
|
&sequence_window_prompt_UP_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_DN), /* control block */
|
|
(void *) &sequence_window_prompt_DN_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_15_define =
|
|
{
|
|
"prompt_15_15",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{466, 297, 488, 314}, /* widget size */
|
|
&sequence_window_prompt_DN_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_15), /* control block */
|
|
(void *) &sequence_window_prompt_15_15_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_14_define =
|
|
{
|
|
"prompt_15_14",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{466, 280, 487, 297}, /* widget size */
|
|
&sequence_window_prompt_15_15_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_14), /* control block */
|
|
(void *) &sequence_window_prompt_15_14_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_13_define =
|
|
{
|
|
"prompt_15_13",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{467, 263, 499, 275}, /* widget size */
|
|
&sequence_window_prompt_15_14_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_13), /* control block */
|
|
(void *) &sequence_window_prompt_15_13_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_sprite_define =
|
|
{
|
|
"sprite",
|
|
GX_TYPE_SPRITE, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_SPRITE_AUTO|GX_STYLE_SPRITE_LOOP, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_SPRITE), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_sprite_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{213, 123, 428, 314}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_sprite), /* control block */
|
|
(void *) &sequence_window_sprite_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_bottom_progress_value_define =
|
|
{
|
|
"bottom_progress_value",
|
|
GX_TYPE_NUMERIC_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED|GX_STYLE_TEXT_RIGHT, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_NUMERIC_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_numeric_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{548, 360, 615, 384}, /* widget size */
|
|
&sequence_window_sprite_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_bottom_progress_value), /* control block */
|
|
(void *) &sequence_window_bottom_progress_value_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_mode_title_define =
|
|
{
|
|
"mode_title",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_LEFT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
(VOID (*)(GX_WIDGET *)) mode_title_draw, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{19, 111, 143, 135}, /* widget size */
|
|
&sequence_window_bottom_progress_value_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_mode_title), /* control block */
|
|
(void *) &sequence_window_mode_title_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_mode_icon_define =
|
|
{
|
|
"mode_icon",
|
|
GX_TYPE_ICON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_ICON), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_icon_create, /* create function */
|
|
(VOID (*)(GX_WIDGET *)) mode_icon_draw, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{148, 111, 175, 138}, /* widget size */
|
|
&sequence_window_mode_title_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_mode_icon), /* control block */
|
|
(void *) &sequence_window_mode_icon_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_16_10_define =
|
|
{
|
|
"prompt_15_16_10",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{347, 81, 360, 98}, /* widget size */
|
|
&sequence_window_mode_icon_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_16_10), /* control block */
|
|
(void *) &sequence_window_prompt_15_16_10_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_16_1_define =
|
|
{
|
|
"prompt_15_16_1",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{302, 81, 310, 98}, /* widget size */
|
|
&sequence_window_prompt_15_16_10_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_16_1), /* control block */
|
|
(void *) &sequence_window_prompt_15_16_1_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_16_2_define =
|
|
{
|
|
"prompt_15_16_2",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{371, 81, 380, 98}, /* widget size */
|
|
&sequence_window_prompt_15_16_1_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_16_2), /* control block */
|
|
(void *) &sequence_window_prompt_15_16_2_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_16_9_define =
|
|
{
|
|
"prompt_15_16_9",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{233, 81, 241, 98}, /* widget size */
|
|
&sequence_window_prompt_15_16_2_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_16_9), /* control block */
|
|
(void *) &sequence_window_prompt_15_16_9_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_16_8_define =
|
|
{
|
|
"prompt_15_16_8",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{596, 81, 601, 98}, /* widget size */
|
|
&sequence_window_prompt_15_16_9_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_16_8), /* control block */
|
|
(void *) &sequence_window_prompt_15_16_8_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_16_7_define =
|
|
{
|
|
"prompt_15_16_7",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{570, 81, 575, 98}, /* widget size */
|
|
&sequence_window_prompt_15_16_8_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_16_7), /* control block */
|
|
(void *) &sequence_window_prompt_15_16_7_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_timer_second_define =
|
|
{
|
|
"timer_second",
|
|
GX_TYPE_NUMERIC_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_NUMERIC_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_numeric_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{576, 82, 597, 99}, /* widget size */
|
|
&sequence_window_prompt_15_16_7_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_timer_second), /* control block */
|
|
(void *) &sequence_window_timer_second_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_timer_minute_define =
|
|
{
|
|
"timer_minute",
|
|
GX_TYPE_NUMERIC_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_NUMERIC_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_numeric_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{550, 82, 571, 99}, /* widget size */
|
|
&sequence_window_timer_second_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_timer_minute), /* control block */
|
|
(void *) &sequence_window_timer_minute_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_timer_tick_define =
|
|
{
|
|
"timer_tick",
|
|
GX_TYPE_NUMERIC_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_NUMERIC_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_numeric_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{602, 82, 619, 99}, /* widget size */
|
|
&sequence_window_timer_minute_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_timer_tick), /* control block */
|
|
(void *) &sequence_window_timer_tick_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_16_6_define =
|
|
{
|
|
"prompt_15_16_6",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{481, 89, 514, 101}, /* widget size */
|
|
&sequence_window_timer_tick_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_16_6), /* control block */
|
|
(void *) &sequence_window_prompt_15_16_6_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_16_5_define =
|
|
{
|
|
"prompt_15_16_5",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{481, 76, 540, 88}, /* widget size */
|
|
&sequence_window_prompt_15_16_6_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_16_5), /* control block */
|
|
(void *) &sequence_window_prompt_15_16_5_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_icon_13_1_define =
|
|
{
|
|
"icon_13_1",
|
|
GX_TYPE_ICON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_ICON), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_icon_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{461, 80, 475, 96}, /* widget size */
|
|
&sequence_window_prompt_15_16_5_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_icon_13_1), /* control block */
|
|
(void *) &sequence_window_icon_13_1_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_progress_4_value_define =
|
|
{
|
|
"progress_4_value",
|
|
GX_TYPE_NUMERIC_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_NUMERIC_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_numeric_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{128, 292, 172, 309}, /* widget size */
|
|
&sequence_window_icon_13_1_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_progress_4_value), /* control block */
|
|
(void *) &sequence_window_progress_4_value_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_progress_3_value_define =
|
|
{
|
|
"progress_3_value",
|
|
GX_TYPE_NUMERIC_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_NUMERIC_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_numeric_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{128, 252, 172, 269}, /* widget size */
|
|
&sequence_window_progress_4_value_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_progress_3_value), /* control block */
|
|
(void *) &sequence_window_progress_3_value_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_progress_2_value_define =
|
|
{
|
|
"progress_2_value",
|
|
GX_TYPE_NUMERIC_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_NUMERIC_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_numeric_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{128, 206, 172, 223}, /* widget size */
|
|
&sequence_window_progress_3_value_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_progress_2_value), /* control block */
|
|
(void *) &sequence_window_progress_2_value_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_progress_1_value_define =
|
|
{
|
|
"progress_1_value",
|
|
GX_TYPE_NUMERIC_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_NUMERIC_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_numeric_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{128, 165, 172, 182}, /* widget size */
|
|
&sequence_window_progress_2_value_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_progress_1_value), /* control block */
|
|
(void *) &sequence_window_progress_1_value_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_Z_define =
|
|
{
|
|
"prompt_Z",
|
|
GX_TYPE_NUMERIC_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_NUMERIC_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_numeric_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{384, 81, 414, 98}, /* widget size */
|
|
&sequence_window_progress_1_value_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_Z), /* control block */
|
|
(void *) &sequence_window_prompt_Z_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_Y_define =
|
|
{
|
|
"prompt_Y",
|
|
GX_TYPE_NUMERIC_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_NUMERIC_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_numeric_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{315, 81, 345, 98}, /* widget size */
|
|
&sequence_window_prompt_Z_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_Y), /* control block */
|
|
(void *) &sequence_window_prompt_Y_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_X_define =
|
|
{
|
|
"prompt_X",
|
|
GX_TYPE_NUMERIC_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_NUMERIC_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_numeric_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{246, 81, 276, 98}, /* widget size */
|
|
&sequence_window_prompt_Y_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_X), /* control block */
|
|
(void *) &sequence_window_prompt_X_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_16_3_define =
|
|
{
|
|
"prompt_15_16_3",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{416, 81, 429, 98}, /* widget size */
|
|
&sequence_window_prompt_X_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_16_3), /* control block */
|
|
(void *) &sequence_window_prompt_15_16_3_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_16_4_define =
|
|
{
|
|
"prompt_15_16_4",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{278, 81, 291, 98}, /* widget size */
|
|
&sequence_window_prompt_15_16_3_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_16_4), /* control block */
|
|
(void *) &sequence_window_prompt_15_16_4_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_icon_12_1_define =
|
|
{
|
|
"icon_12_1",
|
|
GX_TYPE_ICON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_ICON), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_icon_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{213, 79, 222, 96}, /* widget size */
|
|
&sequence_window_prompt_15_16_4_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_icon_12_1), /* control block */
|
|
(void *) &sequence_window_icon_12_1_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_window_6_define =
|
|
{
|
|
"window_6",
|
|
GX_TYPE_WINDOW, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_WINDOW), /* control block size */
|
|
GX_COLOR_ID_WINDOW_FILL, /* normal color id */
|
|
GX_COLOR_ID_WINDOW_FILL, /* selected color id */
|
|
GX_COLOR_ID_WINDOW_FILL, /* disabled color id */
|
|
gx_studio_window_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{460, 257, 620, 316}, /* widget size */
|
|
&sequence_window_icon_12_1_define, /* next widget definition */
|
|
&sequence_window_prompt_15_13_define, /* child widget definition */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_window_6), /* control block */
|
|
(void *) &sequence_window_window_6_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_window_5_define =
|
|
{
|
|
"window_5",
|
|
GX_TYPE_WINDOW, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_WINDOW), /* control block size */
|
|
GX_COLOR_ID_WINDOW_FILL, /* normal color id */
|
|
GX_COLOR_ID_WINDOW_FILL, /* selected color id */
|
|
GX_COLOR_ID_WINDOW_FILL, /* disabled color id */
|
|
gx_studio_window_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{460, 188, 620, 247}, /* widget size */
|
|
&sequence_window_window_6_define, /* next widget definition */
|
|
&sequence_window_prompt_15_13_2_define, /* child widget definition */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_window_5), /* control block */
|
|
(void *) &sequence_window_window_5_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_window_4_define =
|
|
{
|
|
"window_4",
|
|
GX_TYPE_WINDOW, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_WINDOW), /* control block size */
|
|
GX_COLOR_ID_WINDOW_FILL, /* normal color id */
|
|
GX_COLOR_ID_WINDOW_FILL, /* selected color id */
|
|
GX_COLOR_ID_WINDOW_FILL, /* disabled color id */
|
|
gx_studio_window_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{460, 117, 620, 176}, /* widget size */
|
|
&sequence_window_window_5_define, /* next widget definition */
|
|
&sequence_window_prompt_15_5_define, /* child widget definition */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_window_4), /* control block */
|
|
(void *) &sequence_window_window_4_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_complete_icon_4_define =
|
|
{
|
|
"complete_icon_4",
|
|
GX_TYPE_ICON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_ICON), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_icon_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{155, 294, 168, 306}, /* widget size */
|
|
&sequence_window_window_4_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_complete_icon_4), /* control block */
|
|
(void *) &sequence_window_complete_icon_4_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_complete_icon_3_define =
|
|
{
|
|
"complete_icon_3",
|
|
GX_TYPE_ICON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_ICON), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_icon_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{155, 251, 168, 263}, /* widget size */
|
|
&sequence_window_complete_icon_4_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_complete_icon_3), /* control block */
|
|
(void *) &sequence_window_complete_icon_3_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_complete_icon_2_define =
|
|
{
|
|
"complete_icon_2",
|
|
GX_TYPE_ICON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_ICON), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_icon_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{155, 210, 168, 222}, /* widget size */
|
|
&sequence_window_complete_icon_3_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_complete_icon_2), /* control block */
|
|
(void *) &sequence_window_complete_icon_2_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_complete_icon_1_define =
|
|
{
|
|
"complete_icon_1",
|
|
GX_TYPE_ICON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_ICON), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_icon_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{155, 167, 168, 179}, /* widget size */
|
|
&sequence_window_complete_icon_2_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_complete_icon_1), /* control block */
|
|
(void *) &sequence_window_complete_icon_1_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_progress_4_define =
|
|
{
|
|
"progress_4",
|
|
GX_TYPE_PROGRESS_BAR, /* widget type */
|
|
ID_UNIT_SET, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_PROGRESS_PERCENT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROGRESS_BAR), /* control block size */
|
|
GX_COLOR_ID_DARK_GRAY, /* normal color id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* selected color id */
|
|
GX_COLOR_ID_DARK_GRAY, /* disabled color id */
|
|
gx_studio_progress_bar_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{20, 313, 169, 317}, /* widget size */
|
|
&sequence_window_complete_icon_1_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_progress_4), /* control block */
|
|
(void *) &sequence_window_progress_4_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_progress_3_define =
|
|
{
|
|
"progress_3",
|
|
GX_TYPE_PROGRESS_BAR, /* widget type */
|
|
ID_PALLET_FRICTION, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_PROGRESS_PERCENT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROGRESS_BAR), /* control block size */
|
|
GX_COLOR_ID_DARK_GRAY, /* normal color id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* selected color id */
|
|
GX_COLOR_ID_DARK_GRAY, /* disabled color id */
|
|
gx_studio_progress_bar_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{20, 271, 169, 275}, /* widget size */
|
|
&sequence_window_progress_4_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_progress_3), /* control block */
|
|
(void *) &sequence_window_progress_3_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_progress_2_define =
|
|
{
|
|
"progress_2",
|
|
GX_TYPE_PROGRESS_BAR, /* widget type */
|
|
ID_AUXILIARY, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_PROGRESS_PERCENT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROGRESS_BAR), /* control block size */
|
|
GX_COLOR_ID_DARK_GRAY, /* normal color id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* selected color id */
|
|
GX_COLOR_ID_DARK_GRAY, /* disabled color id */
|
|
gx_studio_progress_bar_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{21, 229, 170, 233}, /* widget size */
|
|
&sequence_window_progress_3_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_progress_2), /* control block */
|
|
(void *) &sequence_window_progress_2_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_progress_1_define =
|
|
{
|
|
"progress_1",
|
|
GX_TYPE_PROGRESS_BAR, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_PROGRESS_PERCENT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROGRESS_BAR), /* control block size */
|
|
GX_COLOR_ID_DARK_GRAY, /* normal color id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* selected color id */
|
|
GX_COLOR_ID_DARK_GRAY, /* disabled color id */
|
|
gx_studio_progress_bar_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{20, 187, 169, 191}, /* widget size */
|
|
&sequence_window_progress_2_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_progress_1), /* control block */
|
|
(void *) &sequence_window_progress_1_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_progress_4_title_define =
|
|
{
|
|
"progress_4_title",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_COPY|GX_STYLE_TEXT_LEFT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{19, 293, 132, 310}, /* widget size */
|
|
&sequence_window_progress_1_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_progress_4_title), /* control block */
|
|
(void *) &sequence_window_progress_4_title_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_progress_3_title_define =
|
|
{
|
|
"progress_3_title",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_COPY|GX_STYLE_TEXT_LEFT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{20, 251, 133, 268}, /* widget size */
|
|
&sequence_window_progress_4_title_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_progress_3_title), /* control block */
|
|
(void *) &sequence_window_progress_3_title_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_progress_2_title_define =
|
|
{
|
|
"progress_2_title",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_COPY|GX_STYLE_TEXT_LEFT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{19, 210, 132, 227}, /* widget size */
|
|
&sequence_window_progress_3_title_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_progress_2_title), /* control block */
|
|
(void *) &sequence_window_progress_2_title_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_progress_1_title_define =
|
|
{
|
|
"progress_1_title",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_COPY|GX_STYLE_TEXT_LEFT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{19, 167, 132, 184}, /* widget size */
|
|
&sequence_window_progress_2_title_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_progress_1_title), /* control block */
|
|
(void *) &sequence_window_progress_1_title_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_prompt_15_1_define =
|
|
{
|
|
"prompt_15_1",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{511, 334, 615, 346}, /* widget size */
|
|
&sequence_window_progress_1_title_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_prompt_15_1), /* control block */
|
|
(void *) &sequence_window_prompt_15_1_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_window_progress_define =
|
|
{
|
|
"window_progress",
|
|
GX_TYPE_WINDOW, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_WINDOW), /* control block size */
|
|
GX_COLOR_ID_WINDOW_FILL, /* normal color id */
|
|
GX_COLOR_ID_WINDOW_FILL, /* selected color id */
|
|
GX_COLOR_ID_WINDOW_FILL, /* disabled color id */
|
|
gx_studio_window_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{20, 351, 619, 390}, /* widget size */
|
|
&sequence_window_prompt_15_1_define, /* next widget definition */
|
|
&sequence_window_bottom_progress_define, /* child widget definition */
|
|
offsetof(SEQUENCE_WINDOW_CONTROL_BLOCK, sequence_window_window_progress), /* control block */
|
|
(void *) &sequence_window_window_progress_properties /* extended properties */
|
|
};
|
|
|
|
GX_ANIMATION_INFO sequence_window_animation_1 = {
|
|
(GX_WIDGET *) &sequence_window,
|
|
(GX_WIDGET *) &main_screen,
|
|
GX_NULL,
|
|
GX_ANIMATION_TRANSLATE, ANI_ID_SEQ_WIN_FADE_IN, 0, 1,
|
|
{0, 70}, {0, 70}, 0, 255, 20
|
|
};
|
|
|
|
|
|
GX_ANIMATION_INFO sequence_window_animation_2 = {
|
|
(GX_WIDGET *) &sequence_window,
|
|
(GX_WIDGET *) &main_screen,
|
|
GX_NULL,
|
|
GX_ANIMATION_TRANSLATE|GX_ANIMATION_DETACH, ANI_ID_SEQ_WIN_FADE_OUT, 0, 1,
|
|
{0, 70}, {0, 70}, 255, 0, 20
|
|
};
|
|
|
|
|
|
GX_STUDIO_ACTION sequence_window_on_user_event_seq_win_fade_inactions[2] = {
|
|
{GX_ACTION_TYPE_ANIMATION, 0, &main_screen, &sequence_window, &sequence_window_animation_1},
|
|
{0, 0, GX_NULL, GX_NULL, GX_NULL}
|
|
};
|
|
|
|
|
|
GX_STUDIO_ACTION sequence_window_on_user_event_seq_win_fade_outactions[2] = {
|
|
{GX_ACTION_TYPE_ANIMATION, 0, &main_screen, &sequence_window, &sequence_window_animation_2},
|
|
{0, 0, GX_NULL, GX_NULL, GX_NULL}
|
|
};
|
|
|
|
static GX_STUDIO_EVENT_ENTRY gx_studio_sequence_window_event_table[] = {
|
|
{ USER_EVENT_SEQ_WIN_FADE_IN, 0, sequence_window_on_user_event_seq_win_fade_inactions},
|
|
{ USER_EVENT_SEQ_WIN_FADE_OUT, 0, sequence_window_on_user_event_seq_win_fade_outactions},
|
|
{0, 0, GX_NULL}
|
|
};
|
|
|
|
GX_STUDIO_EVENT_PROCESS sequence_window_event_chain = {gx_studio_sequence_window_event_table, (UINT (*)(GX_WIDGET *, GX_EVENT *))sequence_window_event_process};
|
|
static UINT gx_studio_sequence_window_event_process(GX_WIDGET *target, GX_EVENT *event_ptr)
|
|
{
|
|
return (gx_studio_auto_event_handler(target, event_ptr, &sequence_window_event_chain));
|
|
}
|
|
|
|
|
|
GX_CONST GX_STUDIO_WIDGET sequence_window_define =
|
|
{
|
|
"sequence_window",
|
|
GX_TYPE_WINDOW, /* widget type */
|
|
ID_SEQUENCE_WINDOW, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(SEQUENCE_WINDOW_CONTROL_BLOCK), /* control block size */
|
|
GX_COLOR_ID_WINDOW_FILL, /* normal color id */
|
|
GX_COLOR_ID_WINDOW_FILL, /* selected color id */
|
|
GX_COLOR_ID_WINDOW_FILL, /* disabled color id */
|
|
gx_studio_window_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
(UINT (*)(GX_WIDGET *, GX_EVENT *)) gx_studio_sequence_window_event_process, /* event function override */
|
|
{0, 70, 639, 396}, /* widget size */
|
|
GX_NULL, /* next widget */
|
|
&sequence_window_window_progress_define, /* child widget */
|
|
0, /* control block */
|
|
(void *) &sequence_window_properties /* extended properties */
|
|
};
|
|
GX_WINDOW_PROPERTIES main_screen_properties =
|
|
{
|
|
0 /* wallpaper pixelmap id */
|
|
};
|
|
GX_PIXELMAP_BUTTON_PROPERTIES main_screen_button_home_properties =
|
|
{
|
|
GX_PIXELMAP_ID_MENU_ICON_HOME, /* normal pixelmap id */
|
|
GX_PIXELMAP_ID_MENU_ICON_HOME_PUSHED, /* selected pixelmap id */
|
|
0 /* disabled pixelmap id */
|
|
};
|
|
GX_PIXELMAP_BUTTON_PROPERTIES main_screen_button_gears_properties =
|
|
{
|
|
GX_PIXELMAP_ID_TOP_ICON_GEARS, /* normal pixelmap id */
|
|
GX_PIXELMAP_ID_TOP_ICON_GEARS_PUSYED, /* selected pixelmap id */
|
|
0 /* disabled pixelmap id */
|
|
};
|
|
GX_PIXELMAP_BUTTON_PROPERTIES main_screen_button_refresh_properties =
|
|
{
|
|
GX_PIXELMAP_ID_TOP_ICON_REFRESH, /* normal pixelmap id */
|
|
GX_PIXELMAP_ID_TOP_ICON_REFRESH_PUSHED, /* selected pixelmap id */
|
|
0 /* disabled pixelmap id */
|
|
};
|
|
GX_PIXELMAP_BUTTON_PROPERTIES main_screen_button_shield_properties =
|
|
{
|
|
GX_PIXELMAP_ID_TOP_ICON_SHIELD, /* normal pixelmap id */
|
|
GX_PIXELMAP_ID_TOP_ICON_SHIELD_PUSHED, /* selected pixelmap id */
|
|
0 /* disabled pixelmap id */
|
|
};
|
|
GX_ICON_PROPERTIES main_screen_expresslogic_label_properties =
|
|
{
|
|
GX_PIXELMAP_ID_MS_AZURE_LOGO_SMALL, /* normal pixelmap id */
|
|
0 /* selected pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_time_properties =
|
|
{
|
|
GX_STRING_ID_STRING_4, /* string id */
|
|
GX_FONT_ID_MIDDLE_30, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_am_pm_properties =
|
|
{
|
|
GX_STRING_ID_STRING_6, /* string id */
|
|
GX_FONT_ID_NORMAL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PIXELMAP_BUTTON_PROPERTIES main_screen_button_on_off_properties =
|
|
{
|
|
GX_PIXELMAP_ID_MENU_BUTTON_LONG, /* normal pixelmap id */
|
|
GX_PIXELMAP_ID_MENU_BUTTON_LONG_PUSHED, /* selected pixelmap id */
|
|
0 /* disabled pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_prompt_on_off_properties =
|
|
{
|
|
GX_STRING_ID_STRING_26, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_WHITE, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_WHITE /* disabled text color */
|
|
};
|
|
GX_ICON_PROPERTIES main_screen_icon_9_properties =
|
|
{
|
|
GX_PIXELMAP_ID_ICON_OFF, /* normal pixelmap id */
|
|
0 /* selected pixelmap id */
|
|
};
|
|
GX_WINDOW_PROPERTIES main_screen_window_time_properties =
|
|
{
|
|
0 /* wallpaper pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_day_of_week_properties =
|
|
{
|
|
GX_STRING_ID_STRING_8, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_date_properties =
|
|
{
|
|
GX_STRING_ID_STRING_7, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_WINDOW_PROPERTIES main_screen_button_window_properties =
|
|
{
|
|
0 /* wallpaper pixelmap id */
|
|
};
|
|
GX_PIXELMAP_BUTTON_PROPERTIES main_screen_button_inspecting_properties =
|
|
{
|
|
GX_PIXELMAP_ID_MENU_BUTTON_C, /* normal pixelmap id */
|
|
GX_PIXELMAP_ID_MENU_BUTTON_C_PUSHED, /* selected pixelmap id */
|
|
0 /* disabled pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_prompt_14_4_properties =
|
|
{
|
|
GX_STRING_ID_STRING_22, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_WHITE, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_WHITE /* disabled text color */
|
|
};
|
|
GX_ICON_PROPERTIES main_screen_icon_properties =
|
|
{
|
|
GX_PIXELMAP_ID_ICON_INSPECT, /* normal pixelmap id */
|
|
0 /* selected pixelmap id */
|
|
};
|
|
GX_PIXELMAP_BUTTON_PROPERTIES main_screen_button_palletizing_properties =
|
|
{
|
|
GX_PIXELMAP_ID_MENU_BUTTON_C, /* normal pixelmap id */
|
|
GX_PIXELMAP_ID_MENU_BUTTON_C_PUSHED, /* selected pixelmap id */
|
|
0 /* disabled pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_prompt_14_properties =
|
|
{
|
|
GX_STRING_ID_STRING_25, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_WHITE, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_WHITE /* disabled text color */
|
|
};
|
|
GX_ICON_PROPERTIES main_screen_icon_1_properties =
|
|
{
|
|
GX_PIXELMAP_ID_ICON_PALLET, /* normal pixelmap id */
|
|
0 /* selected pixelmap id */
|
|
};
|
|
GX_ICON_PROPERTIES main_screen_button_indicator_dot_properties =
|
|
{
|
|
GX_PIXELMAP_ID_OUTLINED_BUTTON_INDICATOR, /* normal pixelmap id */
|
|
0 /* selected pixelmap id */
|
|
};
|
|
GX_PIXELMAP_BUTTON_PROPERTIES main_screen_button_welding_properties =
|
|
{
|
|
GX_PIXELMAP_ID_MENU_BUTTON_C, /* normal pixelmap id */
|
|
GX_PIXELMAP_ID_MENU_BUTTON_C_PUSHED, /* selected pixelmap id */
|
|
0 /* disabled pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_prompt_14_3_properties =
|
|
{
|
|
GX_STRING_ID_STRING_24, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_WHITE, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_WHITE /* disabled text color */
|
|
};
|
|
GX_ICON_PROPERTIES main_screen_icon_2_properties =
|
|
{
|
|
GX_PIXELMAP_ID_ICON_BOLT, /* normal pixelmap id */
|
|
0 /* selected pixelmap id */
|
|
};
|
|
GX_PIXELMAP_BUTTON_PROPERTIES main_screen_button_assembling_properties =
|
|
{
|
|
GX_PIXELMAP_ID_MENU_BUTTON_C, /* normal pixelmap id */
|
|
GX_PIXELMAP_ID_MENU_BUTTON_C_PUSHED, /* selected pixelmap id */
|
|
0 /* disabled pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_prompt_14_2_properties =
|
|
{
|
|
GX_STRING_ID_STRING_23, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_WHITE, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_WHITE /* disabled text color */
|
|
};
|
|
GX_ICON_PROPERTIES main_screen_icon_3_properties =
|
|
{
|
|
GX_PIXELMAP_ID_ICON_WRENCH, /* normal pixelmap id */
|
|
0 /* selected pixelmap id */
|
|
};
|
|
GX_WINDOW_PROPERTIES main_screen_start_window_properties =
|
|
{
|
|
0 /* wallpaper pixelmap id */
|
|
};
|
|
GX_PIXELMAP_BUTTON_PROPERTIES main_screen_button_start_properties =
|
|
{
|
|
GX_PIXELMAP_ID_BIG_BUTTON, /* normal pixelmap id */
|
|
GX_PIXELMAP_ID_BIG_BUTTON_PUSHED, /* selected pixelmap id */
|
|
0 /* disabled pixelmap id */
|
|
};
|
|
GX_ICON_PROPERTIES main_screen_icon_robot_properties =
|
|
{
|
|
GX_PIXELMAP_ID_BIG_BUTTON_ROBOT_ICON, /* normal pixelmap id */
|
|
0 /* selected pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_prompt_initiate_properties =
|
|
{
|
|
GX_STRING_ID_STRING_2, /* string id */
|
|
GX_FONT_ID_NORMAL, /* font id */
|
|
GX_COLOR_ID_WHITE, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_WHITE /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_prompt_Start_properties =
|
|
{
|
|
GX_STRING_ID_STRING_3, /* string id */
|
|
GX_FONT_ID_BIG, /* font id */
|
|
GX_COLOR_ID_WHITE, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_WHITE /* disabled text color */
|
|
};
|
|
GX_ICON_PROPERTIES main_screen_icon_green_corner_properties =
|
|
{
|
|
GX_PIXELMAP_ID_BUTTON_GREEN_CORNER, /* normal pixelmap id */
|
|
0 /* selected pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_prompt_Systems_properties =
|
|
{
|
|
GX_STRING_ID_STRING_5, /* string id */
|
|
GX_FONT_ID_BOLD, /* font id */
|
|
GX_COLOR_ID_WHITE, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_WHITE /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_prompt_OK_properties =
|
|
{
|
|
GX_STRING_ID_STRING_11, /* string id */
|
|
GX_FONT_ID_NORMAL, /* font id */
|
|
GX_COLOR_ID_WHITE, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_WHITE /* disabled text color */
|
|
};
|
|
GX_WINDOW_PROPERTIES main_screen_window_timer_properties =
|
|
{
|
|
GX_PIXELMAP_ID_OUTLINED_BUTTON_HOLDER_SHORT /* wallpaper pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_prompt_11_properties =
|
|
{
|
|
GX_STRING_ID_STRING_19, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PIXELMAP_BUTTON_PROPERTIES main_screen_pixelmap_button_11_properties =
|
|
{
|
|
GX_PIXELMAP_ID_OUTLINED_BUTTON_HOLDER, /* normal pixelmap id */
|
|
GX_PIXELMAP_ID_OUTLINED_BUTTON_HOLDER_PUSHED, /* selected pixelmap id */
|
|
0 /* disabled pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_prompt_12_properties =
|
|
{
|
|
GX_STRING_ID_STRING_20, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PIXELMAP_BUTTON_PROPERTIES main_screen_pixelmap_button_12_properties =
|
|
{
|
|
GX_PIXELMAP_ID_OUTLINED_BUTTON_HOLDER, /* normal pixelmap id */
|
|
GX_PIXELMAP_ID_OUTLINED_BUTTON_HOLDER_PUSHED, /* selected pixelmap id */
|
|
0 /* disabled pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_prompt_13_properties =
|
|
{
|
|
GX_STRING_ID_STRING_21, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_WINDOW_PROPERTIES main_screen_window_speed_properties =
|
|
{
|
|
GX_PIXELMAP_ID_OUTLINED_BUTTON_HOLDER_LONG /* wallpaper pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_prompt_properties =
|
|
{
|
|
GX_STRING_ID_STRING_15, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PIXELMAP_BUTTON_PROPERTIES main_screen_pixelmap_button_properties =
|
|
{
|
|
GX_PIXELMAP_ID_OUTLINED_BUTTON_HOLDER, /* normal pixelmap id */
|
|
GX_PIXELMAP_ID_OUTLINED_BUTTON_HOLDER_PUSHED, /* selected pixelmap id */
|
|
0 /* disabled pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_prompt_1_properties =
|
|
{
|
|
GX_STRING_ID_STRING_16, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PIXELMAP_BUTTON_PROPERTIES main_screen_pixelmap_button_1_properties =
|
|
{
|
|
GX_PIXELMAP_ID_OUTLINED_BUTTON_HOLDER, /* normal pixelmap id */
|
|
GX_PIXELMAP_ID_OUTLINED_BUTTON_HOLDER_PUSHED, /* selected pixelmap id */
|
|
0 /* disabled pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_prompt_2_properties =
|
|
{
|
|
GX_STRING_ID_STRING_17, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PIXELMAP_BUTTON_PROPERTIES main_screen_pixelmap_button_10_properties =
|
|
{
|
|
GX_PIXELMAP_ID_OUTLINED_BUTTON_HOLDER, /* normal pixelmap id */
|
|
GX_PIXELMAP_ID_OUTLINED_BUTTON_HOLDER_PUSHED, /* selected pixelmap id */
|
|
0 /* disabled pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_prompt_10_properties =
|
|
{
|
|
GX_STRING_ID_STRING_18, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_WINDOW_PROPERTIES main_screen_window_mode_properties =
|
|
{
|
|
GX_PIXELMAP_ID_OUTLINED_BUTTON_HOLDER_LONG /* wallpaper pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_prompt_3_properties =
|
|
{
|
|
GX_STRING_ID_STRING_10, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PIXELMAP_BUTTON_PROPERTIES main_screen_pixelmap_button_2_properties =
|
|
{
|
|
GX_PIXELMAP_ID_OUTLINED_BUTTON_HOLDER, /* normal pixelmap id */
|
|
GX_PIXELMAP_ID_OUTLINED_BUTTON_HOLDER_PUSHED, /* selected pixelmap id */
|
|
0 /* disabled pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_prompt_4_properties =
|
|
{
|
|
GX_STRING_ID_STRING_12, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PIXELMAP_BUTTON_PROPERTIES main_screen_pixelmap_button_3_properties =
|
|
{
|
|
GX_PIXELMAP_ID_OUTLINED_BUTTON_HOLDER, /* normal pixelmap id */
|
|
GX_PIXELMAP_ID_OUTLINED_BUTTON_HOLDER_PUSHED, /* selected pixelmap id */
|
|
0 /* disabled pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_prompt_5_properties =
|
|
{
|
|
GX_STRING_ID_STRING_13, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PIXELMAP_BUTTON_PROPERTIES main_screen_pixelmap_button_4_properties =
|
|
{
|
|
GX_PIXELMAP_ID_OUTLINED_BUTTON_HOLDER, /* normal pixelmap id */
|
|
GX_PIXELMAP_ID_OUTLINED_BUTTON_HOLDER_PUSHED, /* selected pixelmap id */
|
|
0 /* disabled pixelmap id */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_prompt_6_properties =
|
|
{
|
|
GX_STRING_ID_STRING_14, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_PROMPT_PROPERTIES main_screen_prompt_spec_properties =
|
|
{
|
|
GX_STRING_ID_STRING_9, /* string id */
|
|
GX_FONT_ID_SMALL, /* font id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal text color */
|
|
GX_COLOR_ID_SELECTED_TEXT, /* selected text color */
|
|
GX_COLOR_ID_SILVER_GRAY /* disabled text color */
|
|
};
|
|
GX_ICON_PROPERTIES main_screen_icon_shield_properties =
|
|
{
|
|
GX_PIXELMAP_ID_ICON_SHIELD_SMALL, /* normal pixelmap id */
|
|
0 /* selected pixelmap id */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_icon_9_define =
|
|
{
|
|
"icon_9",
|
|
GX_TYPE_ICON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_ICON), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_icon_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{532, 412, 545, 428}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_icon_9), /* control block */
|
|
(void *) &main_screen_icon_9_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_prompt_on_off_define =
|
|
{
|
|
"prompt_on_off",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_COPY|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{514, 433, 562, 445}, /* widget size */
|
|
&main_screen_icon_9_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_prompt_on_off), /* control block */
|
|
(void *) &main_screen_prompt_on_off_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_date_define =
|
|
{
|
|
"date",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_COPY|GX_STYLE_TEXT_LEFT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{319, 39, 402, 51}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_date), /* control block */
|
|
(void *) &main_screen_date_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_day_of_week_define =
|
|
{
|
|
"day_of_week",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_COPY|GX_STYLE_TEXT_LEFT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{319, 19, 393, 31}, /* widget size */
|
|
&main_screen_date_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_day_of_week), /* control block */
|
|
(void *) &main_screen_day_of_week_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_icon_define =
|
|
{
|
|
"icon",
|
|
GX_TYPE_ICON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_ICON), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_icon_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{68, 413, 81, 428}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_icon), /* control block */
|
|
(void *) &main_screen_icon_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_prompt_14_4_define =
|
|
{
|
|
"prompt_14_4",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{44, 433, 107, 445}, /* widget size */
|
|
&main_screen_icon_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_prompt_14_4), /* control block */
|
|
(void *) &main_screen_prompt_14_4_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_button_indicator_dot_define =
|
|
{
|
|
"button_indicator_dot",
|
|
GX_TYPE_ICON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_ICON), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_icon_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{443, 405, 447, 410}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_button_indicator_dot), /* control block */
|
|
(void *) &main_screen_button_indicator_dot_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_icon_1_define =
|
|
{
|
|
"icon_1",
|
|
GX_TYPE_ICON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_ICON), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_icon_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{394, 413, 409, 426}, /* widget size */
|
|
&main_screen_button_indicator_dot_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_icon_1), /* control block */
|
|
(void *) &main_screen_icon_1_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_prompt_14_define =
|
|
{
|
|
"prompt_14",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{373, 433, 432, 445}, /* widget size */
|
|
&main_screen_icon_1_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_prompt_14), /* control block */
|
|
(void *) &main_screen_prompt_14_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_icon_2_define =
|
|
{
|
|
"icon_2",
|
|
GX_TYPE_ICON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_ICON), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_icon_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{288, 413, 295, 429}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_icon_2), /* control block */
|
|
(void *) &main_screen_icon_2_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_prompt_14_3_define =
|
|
{
|
|
"prompt_14_3",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{268, 433, 316, 445}, /* widget size */
|
|
&main_screen_icon_2_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_prompt_14_3), /* control block */
|
|
(void *) &main_screen_prompt_14_3_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_icon_3_define =
|
|
{
|
|
"icon_3",
|
|
GX_TYPE_ICON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_ICON), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_icon_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{176, 413, 190, 428}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_icon_3), /* control block */
|
|
(void *) &main_screen_icon_3_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_prompt_14_2_define =
|
|
{
|
|
"prompt_14_2",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{150, 433, 218, 445}, /* widget size */
|
|
&main_screen_icon_3_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_prompt_14_2), /* control block */
|
|
(void *) &main_screen_prompt_14_2_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_button_assembling_define =
|
|
{
|
|
"button_assembling",
|
|
GX_TYPE_PIXELMAP_BUTTON, /* widget type */
|
|
ID_ASSEMBLING, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_PIXELMAP_BUTTON), /* control block size */
|
|
GX_COLOR_ID_BTN_LOWER, /* normal color id */
|
|
GX_COLOR_ID_BTN_UPPER, /* selected color id */
|
|
GX_COLOR_ID_BTN_LOWER, /* disabled color id */
|
|
gx_studio_pixelmap_button_create, /* create function */
|
|
(VOID (*)(GX_WIDGET *)) custom_pixlemap_button_draw, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{131, 401, 237, 463}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
&main_screen_prompt_14_2_define, /* child widget definition */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_button_assembling), /* control block */
|
|
(void *) &main_screen_button_assembling_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_button_welding_define =
|
|
{
|
|
"button_welding",
|
|
GX_TYPE_PIXELMAP_BUTTON, /* widget type */
|
|
ID_WELDING, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_PIXELMAP_BUTTON), /* control block size */
|
|
GX_COLOR_ID_BTN_LOWER, /* normal color id */
|
|
GX_COLOR_ID_BTN_UPPER, /* selected color id */
|
|
GX_COLOR_ID_BTN_LOWER, /* disabled color id */
|
|
gx_studio_pixelmap_button_create, /* create function */
|
|
(VOID (*)(GX_WIDGET *)) custom_pixlemap_button_draw, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{240, 401, 346, 463}, /* widget size */
|
|
&main_screen_button_assembling_define, /* next widget definition */
|
|
&main_screen_prompt_14_3_define, /* child widget definition */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_button_welding), /* control block */
|
|
(void *) &main_screen_button_welding_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_button_palletizing_define =
|
|
{
|
|
"button_palletizing",
|
|
GX_TYPE_PIXELMAP_BUTTON, /* widget type */
|
|
ID_PALLETIZING, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_PIXELMAP_BUTTON), /* control block size */
|
|
GX_COLOR_ID_BTN_LOWER, /* normal color id */
|
|
GX_COLOR_ID_BTN_UPPER, /* selected color id */
|
|
GX_COLOR_ID_BTN_LOWER, /* disabled color id */
|
|
gx_studio_pixelmap_button_create, /* create function */
|
|
(VOID (*)(GX_WIDGET *)) custom_pixlemap_button_draw, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{349, 401, 455, 463}, /* widget size */
|
|
&main_screen_button_welding_define, /* next widget definition */
|
|
&main_screen_prompt_14_define, /* child widget definition */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_button_palletizing), /* control block */
|
|
(void *) &main_screen_button_palletizing_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_button_inspecting_define =
|
|
{
|
|
"button_inspecting",
|
|
GX_TYPE_PIXELMAP_BUTTON, /* widget type */
|
|
ID_INSPECTING, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_PIXELMAP_BUTTON), /* control block size */
|
|
GX_COLOR_ID_BTN_LOWER, /* normal color id */
|
|
GX_COLOR_ID_BTN_UPPER, /* selected color id */
|
|
GX_COLOR_ID_BTN_LOWER, /* disabled color id */
|
|
gx_studio_pixelmap_button_create, /* create function */
|
|
(VOID (*)(GX_WIDGET *)) custom_pixlemap_button_draw, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{22, 401, 128, 463}, /* widget size */
|
|
&main_screen_button_palletizing_define, /* next widget definition */
|
|
&main_screen_prompt_14_4_define, /* child widget definition */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_button_inspecting), /* control block */
|
|
(void *) &main_screen_button_inspecting_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_prompt_OK_define =
|
|
{
|
|
"prompt_OK",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{491, 131, 516, 148}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_prompt_OK), /* control block */
|
|
(void *) &main_screen_prompt_OK_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_prompt_Systems_define =
|
|
{
|
|
"prompt_Systems",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{464, 112, 521, 124}, /* widget size */
|
|
&main_screen_prompt_OK_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_prompt_Systems), /* control block */
|
|
(void *) &main_screen_prompt_Systems_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_icon_green_corner_define =
|
|
{
|
|
"icon_green_corner",
|
|
GX_TYPE_ICON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_ICON), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_icon_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{440, 103, 524, 189}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
&main_screen_prompt_Systems_define, /* child widget definition */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_icon_green_corner), /* control block */
|
|
(void *) &main_screen_icon_green_corner_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_prompt_Start_define =
|
|
{
|
|
"prompt_Start",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{273, 146, 467, 228}, /* widget size */
|
|
&main_screen_icon_green_corner_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_prompt_Start), /* control block */
|
|
(void *) &main_screen_prompt_Start_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_prompt_initiate_define =
|
|
{
|
|
"prompt_initiate",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{277, 234, 464, 251}, /* widget size */
|
|
&main_screen_prompt_Start_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_prompt_initiate), /* control block */
|
|
(void *) &main_screen_prompt_initiate_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_icon_robot_define =
|
|
{
|
|
"icon_robot",
|
|
GX_TYPE_ICON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_ICON), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_icon_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{170, 145, 245, 248}, /* widget size */
|
|
&main_screen_prompt_initiate_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_icon_robot), /* control block */
|
|
(void *) &main_screen_icon_robot_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_prompt_12_define =
|
|
{
|
|
"prompt_12",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{522, 356, 549, 368}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_prompt_12), /* control block */
|
|
(void *) &main_screen_prompt_12_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_prompt_13_define =
|
|
{
|
|
"prompt_13",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{572, 356, 604, 368}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_prompt_13), /* control block */
|
|
(void *) &main_screen_prompt_13_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_pixelmap_button_12_define =
|
|
{
|
|
"pixelmap_button_12",
|
|
GX_TYPE_PIXELMAP_BUTTON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED|GX_STYLE_BUTTON_RADIO, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_PIXELMAP_BUTTON), /* control block size */
|
|
GX_COLOR_ID_BTN_LOWER, /* normal color id */
|
|
GX_COLOR_ID_BTN_UPPER, /* selected color id */
|
|
GX_COLOR_ID_BTN_LOWER, /* disabled color id */
|
|
gx_studio_pixelmap_button_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{564, 338, 617, 389}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
&main_screen_prompt_13_define, /* child widget definition */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_pixelmap_button_12), /* control block */
|
|
(void *) &main_screen_pixelmap_button_12_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_pixelmap_button_11_define =
|
|
{
|
|
"pixelmap_button_11",
|
|
GX_TYPE_PIXELMAP_BUTTON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED|GX_STYLE_BUTTON_PUSHED|GX_STYLE_BUTTON_RADIO, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_PIXELMAP_BUTTON), /* control block size */
|
|
GX_COLOR_ID_BTN_LOWER, /* normal color id */
|
|
GX_COLOR_ID_BTN_UPPER, /* selected color id */
|
|
GX_COLOR_ID_BTN_LOWER, /* disabled color id */
|
|
gx_studio_pixelmap_button_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{511, 338, 564, 389}, /* widget size */
|
|
&main_screen_pixelmap_button_12_define, /* next widget definition */
|
|
&main_screen_prompt_12_define, /* child widget definition */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_pixelmap_button_11), /* control block */
|
|
(void *) &main_screen_pixelmap_button_11_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_prompt_11_define =
|
|
{
|
|
"prompt_11",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{465, 341, 502, 353}, /* widget size */
|
|
&main_screen_pixelmap_button_11_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_prompt_11), /* control block */
|
|
(void *) &main_screen_prompt_11_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_prompt_1_define =
|
|
{
|
|
"prompt_1",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{303, 355, 330, 367}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_prompt_1), /* control block */
|
|
(void *) &main_screen_prompt_1_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_prompt_2_define =
|
|
{
|
|
"prompt_2",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{355, 355, 387, 367}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_prompt_2), /* control block */
|
|
(void *) &main_screen_prompt_2_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_prompt_10_define =
|
|
{
|
|
"prompt_10",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{412, 355, 436, 367}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_prompt_10), /* control block */
|
|
(void *) &main_screen_prompt_10_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_pixelmap_button_10_define =
|
|
{
|
|
"pixelmap_button_10",
|
|
GX_TYPE_PIXELMAP_BUTTON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED|GX_STYLE_BUTTON_RADIO, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_PIXELMAP_BUTTON), /* control block size */
|
|
GX_COLOR_ID_BTN_LOWER, /* normal color id */
|
|
GX_COLOR_ID_BTN_UPPER, /* selected color id */
|
|
GX_COLOR_ID_BTN_LOWER, /* disabled color id */
|
|
gx_studio_pixelmap_button_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{400, 337, 453, 388}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
&main_screen_prompt_10_define, /* child widget definition */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_pixelmap_button_10), /* control block */
|
|
(void *) &main_screen_pixelmap_button_10_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_pixelmap_button_1_define =
|
|
{
|
|
"pixelmap_button_1",
|
|
GX_TYPE_PIXELMAP_BUTTON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED|GX_STYLE_BUTTON_PUSHED|GX_STYLE_BUTTON_RADIO, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_PIXELMAP_BUTTON), /* control block size */
|
|
GX_COLOR_ID_BTN_LOWER, /* normal color id */
|
|
GX_COLOR_ID_BTN_UPPER, /* selected color id */
|
|
GX_COLOR_ID_BTN_LOWER, /* disabled color id */
|
|
gx_studio_pixelmap_button_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{346, 337, 399, 388}, /* widget size */
|
|
&main_screen_pixelmap_button_10_define, /* next widget definition */
|
|
&main_screen_prompt_2_define, /* child widget definition */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_pixelmap_button_1), /* control block */
|
|
(void *) &main_screen_pixelmap_button_1_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_pixelmap_button_define =
|
|
{
|
|
"pixelmap_button",
|
|
GX_TYPE_PIXELMAP_BUTTON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED|GX_STYLE_BUTTON_RADIO, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_PIXELMAP_BUTTON), /* control block size */
|
|
GX_COLOR_ID_BTN_LOWER, /* normal color id */
|
|
GX_COLOR_ID_BTN_UPPER, /* selected color id */
|
|
GX_COLOR_ID_BTN_LOWER, /* disabled color id */
|
|
gx_studio_pixelmap_button_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{293, 337, 346, 388}, /* widget size */
|
|
&main_screen_pixelmap_button_1_define, /* next widget definition */
|
|
&main_screen_prompt_1_define, /* child widget definition */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_pixelmap_button), /* control block */
|
|
(void *) &main_screen_pixelmap_button_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_prompt_define =
|
|
{
|
|
"prompt",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{246, 340, 283, 352}, /* widget size */
|
|
&main_screen_pixelmap_button_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_prompt), /* control block */
|
|
(void *) &main_screen_prompt_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_prompt_4_define =
|
|
{
|
|
"prompt_4",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{89, 356, 112, 368}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_prompt_4), /* control block */
|
|
(void *) &main_screen_prompt_4_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_prompt_5_define =
|
|
{
|
|
"prompt_5",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{141, 356, 164, 368}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_prompt_5), /* control block */
|
|
(void *) &main_screen_prompt_5_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_prompt_6_define =
|
|
{
|
|
"prompt_6",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{195, 356, 218, 368}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_prompt_6), /* control block */
|
|
(void *) &main_screen_prompt_6_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_pixelmap_button_4_define =
|
|
{
|
|
"pixelmap_button_4",
|
|
GX_TYPE_PIXELMAP_BUTTON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED|GX_STYLE_BUTTON_RADIO, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_PIXELMAP_BUTTON), /* control block size */
|
|
GX_COLOR_ID_BTN_LOWER, /* normal color id */
|
|
GX_COLOR_ID_BTN_UPPER, /* selected color id */
|
|
GX_COLOR_ID_BTN_LOWER, /* disabled color id */
|
|
gx_studio_pixelmap_button_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{181, 338, 234, 389}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
&main_screen_prompt_6_define, /* child widget definition */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_pixelmap_button_4), /* control block */
|
|
(void *) &main_screen_pixelmap_button_4_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_pixelmap_button_3_define =
|
|
{
|
|
"pixelmap_button_3",
|
|
GX_TYPE_PIXELMAP_BUTTON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED|GX_STYLE_BUTTON_PUSHED|GX_STYLE_BUTTON_RADIO, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_PIXELMAP_BUTTON), /* control block size */
|
|
GX_COLOR_ID_BTN_LOWER, /* normal color id */
|
|
GX_COLOR_ID_BTN_UPPER, /* selected color id */
|
|
GX_COLOR_ID_BTN_LOWER, /* disabled color id */
|
|
gx_studio_pixelmap_button_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{128, 338, 181, 389}, /* widget size */
|
|
&main_screen_pixelmap_button_4_define, /* next widget definition */
|
|
&main_screen_prompt_5_define, /* child widget definition */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_pixelmap_button_3), /* control block */
|
|
(void *) &main_screen_pixelmap_button_3_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_pixelmap_button_2_define =
|
|
{
|
|
"pixelmap_button_2",
|
|
GX_TYPE_PIXELMAP_BUTTON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED|GX_STYLE_BUTTON_RADIO, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_PIXELMAP_BUTTON), /* control block size */
|
|
GX_COLOR_ID_BTN_LOWER, /* normal color id */
|
|
GX_COLOR_ID_BTN_UPPER, /* selected color id */
|
|
GX_COLOR_ID_BTN_LOWER, /* disabled color id */
|
|
gx_studio_pixelmap_button_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{75, 338, 128, 389}, /* widget size */
|
|
&main_screen_pixelmap_button_3_define, /* next widget definition */
|
|
&main_screen_prompt_4_define, /* child widget definition */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_pixelmap_button_2), /* control block */
|
|
(void *) &main_screen_pixelmap_button_2_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_prompt_3_define =
|
|
{
|
|
"prompt_3",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_CENTER, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{31, 341, 62, 353}, /* widget size */
|
|
&main_screen_pixelmap_button_2_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_prompt_3), /* control block */
|
|
(void *) &main_screen_prompt_3_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_icon_shield_define =
|
|
{
|
|
"icon_shield",
|
|
GX_TYPE_ICON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_ICON), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_icon_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{127, 83, 138, 97}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_icon_shield), /* control block */
|
|
(void *) &main_screen_icon_shield_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_prompt_spec_define =
|
|
{
|
|
"prompt_spec",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_RIGHT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_SILVER_GRAY, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_SILVER_GRAY, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{122, 83, 287, 97}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
&main_screen_icon_shield_define, /* child widget definition */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_prompt_spec), /* control block */
|
|
(void *) &main_screen_prompt_spec_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_window_mode_define =
|
|
{
|
|
"window_mode",
|
|
GX_TYPE_WINDOW, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_WINDOW), /* control block size */
|
|
GX_COLOR_ID_WINDOW_FILL, /* normal color id */
|
|
GX_COLOR_ID_WINDOW_FILL, /* selected color id */
|
|
GX_COLOR_ID_WINDOW_FILL, /* disabled color id */
|
|
gx_studio_window_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{22, 332, 234, 391}, /* widget size */
|
|
&main_screen_prompt_spec_define, /* next widget definition */
|
|
&main_screen_prompt_3_define, /* child widget definition */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_window_mode), /* control block */
|
|
(void *) &main_screen_window_mode_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_window_speed_define =
|
|
{
|
|
"window_speed",
|
|
GX_TYPE_WINDOW, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_WINDOW), /* control block size */
|
|
GX_COLOR_ID_WINDOW_FILL, /* normal color id */
|
|
GX_COLOR_ID_WINDOW_FILL, /* selected color id */
|
|
GX_COLOR_ID_WINDOW_FILL, /* disabled color id */
|
|
gx_studio_window_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{240, 332, 452, 391}, /* widget size */
|
|
&main_screen_window_mode_define, /* next widget definition */
|
|
&main_screen_prompt_define, /* child widget definition */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_window_speed), /* control block */
|
|
(void *) &main_screen_window_speed_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_window_timer_define =
|
|
{
|
|
"window_timer",
|
|
GX_TYPE_WINDOW, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_WINDOW), /* control block size */
|
|
GX_COLOR_ID_WINDOW_FILL, /* normal color id */
|
|
GX_COLOR_ID_WINDOW_FILL, /* selected color id */
|
|
GX_COLOR_ID_WINDOW_FILL, /* disabled color id */
|
|
gx_studio_window_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{458, 332, 618, 391}, /* widget size */
|
|
&main_screen_window_speed_define, /* next widget definition */
|
|
&main_screen_prompt_11_define, /* child widget definition */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_window_timer), /* control block */
|
|
(void *) &main_screen_window_timer_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_button_start_define =
|
|
{
|
|
"button_start",
|
|
GX_TYPE_PIXELMAP_BUTTON, /* widget type */
|
|
ID_START, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_PIXELMAP_BUTTON), /* control block size */
|
|
GX_COLOR_ID_BTN_LOWER, /* normal color id */
|
|
GX_COLOR_ID_BTN_UPPER, /* selected color id */
|
|
GX_COLOR_ID_BTN_LOWER, /* disabled color id */
|
|
gx_studio_pixelmap_button_create, /* create function */
|
|
(VOID (*)(GX_WIDGET *)) custom_pixlemap_button_draw, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{118, 104, 525, 300}, /* widget size */
|
|
&main_screen_window_timer_define, /* next widget definition */
|
|
&main_screen_icon_robot_define, /* child widget definition */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_button_start), /* control block */
|
|
(void *) &main_screen_button_start_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_start_window_define =
|
|
{
|
|
"start_window",
|
|
GX_TYPE_WINDOW, /* widget type */
|
|
ID_START_WINDOW, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_WINDOW), /* control block size */
|
|
GX_COLOR_ID_WINDOW_FILL, /* normal color id */
|
|
GX_COLOR_ID_WINDOW_FILL, /* selected color id */
|
|
GX_COLOR_ID_WINDOW_FILL, /* disabled color id */
|
|
gx_studio_window_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{0, 82, 639, 396}, /* widget size */
|
|
GX_NULL, /* no next widget */
|
|
&main_screen_button_start_define, /* child widget definition */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_start_window), /* control block */
|
|
(void *) &main_screen_start_window_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_button_window_define =
|
|
{
|
|
"button_window",
|
|
GX_TYPE_WINDOW, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_WINDOW), /* control block size */
|
|
GX_COLOR_ID_WINDOW_FILL, /* normal color id */
|
|
GX_COLOR_ID_WINDOW_FILL, /* selected color id */
|
|
GX_COLOR_ID_WINDOW_FILL, /* disabled color id */
|
|
gx_studio_window_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{16, 400, 455, 465}, /* widget size */
|
|
&main_screen_start_window_define, /* next widget definition */
|
|
&main_screen_button_inspecting_define, /* child widget definition */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_button_window), /* control block */
|
|
(void *) &main_screen_button_window_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_window_time_define =
|
|
{
|
|
"window_time",
|
|
GX_TYPE_WINDOW, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_WINDOW), /* control block size */
|
|
GX_COLOR_ID_BLACK, /* normal color id */
|
|
GX_COLOR_ID_BLACK, /* selected color id */
|
|
GX_COLOR_ID_BLACK, /* disabled color id */
|
|
gx_studio_window_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{318, 18, 401, 57}, /* widget size */
|
|
&main_screen_button_window_define, /* next widget definition */
|
|
&main_screen_day_of_week_define, /* child widget definition */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_window_time), /* control block */
|
|
(void *) &main_screen_window_time_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_button_on_off_define =
|
|
{
|
|
"button_on_off",
|
|
GX_TYPE_PIXELMAP_BUTTON, /* widget type */
|
|
ID_ON_OFF, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_ENABLED, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_PIXELMAP_BUTTON), /* control block size */
|
|
GX_COLOR_ID_BTN_LOWER, /* normal color id */
|
|
GX_COLOR_ID_BTN_UPPER, /* selected color id */
|
|
GX_COLOR_ID_BTN_LOWER, /* disabled color id */
|
|
gx_studio_pixelmap_button_create, /* create function */
|
|
(VOID (*)(GX_WIDGET *)) custom_pixlemap_button_draw, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{458, 401, 618, 463}, /* widget size */
|
|
&main_screen_window_time_define, /* next widget definition */
|
|
&main_screen_prompt_on_off_define, /* child widget definition */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_button_on_off), /* control block */
|
|
(void *) &main_screen_button_on_off_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_am_pm_define =
|
|
{
|
|
"am_pm",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_COPY|GX_STYLE_TEXT_RIGHT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{282, 29, 310, 46}, /* widget size */
|
|
&main_screen_button_on_off_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_am_pm), /* control block */
|
|
(void *) &main_screen_am_pm_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_time_define =
|
|
{
|
|
"time",
|
|
GX_TYPE_PROMPT, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_TEXT_COPY|GX_STYLE_TEXT_RIGHT, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_PROMPT), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_prompt_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{186, 18, 276, 49}, /* widget size */
|
|
&main_screen_am_pm_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_time), /* control block */
|
|
(void *) &main_screen_time_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_expresslogic_label_define =
|
|
{
|
|
"expresslogic_label",
|
|
GX_TYPE_ICON, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_TRANSPARENT|GX_STYLE_HALIGN_LEFT|GX_STYLE_VALIGN_TOP, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(GX_ICON), /* control block size */
|
|
GX_COLOR_ID_WIDGET_FILL, /* normal color id */
|
|
GX_COLOR_ID_SELECTED_FILL, /* selected color id */
|
|
GX_COLOR_ID_WIDGET_FILL, /* disabled color id */
|
|
gx_studio_icon_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{18, 18, 143, 37}, /* widget size */
|
|
&main_screen_time_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_expresslogic_label), /* control block */
|
|
(void *) &main_screen_expresslogic_label_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_button_shield_define =
|
|
{
|
|
"button_shield",
|
|
GX_TYPE_PIXELMAP_BUTTON, /* widget type */
|
|
ID_SHIELD, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_PIXELMAP_BUTTON), /* control block size */
|
|
GX_COLOR_ID_BTN_LOWER, /* normal color id */
|
|
GX_COLOR_ID_BTN_UPPER, /* selected color id */
|
|
GX_COLOR_ID_BTN_LOWER, /* disabled color id */
|
|
gx_studio_pixelmap_button_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{462, 23, 477, 42}, /* widget size */
|
|
&main_screen_expresslogic_label_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_button_shield), /* control block */
|
|
(void *) &main_screen_button_shield_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_button_refresh_define =
|
|
{
|
|
"button_refresh",
|
|
GX_TYPE_PIXELMAP_BUTTON, /* widget type */
|
|
ID_REFRESH, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_PIXELMAP_BUTTON), /* control block size */
|
|
GX_COLOR_ID_BTN_LOWER, /* normal color id */
|
|
GX_COLOR_ID_BTN_UPPER, /* selected color id */
|
|
GX_COLOR_ID_BTN_LOWER, /* disabled color id */
|
|
gx_studio_pixelmap_button_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{504, 23, 522, 42}, /* widget size */
|
|
&main_screen_button_shield_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_button_refresh), /* control block */
|
|
(void *) &main_screen_button_refresh_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_button_gears_define =
|
|
{
|
|
"button_gears",
|
|
GX_TYPE_PIXELMAP_BUTTON, /* widget type */
|
|
ID_GEARS, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_PIXELMAP_BUTTON), /* control block size */
|
|
GX_COLOR_ID_BTN_LOWER, /* normal color id */
|
|
GX_COLOR_ID_BTN_UPPER, /* selected color id */
|
|
GX_COLOR_ID_BTN_LOWER, /* disabled color id */
|
|
gx_studio_pixelmap_button_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{548, 22, 571, 43}, /* widget size */
|
|
&main_screen_button_refresh_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_button_gears), /* control block */
|
|
(void *) &main_screen_button_gears_properties /* extended properties */
|
|
};
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_button_home_define =
|
|
{
|
|
"button_home",
|
|
GX_TYPE_PIXELMAP_BUTTON, /* widget type */
|
|
ID_HOME, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE|GX_STYLE_ENABLED, /* style flags */
|
|
GX_STATUS_ACCEPTS_FOCUS, /* status flags */
|
|
sizeof(GX_PIXELMAP_BUTTON), /* control block size */
|
|
GX_COLOR_ID_BTN_LOWER, /* normal color id */
|
|
GX_COLOR_ID_BTN_UPPER, /* selected color id */
|
|
GX_COLOR_ID_BTN_LOWER, /* disabled color id */
|
|
gx_studio_pixelmap_button_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
GX_NULL, /* event function override */
|
|
{594, 24, 622, 47}, /* widget size */
|
|
&main_screen_button_gears_define, /* next widget definition */
|
|
GX_NULL, /* no child widgets */
|
|
offsetof(MAIN_SCREEN_CONTROL_BLOCK, main_screen_button_home), /* control block */
|
|
(void *) &main_screen_button_home_properties /* extended properties */
|
|
};
|
|
|
|
GX_ANIMATION_INFO main_screen_animation_1 = {
|
|
(GX_WIDGET *) &main_screen.main_screen_window_mode,
|
|
(GX_WIDGET *) &main_screen.main_screen_start_window,
|
|
GX_NULL,
|
|
GX_ANIMATION_TRANSLATE, ANI_ID_MODE_WIN_SLIDE_OUT, 0, 1,
|
|
{22, 332}, {-213, 332}, 255, 0, 20
|
|
};
|
|
|
|
|
|
GX_ANIMATION_INFO main_screen_animation_2 = {
|
|
(GX_WIDGET *) &main_screen.main_screen_prompt_spec,
|
|
(GX_WIDGET *) &main_screen.main_screen_start_window,
|
|
GX_NULL,
|
|
GX_ANIMATION_TRANSLATE, ANI_ID_SPEC_PROMPT_SLIDE_OUT, 0, 1,
|
|
{112, 83}, {640, 83}, 255, 0, 20
|
|
};
|
|
|
|
|
|
GX_ANIMATION_INFO main_screen_animation_3 = {
|
|
(GX_WIDGET *) &main_screen.main_screen_button_start,
|
|
(GX_WIDGET *) &main_screen.main_screen_start_window,
|
|
GX_NULL,
|
|
GX_ANIMATION_TRANSLATE, ANI_ID_START_BTN_SLIDE_OUT, 0, 1,
|
|
{118, 103}, {-408, 103}, 255, 0, 20
|
|
};
|
|
|
|
|
|
GX_ANIMATION_INFO main_screen_animation_4 = {
|
|
(GX_WIDGET *) &main_screen.main_screen_window_timer,
|
|
(GX_WIDGET *) &main_screen.main_screen_start_window,
|
|
GX_NULL,
|
|
GX_ANIMATION_TRANSLATE, ANI_ID_TIMER_WIN_SLIDE_OUT, 0, 1,
|
|
{458, 332}, {640, 332}, 255, 0, 20
|
|
};
|
|
|
|
|
|
GX_ANIMATION_INFO main_screen_animation_5 = {
|
|
(GX_WIDGET *) &main_screen.main_screen_window_mode,
|
|
(GX_WIDGET *) &main_screen.main_screen_start_window,
|
|
GX_NULL,
|
|
GX_ANIMATION_TRANSLATE, ANI_ID_MODE_WIN_SLIDE_IN, 0, 1,
|
|
{-213, 332}, {22, 332}, 0, 255, 20
|
|
};
|
|
|
|
|
|
GX_ANIMATION_INFO main_screen_animation_6 = {
|
|
(GX_WIDGET *) &main_screen.main_screen_window_speed,
|
|
(GX_WIDGET *) &main_screen.main_screen_start_window,
|
|
GX_NULL,
|
|
GX_ANIMATION_TRANSLATE, ANI_ID_SPEED_WIN_FADE_IN, 0, 1,
|
|
{240, 332}, {240, 332}, 0, 255, 20
|
|
};
|
|
|
|
|
|
GX_ANIMATION_INFO main_screen_animation_7 = {
|
|
(GX_WIDGET *) &main_screen.main_screen_button_start,
|
|
(GX_WIDGET *) &main_screen.main_screen_start_window,
|
|
GX_NULL,
|
|
GX_ANIMATION_TRANSLATE, ANI_ID_START_BTN_SLIDE_IN, 0, 1,
|
|
{-408, 103}, {118, 103}, 0, 255, 20
|
|
};
|
|
|
|
|
|
GX_ANIMATION_INFO main_screen_animation_8 = {
|
|
(GX_WIDGET *) &main_screen.main_screen_window_timer,
|
|
(GX_WIDGET *) &main_screen.main_screen_start_window,
|
|
GX_NULL,
|
|
GX_ANIMATION_TRANSLATE, ANI_ID_TIMER_WIN_SLIDE_IN, 0, 1,
|
|
{640, 332}, {458, 332}, 0, 255, 20
|
|
};
|
|
|
|
|
|
GX_ANIMATION_INFO main_screen_animation_9 = {
|
|
(GX_WIDGET *) &main_screen.main_screen_prompt_spec,
|
|
(GX_WIDGET *) &main_screen.main_screen_start_window,
|
|
GX_NULL,
|
|
GX_ANIMATION_TRANSLATE, ANI_ID_SPEC_PROMPT_SLIDE_IN, 0, 1,
|
|
{640, 83}, {112, 83}, 0, 255, 20
|
|
};
|
|
|
|
|
|
GX_ANIMATION_INFO main_screen_animation_10 = {
|
|
(GX_WIDGET *) &main_screen.main_screen_icon_green_corner,
|
|
(GX_WIDGET *) &main_screen,
|
|
GX_NULL,
|
|
GX_ANIMATION_TRANSLATE, ANI_ID_GREEN_CORNER_SLIDE_IN, 0, 1,
|
|
{640, 102}, {440, 102}, 255, 255, 10
|
|
};
|
|
|
|
|
|
GX_STUDIO_ACTION main_screen_on_user_event_start_win_fade_outactions[5] = {
|
|
{GX_ACTION_TYPE_ANIMATION, 0, &main_screen.main_screen_start_window, &main_screen.main_screen_window_mode, &main_screen_animation_1},
|
|
{GX_ACTION_TYPE_ANIMATION, 0, &main_screen.main_screen_start_window, &main_screen.main_screen_prompt_spec, &main_screen_animation_2},
|
|
{GX_ACTION_TYPE_ANIMATION, 0, &main_screen.main_screen_start_window, &main_screen.main_screen_button_start, &main_screen_animation_3},
|
|
{GX_ACTION_TYPE_ANIMATION, 0, &main_screen.main_screen_start_window, &main_screen.main_screen_window_timer, &main_screen_animation_4},
|
|
{0, 0, GX_NULL, GX_NULL, GX_NULL}
|
|
};
|
|
|
|
|
|
GX_STUDIO_ACTION main_screen_on_user_event_start_win_fade_inactions[7] = {
|
|
{GX_ACTION_TYPE_ANIMATION, 0, &main_screen.main_screen_start_window, &main_screen.main_screen_window_mode, &main_screen_animation_5},
|
|
{GX_ACTION_TYPE_ANIMATION, 0, &main_screen.main_screen_start_window, &main_screen.main_screen_window_speed, &main_screen_animation_6},
|
|
{GX_ACTION_TYPE_ANIMATION, 0, &main_screen.main_screen_start_window, &main_screen.main_screen_button_start, &main_screen_animation_7},
|
|
{GX_ACTION_TYPE_ANIMATION, 0, &main_screen.main_screen_start_window, &main_screen.main_screen_window_timer, &main_screen_animation_8},
|
|
{GX_ACTION_TYPE_ATTACH, 0, &main_screen, &main_screen.main_screen_icon_green_corner, GX_NULL},
|
|
{GX_ACTION_TYPE_ANIMATION, 0, &main_screen.main_screen_start_window, &main_screen.main_screen_prompt_spec, &main_screen_animation_9},
|
|
{0, 0, GX_NULL, GX_NULL, GX_NULL}
|
|
};
|
|
|
|
|
|
GX_STUDIO_ACTION main_screen_on_gx_event_animation_complete_ani_id_start_btn_slide_in_actions[2] = {
|
|
{GX_ACTION_TYPE_ANIMATION, 0, &main_screen, &main_screen.main_screen_icon_green_corner, &main_screen_animation_10},
|
|
{0, 0, GX_NULL, GX_NULL, GX_NULL}
|
|
};
|
|
|
|
|
|
GX_STUDIO_ACTION main_screen_on_gx_event_animation_complete_ani_id_green_corner_slide_in_actions[2] = {
|
|
{GX_ACTION_TYPE_ATTACH, 0, &main_screen.main_screen_button_start, &main_screen.main_screen_icon_green_corner, GX_NULL},
|
|
{0, 0, GX_NULL, GX_NULL, GX_NULL}
|
|
};
|
|
|
|
|
|
GX_STUDIO_ACTION main_screen_on_gx_event_animation_complete_ani_id_start_btn_slide_out_actions[2] = {
|
|
{GX_ACTION_TYPE_DETACH, 0, &main_screen.main_screen_start_window, &main_screen.main_screen_window_speed, GX_NULL},
|
|
{0, 0, GX_NULL, GX_NULL, GX_NULL}
|
|
};
|
|
|
|
static GX_STUDIO_EVENT_ENTRY gx_studio_main_screen_event_table[] = {
|
|
{ USER_EVENT_START_WIN_FADE_OUT, 0, main_screen_on_user_event_start_win_fade_outactions},
|
|
{ USER_EVENT_START_WIN_FADE_IN, 0, main_screen_on_user_event_start_win_fade_inactions},
|
|
{ GX_EVENT_ANIMATION_COMPLETE, ANI_ID_START_BTN_SLIDE_IN, main_screen_on_gx_event_animation_complete_ani_id_start_btn_slide_in_actions},
|
|
{ GX_EVENT_ANIMATION_COMPLETE, ANI_ID_GREEN_CORNER_SLIDE_IN, main_screen_on_gx_event_animation_complete_ani_id_green_corner_slide_in_actions},
|
|
{ GX_EVENT_ANIMATION_COMPLETE, ANI_ID_START_BTN_SLIDE_OUT, main_screen_on_gx_event_animation_complete_ani_id_start_btn_slide_out_actions},
|
|
{0, 0, GX_NULL}
|
|
};
|
|
|
|
GX_STUDIO_EVENT_PROCESS main_screen_event_chain = {gx_studio_main_screen_event_table, (UINT (*)(GX_WIDGET *, GX_EVENT *))main_screen_event_process};
|
|
static UINT gx_studio_main_screen_event_process(GX_WIDGET *target, GX_EVENT *event_ptr)
|
|
{
|
|
return (gx_studio_auto_event_handler(target, event_ptr, &main_screen_event_chain));
|
|
}
|
|
|
|
|
|
GX_CONST GX_STUDIO_WIDGET main_screen_define =
|
|
{
|
|
"main_screen",
|
|
GX_TYPE_WINDOW, /* widget type */
|
|
GX_ID_NONE, /* widget id */
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
0, /* user data */
|
|
#endif
|
|
GX_STYLE_BORDER_NONE, /* style flags */
|
|
0, /* status flags */
|
|
sizeof(MAIN_SCREEN_CONTROL_BLOCK), /* control block size */
|
|
GX_COLOR_ID_BLACK, /* normal color id */
|
|
GX_COLOR_ID_BLACK, /* selected color id */
|
|
GX_COLOR_ID_BLACK, /* disabled color id */
|
|
gx_studio_window_create, /* create function */
|
|
GX_NULL, /* drawing function override */
|
|
(UINT (*)(GX_WIDGET *, GX_EVENT *)) gx_studio_main_screen_event_process, /* event function override */
|
|
{0, 0, 639, 479}, /* widget size */
|
|
GX_NULL, /* next widget */
|
|
&main_screen_button_home_define, /* child widget */
|
|
0, /* control block */
|
|
(void *) &main_screen_properties /* extended properties */
|
|
};
|
|
GX_CONST GX_STUDIO_WIDGET_ENTRY demo_guix_industrial_widget_table[] =
|
|
{
|
|
{ &sequence_number_define, (GX_WIDGET *) &sequence_number },
|
|
{ &complete_window_define, (GX_WIDGET *) &complete_window },
|
|
{ &sequence_window_define, (GX_WIDGET *) &sequence_window },
|
|
{ &main_screen_define, (GX_WIDGET *) &main_screen },
|
|
{GX_NULL, GX_NULL}
|
|
};
|
|
|
|
static GX_WIDGET *gx_studio_nested_widget_create(GX_BYTE *control, GX_CONST GX_STUDIO_WIDGET *definition, GX_WIDGET *parent)
|
|
{
|
|
UINT status = GX_SUCCESS;
|
|
GX_WIDGET *widget = GX_NULL;
|
|
GX_VALUE list_count = 0;
|
|
GX_VALUE list_total_count = 0;
|
|
|
|
if(parent && (parent->gx_widget_type == GX_TYPE_MENU))
|
|
{
|
|
list_total_count = ((GX_MENU *)parent)->gx_menu_list_total_count;
|
|
}
|
|
|
|
while(definition && status == GX_SUCCESS)
|
|
{
|
|
if (definition->create_function)
|
|
{
|
|
if (definition->style & GX_STYLE_DYNAMICALLY_ALLOCATED)
|
|
{
|
|
status = gx_widget_allocate(&widget, definition->control_block_size);
|
|
if (status != GX_SUCCESS)
|
|
{
|
|
return GX_NULL;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (control == GX_NULL)
|
|
{
|
|
return GX_NULL;
|
|
}
|
|
widget = (GX_WIDGET *) (control + definition->control_block_offset);
|
|
}
|
|
|
|
status = definition->create_function(definition, widget, parent);
|
|
|
|
if(list_count < list_total_count)
|
|
{
|
|
gx_menu_insert((GX_MENU *)parent, widget);
|
|
((GX_MENU *)parent)->gx_menu_list_total_count--;
|
|
list_count++;
|
|
}
|
|
|
|
if (status == GX_SUCCESS)
|
|
{
|
|
if (definition->widget_type != GX_TYPE_TEMPLATE)
|
|
{
|
|
#if defined(GUIX_5_4_0_COMPATIBILITY)
|
|
gx_widget_fill_color_set(widget, definition->normal_fill_color_id, definition->selected_fill_color_id);
|
|
#else
|
|
gx_widget_fill_color_set(widget, definition->normal_fill_color_id, definition->selected_fill_color_id, definition->disabled_fill_color_id);
|
|
#endif
|
|
}
|
|
|
|
if (!(definition->status & GX_STATUS_ACCEPTS_FOCUS))
|
|
{
|
|
gx_widget_status_remove(widget, GX_STATUS_ACCEPTS_FOCUS);
|
|
}
|
|
|
|
if (definition->draw_function)
|
|
{
|
|
gx_widget_draw_set(widget, definition->draw_function);
|
|
}
|
|
if (definition->event_function)
|
|
{
|
|
gx_widget_event_process_set(widget, definition->event_function);
|
|
}
|
|
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
widget->gx_widget_user_data = definition->user_data;
|
|
#endif
|
|
|
|
if (definition->child_widget)
|
|
{
|
|
gx_studio_nested_widget_create(control, definition->child_widget, widget);
|
|
}
|
|
}
|
|
definition = definition->next_widget;
|
|
}
|
|
}
|
|
return widget;
|
|
}
|
|
|
|
GX_WIDGET *gx_studio_widget_create(GX_BYTE *control, GX_CONST GX_STUDIO_WIDGET *definition, GX_WIDGET *parent)
|
|
{
|
|
GX_WIDGET *widget;
|
|
widget = gx_studio_nested_widget_create(control, definition, GX_NULL);
|
|
|
|
if (parent && widget)
|
|
{
|
|
gx_widget_attach(parent, widget);
|
|
}
|
|
return widget;
|
|
}
|
|
|
|
UINT gx_studio_named_widget_create(char *name, GX_WIDGET *parent, GX_WIDGET **new_widget)
|
|
{
|
|
UINT status = GX_FAILURE;
|
|
GX_CONST GX_STUDIO_WIDGET_ENTRY *entry = demo_guix_industrial_widget_table;
|
|
GX_WIDGET *widget = GX_NULL;
|
|
|
|
while(entry->widget_information)
|
|
{
|
|
if (!strcmp(name, entry->widget_information->widget_name))
|
|
{
|
|
widget = gx_studio_widget_create((GX_BYTE *) entry->widget, entry->widget_information, parent);
|
|
if (widget)
|
|
{
|
|
status = GX_SUCCESS;
|
|
}
|
|
break;
|
|
}
|
|
entry++;
|
|
}
|
|
|
|
if (new_widget)
|
|
{
|
|
*new_widget = widget;
|
|
}
|
|
return status;
|
|
}
|
|
|
|
|
|
UINT gx_studio_display_configure(USHORT display, UINT (*driver)(GX_DISPLAY *),
|
|
GX_UBYTE language, USHORT theme, GX_WINDOW_ROOT **return_root)
|
|
{
|
|
GX_CONST GX_THEME *theme_ptr;
|
|
GX_RECTANGLE size;
|
|
|
|
GX_STUDIO_DISPLAY_INFO *display_info = &demo_guix_industrial_display_table[display];
|
|
|
|
|
|
/* create the requested display */
|
|
|
|
gx_display_create(display_info->display,
|
|
display_info->name,
|
|
driver,
|
|
(GX_VALUE) display_info->x_resolution,
|
|
(GX_VALUE) display_info->y_resolution);
|
|
|
|
|
|
/* install the request theme */
|
|
|
|
if(display_info->theme_table)
|
|
{
|
|
theme_ptr = display_info->theme_table[theme];
|
|
if(theme_ptr)
|
|
{
|
|
gx_display_color_table_set(display_info->display, theme_ptr->theme_color_table, theme_ptr->theme_color_table_size);
|
|
|
|
/* install the color palette if required */
|
|
if (display_info->display->gx_display_driver_palette_set &&
|
|
theme_ptr->theme_palette != NULL)
|
|
{
|
|
display_info->display->gx_display_driver_palette_set(display_info->display, theme_ptr->theme_palette, theme_ptr->theme_palette_size);
|
|
}
|
|
|
|
gx_display_font_table_set(display_info->display, theme_ptr->theme_font_table, theme_ptr->theme_font_table_size);
|
|
gx_display_pixelmap_table_set(display_info->display, theme_ptr->theme_pixelmap_table, theme_ptr->theme_pixelmap_table_size);
|
|
gx_system_scroll_appearance_set(theme_ptr->theme_vertical_scroll_style, (GX_SCROLLBAR_APPEARANCE *) &theme_ptr->theme_vertical_scrollbar_appearance);
|
|
gx_system_scroll_appearance_set(theme_ptr->theme_horizontal_scroll_style, (GX_SCROLLBAR_APPEARANCE *) &theme_ptr->theme_horizontal_scrollbar_appearance);
|
|
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);
|
|
gx_display_active_language_set(display_info->display, language);
|
|
}
|
|
}
|
|
|
|
/* Set screen rotation angle. */
|
|
|
|
display_info->display->gx_display_rotation_angle = display_info->rotation_angle;
|
|
|
|
/* create the canvas for this display */
|
|
|
|
gx_canvas_create(display_info->canvas,
|
|
display_info->canvas_name,
|
|
display_info->display,
|
|
GX_CANVAS_MANAGED | GX_CANVAS_VISIBLE,
|
|
display_info->x_resolution,
|
|
display_info->y_resolution,
|
|
display_info->canvas_memory,
|
|
display_info->canvas_memory_size);
|
|
|
|
/* Create the root window for this canvas */
|
|
|
|
gx_utility_rectangle_define(&size,
|
|
0, 0,
|
|
(GX_VALUE) (display_info->x_resolution - 1),
|
|
(GX_VALUE) (display_info->y_resolution - 1));
|
|
|
|
gx_window_root_create(display_info->root_window,
|
|
display_info->name,
|
|
display_info->canvas, GX_STYLE_NONE, 0, &size);
|
|
if (return_root)
|
|
{
|
|
*return_root = display_info->root_window;
|
|
}
|
|
return GX_SUCCESS;
|
|
}
|
|
#undef GUIX_STUDIO_GENERATED_FILE
|