1 /* This is a small demo of the high-performance GUIX graphics framework. */
2 
3 #include <stdio.h>
4 #include "tx_api.h"
5 #include "gx_api.h"
6 #include "gx_validation_utility.h"
7 
8 TEST_PARAM test_parameter = {
9     "guix_icon_24xrgb", /* Test name */
10     196, 411, 278, 458  /* Define the coordinates of the capture area.
11                          In this test, we only need to capture the icon
12                          drawing area.  */
13 };
14 
15 static VOID      control_thread_entry(ULONG);
main(int argc,char ** argv)16 int main(int argc, char ** argv)
17 {
18     /* Parse the command line argument. */
19     gx_validation_setup(argc, argv);
20 
21     /* Start ThreadX system */
22     tx_kernel_enter();
23     return(0);
24 }
25 
tx_application_define(void * first_unused_memory)26 VOID tx_application_define(void *first_unused_memory)
27 {
28 
29     /* Create a dedicated thread to perform various operations
30        on the icon drawing example. These operations simulate
31        user input. */
32     gx_validation_control_thread_create(control_thread_entry);
33 
34     /* Termiante the test if it runs for more than 100 ticks */
35     /* This function is not implemented yet. */
36     gx_validation_watchdog_create(100);
37 
38     /* Call the actual icon routine. */
39     gx_validation_application_define(first_unused_memory);
40 
41 }
42 
43 
44 /* Replace the default graphics driver with the validation driver. */
45 #ifdef win32_graphics_driver_setup_24xrgb
46 #undef win32_graphics_driver_setup_24xrgb
47 #endif
48 #define win32_graphics_driver_setup_24xrgb  gx_validation_graphics_driver_setup_24xrgb
49 
50 
51 #ifdef WIN32
52 #undef WIN32
53 #endif
54 
55 #include "gx_validation_wrapper.h"
56 
57 #include "demo_guix_all_widgets.c"
58 
59 static int pic_id[] = {GX_PIXELMAP_ID_SAVE_ICON, GX_PIXELMAP_ID_FISH, GX_PIXELMAP_ID_I_MEDICATIONSGREEN_LG, GX_PIXELMAP_ID_I_MEDICATIONSRED_LG};
60 
61 char test_comment[256];
62 
control_thread_entry(ULONG input)63 static VOID control_thread_entry(ULONG input)
64 {
65 int pic_index;
66 int frame_id = 1;
67 GX_ICON *icon;
68 
69     gx_widget_find(pButtonScreen, ID_ICON, 0, &icon);
70 
71 
72     for(pic_index = 0; pic_index < (INT)(sizeof(pic_id) / sizeof(int)); pic_index++)
73     {
74         gx_icon_pixelmap_set(icon, pic_id[pic_index], GX_PIXELMAP_ID_SAVE_ICON);
75 
76         gx_validation_set_frame_id(frame_id);
77 
78         sprintf(test_comment, "change pixelmap ");
79 
80         gx_validation_set_frame_comment(test_comment);
81 
82         /* Mark the window "dirty" */
83         gx_system_dirty_mark(pButtonScreen);
84 
85         /* Force a screen refresh. */
86         gx_validation_screen_refresh();
87 
88         /* Increment frame ID */
89         frame_id ++;
90     }
91 
92     /* Signal the end of the test case.  Verify the output. */
93     gx_validation_end();
94 
95     exit(0);
96 }
97