mirror of
https://github.com/azure-rtos/guix.git
synced 2025-01-28 07:03:11 +08:00
0e6fdbf5ab
Add GUIX regression tests.
220 lines
7.3 KiB
C
220 lines
7.3 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.2.0.1 */
|
|
/* Date (dd.mm.yyyy): 31.10.2022 Time (hh:mm): 14:11 */
|
|
/*******************************************************************************/
|
|
|
|
|
|
#ifndef _SHAPES_SPECIFICATIONS_H_
|
|
#define _SHAPES_SPECIFICATIONS_H_
|
|
|
|
#include "gx_api.h"
|
|
|
|
/* Determine if C++ compiler is being used, if so use standard C. */
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Define widget ids */
|
|
|
|
#define ID_CIRCLE_SCREEN 1
|
|
#define ID_GRAPHICS_WINDOW 2
|
|
#define ID_ANTI_ALIASED 3
|
|
#define ID_SOLID_FILL 4
|
|
#define ID_PIXELMAP_FILL 5
|
|
#define ID_RADIUS_SLIDER 6
|
|
#define ID_RADIUS_PROMPT 7
|
|
#define ID_CIRCLE 8
|
|
#define ID_ARC 9
|
|
#define ID_PIE 10
|
|
#define ID_POLYGON 11
|
|
#define ID_ELLIPSE 12
|
|
#define ID_RECTANGLE 13
|
|
#define ID_BRUSH_WIDTH 14
|
|
#define ID_BRUSH_WIDTH_PROMPT 15
|
|
#define ID_ROUND_END 16
|
|
|
|
|
|
/* Define animation ids */
|
|
|
|
#define GX_NEXT_ANIMATION_ID 1
|
|
|
|
|
|
/* Define user event ids */
|
|
|
|
#define GX_NEXT_USER_EVENT_ID GX_FIRST_USER_EVENT
|
|
|
|
|
|
/* Declare properties structures for each utilized widget type */
|
|
|
|
typedef struct GX_STUDIO_WIDGET_STRUCT
|
|
{
|
|
GX_CHAR *widget_name;
|
|
USHORT widget_type;
|
|
USHORT widget_id;
|
|
#if defined(GX_WIDGET_USER_DATA)
|
|
INT user_data;
|
|
#endif
|
|
ULONG style;
|
|
ULONG status;
|
|
ULONG control_block_size;
|
|
GX_RESOURCE_ID normal_fill_color_id;
|
|
GX_RESOURCE_ID selected_fill_color_id;
|
|
GX_RESOURCE_ID disabled_fill_color_id;
|
|
UINT (*create_function) (GX_CONST struct GX_STUDIO_WIDGET_STRUCT *, GX_WIDGET *, GX_WIDGET *);
|
|
void (*draw_function) (GX_WIDGET *);
|
|
UINT (*event_function) (GX_WIDGET *, GX_EVENT *);
|
|
GX_RECTANGLE size;
|
|
GX_CONST struct GX_STUDIO_WIDGET_STRUCT *next_widget;
|
|
GX_CONST struct GX_STUDIO_WIDGET_STRUCT *child_widget;
|
|
ULONG control_block_offset;
|
|
GX_CONST void *properties;
|
|
} GX_STUDIO_WIDGET;
|
|
|
|
typedef struct
|
|
{
|
|
GX_CONST GX_STUDIO_WIDGET *widget_information;
|
|
GX_WIDGET *widget;
|
|
} GX_STUDIO_WIDGET_ENTRY;
|
|
|
|
typedef struct
|
|
{
|
|
GX_RESOURCE_ID string_id;
|
|
GX_RESOURCE_ID font_id;
|
|
GX_RESOURCE_ID normal_text_color_id;
|
|
GX_RESOURCE_ID selected_text_color_id;
|
|
GX_RESOURCE_ID disabled_text_color_id;
|
|
GX_RESOURCE_ID unchecked_pixelmap_id;
|
|
GX_RESOURCE_ID checked_pixelmap_id;
|
|
GX_RESOURCE_ID unchecked_disabled_pixelmap_id;
|
|
GX_RESOURCE_ID checked_disabled_pixelmap_id;
|
|
} GX_CHECKBOX_PROPERTIES;
|
|
|
|
typedef struct
|
|
{
|
|
GX_RESOURCE_ID string_id;
|
|
GX_RESOURCE_ID font_id;
|
|
GX_RESOURCE_ID normal_text_color_id;
|
|
GX_RESOURCE_ID selected_text_color_id;
|
|
GX_RESOURCE_ID disabled_text_color_id;
|
|
GX_RESOURCE_ID off_pixelmap_id;
|
|
GX_RESOURCE_ID on_pixelmap_id;
|
|
GX_RESOURCE_ID off_disabled_pixelmap_id;
|
|
GX_RESOURCE_ID on_disabled_pixelmap_id;
|
|
} GX_RADIO_BUTTON_PROPERTIES;
|
|
|
|
typedef struct
|
|
{
|
|
int tickmark_count;
|
|
int minval;
|
|
int maxval;
|
|
int current_val;
|
|
int increment;
|
|
GX_VALUE min_travel;
|
|
GX_VALUE max_travel;
|
|
GX_VALUE needle_width;
|
|
GX_VALUE needle_height;
|
|
GX_VALUE needle_inset;
|
|
GX_VALUE needle_hotspot;
|
|
} GX_SLIDER_PROPERTIES;
|
|
|
|
typedef struct
|
|
{
|
|
GX_RESOURCE_ID string_id;
|
|
GX_RESOURCE_ID font_id;
|
|
GX_RESOURCE_ID normal_text_color_id;
|
|
GX_RESOURCE_ID selected_text_color_id;
|
|
GX_RESOURCE_ID disabled_text_color_id;
|
|
} GX_PROMPT_PROPERTIES;
|
|
|
|
typedef struct
|
|
{
|
|
GX_RESOURCE_ID wallpaper_id;
|
|
} GX_WINDOW_PROPERTIES;
|
|
|
|
|
|
/* Declare top-level control blocks */
|
|
|
|
typedef struct MAIN_WINDOW_CONTROL_BLOCK_STRUCT
|
|
{
|
|
GX_WINDOW_MEMBERS_DECLARE
|
|
GX_WINDOW main_window_graphics_window;
|
|
GX_CHECKBOX main_window_checkbox_anti_alised;
|
|
GX_PROMPT main_window_prompt_4;
|
|
GX_CHECKBOX main_window_checkbox_fill;
|
|
GX_CHECKBOX main_window_checkbox_pixelmap_fill;
|
|
GX_PROMPT main_window_prompt_7;
|
|
GX_SLIDER main_window_radius_slider;
|
|
GX_PROMPT main_window_radius_prompt;
|
|
GX_WINDOW main_window_window_1;
|
|
GX_RADIO_BUTTON main_window_radio_button_3;
|
|
GX_RADIO_BUTTON main_window_radio_button_4;
|
|
GX_RADIO_BUTTON main_window_radio_button_5;
|
|
GX_RADIO_BUTTON main_window_radio_button_6;
|
|
GX_RADIO_BUTTON main_window_radio_button_1;
|
|
GX_RADIO_BUTTON main_window_radio_button_2;
|
|
GX_SLIDER main_window_brush_width_slider;
|
|
GX_PROMPT main_window_brush_width_prompt;
|
|
GX_PROMPT main_window_prompt_9;
|
|
GX_CHECKBOX main_window_checkbox_round_end;
|
|
} MAIN_WINDOW_CONTROL_BLOCK;
|
|
|
|
|
|
/* extern statically defined control blocks */
|
|
|
|
#ifndef GUIX_STUDIO_GENERATED_FILE
|
|
extern MAIN_WINDOW_CONTROL_BLOCK main_window;
|
|
#endif
|
|
|
|
/* Declare event process functions, draw functions, and callback functions */
|
|
|
|
UINT main_event_handler(GX_WINDOW *widget, GX_EVENT *event_ptr);
|
|
VOID graphics_draw(GX_WINDOW *widget);
|
|
|
|
/* Declare the GX_STUDIO_DISPLAY_INFO structure */
|
|
|
|
|
|
typedef struct GX_STUDIO_DISPLAY_INFO_STRUCT
|
|
{
|
|
GX_CONST GX_CHAR *name;
|
|
GX_CONST GX_CHAR *canvas_name;
|
|
GX_CONST GX_THEME **theme_table;
|
|
GX_CONST GX_STRING **language_table;
|
|
USHORT theme_table_size;
|
|
USHORT language_table_size;
|
|
UINT string_table_size;
|
|
UINT x_resolution;
|
|
UINT y_resolution;
|
|
GX_DISPLAY *display;
|
|
GX_CANVAS *canvas;
|
|
GX_WINDOW_ROOT *root_window;
|
|
GX_COLOR *canvas_memory;
|
|
ULONG canvas_memory_size;
|
|
USHORT rotation_angle;
|
|
} GX_STUDIO_DISPLAY_INFO;
|
|
|
|
|
|
/* Declare Studio-generated functions for creating top-level widgets */
|
|
|
|
UINT gx_studio_checkbox_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent);
|
|
UINT gx_studio_radio_button_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent);
|
|
UINT gx_studio_slider_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent);
|
|
UINT gx_studio_prompt_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent);
|
|
UINT gx_studio_window_create(GX_CONST GX_STUDIO_WIDGET *info, GX_WIDGET *control_block, GX_WIDGET *parent);
|
|
GX_WIDGET *gx_studio_widget_create(GX_BYTE *storage, GX_CONST GX_STUDIO_WIDGET *definition, GX_WIDGET *parent);
|
|
UINT gx_studio_named_widget_create(char *name, GX_WIDGET *parent, GX_WIDGET **new_widget);
|
|
UINT gx_studio_display_configure(USHORT display, UINT (*driver)(GX_DISPLAY *), GX_UBYTE language, USHORT theme, GX_WINDOW_ROOT **return_root);
|
|
|
|
/* Determine if a C++ compiler is being used. If so, complete the standard
|
|
C conditional started above. */
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* sentry */
|