| /GUIX-v6.2.1/common/src/ |
| D | gx_checkbox_draw.c | 81 VOID _gx_checkbox_draw(GX_CHECKBOX *checkbox) in _gx_checkbox_draw() argument 83 GX_WIDGET *widget = (GX_WIDGET *)checkbox; in _gx_checkbox_draw() 97 text_color = checkbox -> gx_text_button_selected_text_color; in _gx_checkbox_draw() 98 pixelmap_id = checkbox -> gx_checkbox_checked_pixelmap_id; in _gx_checkbox_draw() 103 text_color = checkbox -> gx_text_button_normal_text_color; in _gx_checkbox_draw() 104 pixelmap_id = checkbox -> gx_checkbox_unchecked_pixelmap_id; in _gx_checkbox_draw() 109 fill_color = checkbox -> gx_widget_disabled_fill_color; in _gx_checkbox_draw() 110 text_color = checkbox -> gx_text_button_disabled_text_color; in _gx_checkbox_draw() 113 pixelmap_id = checkbox -> gx_checkbox_checked_disabled_pixelmap_id; in _gx_checkbox_draw() 117 pixelmap_id = checkbox -> gx_checkbox_unchecked_disabled_pixelmap_id; in _gx_checkbox_draw() [all …]
|
| D | gx_checkbox_create.c | 79 UINT _gx_checkbox_create(GX_CHECKBOX *checkbox, GX_CONST GX_CHAR *name, GX_WIDGET *parent, in _gx_checkbox_create() argument 87 …_gx_text_button_create((GX_TEXT_BUTTON *)checkbox, name, GX_NULL, text_id, style, checkbox_id, siz… in _gx_checkbox_create() 90 checkbox -> gx_widget_type = GX_TYPE_CHECKBOX; in _gx_checkbox_create() 91 checkbox -> gx_widget_draw_function = (VOID (*)(GX_WIDGET *))_gx_checkbox_draw; in _gx_checkbox_create() 92 … checkbox -> gx_button_select_handler = (VOID (*)(GX_WIDGET *))(void (*)(void))_gx_checkbox_select; in _gx_checkbox_create() 93 …checkbox -> gx_widget_event_process_function = (UINT (*)(GX_WIDGET *, GX_EVENT *))_gx_checkbox_eve… in _gx_checkbox_create() 94 checkbox -> gx_checkbox_checked_pixelmap_id = GX_PIXELMAP_CHECKBOX_ON_ID; in _gx_checkbox_create() 95 checkbox -> gx_checkbox_unchecked_pixelmap_id = GX_PIXELMAP_CHECKBOX_OFF_ID; in _gx_checkbox_create() 100 _gx_widget_link(parent, (GX_WIDGET *)checkbox); in _gx_checkbox_create()
|
| D | gx_checkbox_pixelmap_set.c | 83 UINT _gx_checkbox_pixelmap_set(GX_CHECKBOX *checkbox, in _gx_checkbox_pixelmap_set() argument 91 checkbox -> gx_checkbox_unchecked_pixelmap_id = unchecked_id; in _gx_checkbox_pixelmap_set() 95 checkbox -> gx_checkbox_checked_pixelmap_id = checked_id; in _gx_checkbox_pixelmap_set() 99 checkbox -> gx_checkbox_unchecked_disabled_pixelmap_id = unchecked_disabled_id; in _gx_checkbox_pixelmap_set() 103 checkbox -> gx_checkbox_checked_disabled_pixelmap_id = checked_disabled_id; in _gx_checkbox_pixelmap_set() 106 if (checkbox -> gx_widget_status & GX_STATUS_VISIBLE) in _gx_checkbox_pixelmap_set() 109 _gx_system_dirty_mark((GX_WIDGET *)checkbox); in _gx_checkbox_pixelmap_set()
|
| D | gxe_checkbox_select.c | 73 UINT _gxe_checkbox_select(GX_CHECKBOX *checkbox) in _gxe_checkbox_select() argument 82 if ((checkbox == GX_NULL) || (checkbox -> gx_widget_parent == GX_NULL)) in _gxe_checkbox_select() 87 parent = checkbox -> gx_widget_parent; in _gxe_checkbox_select() 91 (checkbox -> gx_widget_type == 0)) in _gxe_checkbox_select() 97 status = _gx_checkbox_select(checkbox); in _gxe_checkbox_select()
|
| D | gx_checkbox_select.c | 74 UINT _gx_checkbox_select(GX_CHECKBOX *checkbox) in _gx_checkbox_select() argument 76 GX_WIDGET *widget = (GX_WIDGET *)checkbox; in _gx_checkbox_select() 78 if (checkbox -> gx_widget_style & GX_STYLE_ENABLED) in _gx_checkbox_select() 80 if (!(checkbox -> gx_widget_style & GX_STYLE_BUTTON_PUSHED)) in _gx_checkbox_select() 82 checkbox -> gx_widget_style |= GX_STYLE_BUTTON_PUSHED; in _gx_checkbox_select() 87 checkbox -> gx_widget_style &= ~GX_STYLE_BUTTON_PUSHED; in _gx_checkbox_select()
|
| D | gxe_checkbox_event_process.c | 75 UINT _gxe_checkbox_event_process(GX_CHECKBOX *checkbox, GX_EVENT *event_ptr) in _gxe_checkbox_event_process() argument 84 … if ((checkbox == GX_NULL) || (checkbox -> gx_widget_parent == GX_NULL) || (event_ptr == GX_NULL)) in _gxe_checkbox_event_process() 89 parent = checkbox -> gx_widget_parent; in _gxe_checkbox_event_process() 93 (checkbox -> gx_widget_type == 0)) in _gxe_checkbox_event_process() 99 status = _gx_checkbox_event_process(checkbox, event_ptr); in _gxe_checkbox_event_process()
|
| D | gx_checkbox_event_process.c | 76 UINT _gx_checkbox_event_process(GX_CHECKBOX *checkbox, GX_EVENT *event_ptr) in _gx_checkbox_event_process() argument 88 checkbox -> gx_button_select_handler((GX_WIDGET *)checkbox); in _gx_checkbox_event_process() 91 status = _gx_widget_event_to_parent((GX_WIDGET *)checkbox, event_ptr); in _gx_checkbox_event_process() 97 status = _gx_text_button_event_process((GX_TEXT_BUTTON *)checkbox, event_ptr); in _gx_checkbox_event_process()
|
| D | gxe_checkbox_pixelmap_set.c | 87 UINT _gxe_checkbox_pixelmap_set(GX_CHECKBOX *checkbox, in _gxe_checkbox_pixelmap_set() argument 96 if (checkbox == GX_NULL) in _gxe_checkbox_pixelmap_set() 102 if (checkbox -> gx_widget_type == 0) in _gxe_checkbox_pixelmap_set() 107 status = _gx_checkbox_pixelmap_set(checkbox, unchecked_id, checked_id, in _gxe_checkbox_pixelmap_set()
|
| D | gxe_checkbox_create.c | 81 UINT _gxe_checkbox_create(GX_CHECKBOX *checkbox, GX_CONST GX_CHAR *name, GX_WIDGET *parent, in _gxe_checkbox_create() argument 91 if ((checkbox == GX_NULL) || (size == GX_NULL)) in _gxe_checkbox_create() 102 if (checkbox -> gx_widget_type != 0) in _gxe_checkbox_create() 108 status = _gx_checkbox_create(checkbox, name, parent, text_id, style, checkbox_id, size); in _gxe_checkbox_create()
|
| /GUIX-v6.2.1/test/guix_test/regression_test/tests/ |
| D | validation_guix_all_widgets_checkbox_draw.c | 84 GX_CHECKBOX *checkbox; in control_thread_entry() local 90 gx_widget_find(pButtonScreen, ID_CHECKBOX, 0, &checkbox); in control_thread_entry() 96 gx_checkbox_pixelmap_set(checkbox, GX_NULL, GX_NULL, GX_NULL, GX_NULL); in control_thread_entry() 100 gx_text_button_text_set_ext((GX_TEXT_BUTTON *)checkbox, &string); in control_thread_entry() 104 … gx_checkbox_pixelmap_set(checkbox, GX_PIXELMAP_ID_CHECKBOX_OFF, GX_PIXELMAP_ID_CHECKBOX_ON, in control_thread_entry() 112 gx_widget_style_remove((GX_WIDGET *)checkbox, test->remove_style); in control_thread_entry() 113 gx_widget_style_add((GX_WIDGET *)checkbox, test->add_style); in control_thread_entry() 117 gx_system_dirty_mark((GX_WIDGET *)checkbox); in control_thread_entry() 123 gx_text_button_text_set((GX_TEXT_BUTTON *)checkbox, GX_NULL); in control_thread_entry()
|
| D | validation_guix_system_private_string_delete_no_output.c | 50 GX_CHECKBOX *checkbox = &button_screen.button_screen_checkbox; in control_thread_entry() local 92 gx_text_button_text_set_ext((GX_TEXT_BUTTON *)checkbox, GX_NULL); in control_thread_entry() 93 gx_widget_style_add(checkbox, GX_STYLE_TEXT_COPY); in control_thread_entry() 94 gx_widget_delete(checkbox); in control_thread_entry()
|
| D | validation_guix_checkbox_24xrgb.c | 73 GX_CHECKBOX *checkbox; in control_thread_entry() local 75 gx_widget_find(pButtonScreen, ID_CHECKBOX, 0, &checkbox); in control_thread_entry() 76 …gx_checkbox_pixelmap_set(checkbox, GX_PIXELMAP_ID_CHECKBOX_OFF, GX_PIXELMAP_ID_CHECKBOX_ON, GX_PIX… in control_thread_entry() 102 if(!(checkbox -> gx_widget_style & GX_STYLE_BUTTON_PUSHED)) in control_thread_entry()
|
| D | validation_guix_widgets_with_private_string.c | 69 static GX_CHECKBOX *checkbox = 0; variable 92 gx_widget_find(pScrollWheelScreen, ID_CHECKBOX, GX_SEARCH_DEPTH_INFINITE, &checkbox); in control_thread_entry() 105 {(GX_WIDGET *)checkbox, "Delete checkbox"}, in control_thread_entry()
|
| D | validation_guix_error_checking_api_coverage_no_output.c | 84 GX_CHECKBOX checkbox; in control_thread_entry() local 795 memset(&checkbox, 0, sizeof(GX_CHECKBOX)); in control_thread_entry() 797 status = gx_checkbox_create(&checkbox, "checkbox", 0, 0, 0, 0, 0); // size is NULL in control_thread_entry() 800 …status = _gxe_checkbox_create(&checkbox, "checkbox", 0, 0, 0, 0, &size, 0); // should return GX_IN… in control_thread_entry() 803 checkbox.gx_widget_type = GX_TYPE_CHECKBOX; in control_thread_entry() 804 …status = gx_checkbox_create(&checkbox, "checkbox", 0, 0, 0, 0, &size); // should return GX_ALREADY… in control_thread_entry() 807 memset(&checkbox, 0, sizeof(GX_CHECKBOX)); in control_thread_entry() 808 status = gx_checkbox_create(&checkbox, "checkbox", 0, 0, 0, 0, &size); // parent is NULL in control_thread_entry() 811 gx_checkbox_event_process(&checkbox, 0); // should return GX_PTR_ERROR in control_thread_entry() 812 checkbox.gx_widget_parent = &parent; in control_thread_entry() [all …]
|
| /GUIX-v6.2.1/common/inc/ |
| D | gx_button.h | 65 UINT _gx_checkbox_create(GX_CHECKBOX *checkbox, GX_CONST GX_CHAR *name, GX_WIDGET *parent, 68 VOID _gx_checkbox_draw(GX_CHECKBOX *checkbox); 69 UINT _gx_checkbox_event_process(GX_CHECKBOX *checkbox, GX_EVENT *event_ptr); 72 UINT _gx_checkbox_select(GX_CHECKBOX *checkbox); 144 UINT _gxe_checkbox_create(GX_CHECKBOX *checkbox, GX_CONST GX_CHAR *name, GX_WIDGET *parent, 147 UINT _gxe_checkbox_event_process(GX_CHECKBOX *checkbox, GX_EVENT *event_ptr); 148 UINT _gxe_checkbox_pixelmap_set(GX_CHECKBOX *checkbox, 153 UINT _gxe_checkbox_select(GX_CHECKBOX *checkbox);
|
| D | gx_api.h | 3750 UINT _gx_checkbox_create(GX_CHECKBOX *checkbox, 3755 VOID _gx_checkbox_draw(GX_CHECKBOX *checkbox); 3756 UINT _gx_checkbox_event_process(GX_CHECKBOX *checkbox, GX_EVENT *event_ptr); 3759 UINT _gx_checkbox_select(GX_CHECKBOX *checkbox); 5233 UINT _gxe_checkbox_create(GX_CHECKBOX *checkbox, GX_CONST GX_CHAR *name, 5237 VOID _gx_checkbox_draw(GX_CHECKBOX *checkbox); 5238 UINT _gxe_checkbox_event_process(GX_CHECKBOX *checkbox, GX_EVENT *event_ptr); 5241 UINT _gxe_checkbox_select(GX_CHECKBOX *checkbox);
|
| /GUIX-v6.2.1/test/example_internal/progress_bar/ |
| D | progress_bar.c | 52 GX_CHECKBOX checkbox; variable 374 …gx_checkbox_create(&checkbox, NULL, &demo_root_window, SHOW_TEXT, GX_STYLE_TEXT_LEFT|GX_STYLE_ENAB… in start_guix() 375 checkbox.gx_widget_normal_fill_color = GX_COLOR_ID_WHITE; in start_guix()
|
| /GUIX-v6.2.1/guix_studio/ |
| D | studiox.rc | 1951 ID_ADD_CHECKBOX "Add a new checkbox to the selected parent\nAdd Button"
|