123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794 |
- /*
- * File : widget.c
- * This file is part of RTGUI in RT-Thread RTOS
- * COPYRIGHT (C) 2006 - 2009, RT-Thread Development Team
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rt-thread.org/license/LICENSE
- *
- * Change Logs:
- * Date Author Notes
- * 2009-10-04 Bernard first version
- * 2010-06-26 Bernard add user_data to widget structure
- */
- #include <rtgui/dc_client.h>
- #include <rtgui/rtgui_app.h>
- #include <rtgui/widgets/widget.h>
- #include <rtgui/widgets/window.h>
- #include <rtgui/widgets/container.h>
- #include <rtgui/widgets/notebook.h>
- static void _rtgui_widget_constructor(rtgui_widget_t *widget)
- {
- if (!widget) return;
- /* set default flag */
- widget->flag = RTGUI_WIDGET_FLAG_DEFAULT;
- /* init list */
- rtgui_list_init(&(widget->sibling));
- /* init gc */
- widget->gc.foreground = default_foreground;
- widget->gc.background = default_background;
- widget->gc.font = rtgui_font_default();
- widget->gc.textstyle = RTGUI_TEXTSTYLE_NORMAL;
- widget->gc.textalign = RTGUI_ALIGN_LEFT | RTGUI_ALIGN_TOP;
- widget->align = RTGUI_ALIGN_LEFT | RTGUI_ALIGN_TOP;
- /* clear the garbage value of extent and clip */
- widget->extent.x1 = widget->extent.y1 = 0;
- widget->extent.x2 = widget->extent.y2 = 0;
- rtgui_region_init_with_extents(&widget->clip, &widget->extent);
- /* set parent and toplevel root */
- widget->parent = RT_NULL;
- widget->toplevel = RT_NULL;
- /* some common event handler */
- widget->on_focus_in = RT_NULL;
- widget->on_focus_out = RT_NULL;
- #ifndef RTGUI_USING_SMALL_SIZE
- widget->on_draw = RT_NULL;
- widget->on_mouseclick = RT_NULL;
- widget->on_key = RT_NULL;
- widget->on_size = RT_NULL;
- widget->on_command = RT_NULL;
- #endif
- /* set default event handler */
- rtgui_object_set_event_handler(RTGUI_OBJECT(widget), rtgui_widget_event_handler);
- /* init user data private to 0 */
- widget->user_data = 0;
- /* init clip information */
- rtgui_region_init(&(widget->clip));
- /* init hardware dc */
- rtgui_dc_client_init(widget);
- }
- /* Destroys the widget */
- static void _rtgui_widget_destructor(rtgui_widget_t *widget)
- {
- if (widget == RT_NULL) return;
- if (widget->parent != RT_NULL && RTGUI_IS_CONTAINER(widget->parent))
- {
- /* remove widget from parent's children list */
- rtgui_list_remove(&(RTGUI_CONTAINER(widget->parent)->children), &(widget->sibling));
- widget->parent = RT_NULL;
- }
- /* fini clip region */
- rtgui_region_fini(&(widget->clip));
- }
- DEFINE_CLASS_TYPE(widget, "widget",
- RTGUI_OBJECT_TYPE,
- _rtgui_widget_constructor,
- _rtgui_widget_destructor,
- sizeof(struct rtgui_widget));
- RTM_EXPORT(_rtgui_widget);
- rtgui_widget_t *rtgui_widget_create(rtgui_type_t *widget_type)
- {
- struct rtgui_widget *widget;
- widget = RTGUI_WIDGET(rtgui_object_create(widget_type));
- return widget;
- }
- RTM_EXPORT(rtgui_widget_create);
- void rtgui_widget_destroy(rtgui_widget_t *widget)
- {
- rtgui_object_destroy(RTGUI_OBJECT(widget));
- }
- RTM_EXPORT(rtgui_widget_destroy);
- void rtgui_widget_set_rect(rtgui_widget_t *widget, const rtgui_rect_t *rect)
- {
- int delta_x, delta_y;
- if (widget == RT_NULL || rect == RT_NULL) return;
- /* move to a logic position if it's a container widget */
- if (RTGUI_IS_CONTAINER(widget))
- {
- delta_x = rect->x1 - widget->extent.x1;
- delta_y = rect->y1 - widget->extent.y1;
- rtgui_widget_move_to_logic(widget, delta_x, delta_y);
- }
- /* update extent rectangle */
- widget->extent = *rect;
- if (RTGUI_IS_CONTAINER(widget))
- {
- /* re-do layout */
- rtgui_container_layout(RTGUI_CONTAINER(widget));
- }
- /* reset min width and height */
- widget->min_width = rtgui_rect_width(widget->extent);
- widget->min_height = rtgui_rect_height(widget->extent);
- /* it's not empty, fini it */
- if (rtgui_region_not_empty(&(widget->clip)))
- {
- rtgui_region_fini(&(widget->clip));
- }
- /* reset clip info */
- rtgui_region_init_with_extents(&(widget->clip), rect);
- if ((widget->parent != RT_NULL) && (widget->toplevel != RT_NULL))
- {
- /* update widget clip */
- rtgui_widget_update_clip(widget->parent);
- }
- }
- RTM_EXPORT(rtgui_widget_set_rect);
- void rtgui_widget_set_rectangle(rtgui_widget_t *widget, int x, int y, int width, int height)
- {
- rtgui_rect_t rect;
- rect.x1 = x;
- rect.y1 = y;
- rect.x2 = x + width;
- rect.y2 = y + height;
- rtgui_widget_set_rect(widget, &rect);
- }
- RTM_EXPORT(rtgui_widget_set_rectangle);
- void rtgui_widget_set_parent(rtgui_widget_t *widget, rtgui_widget_t *parent)
- {
- /* set parent and toplevel widget */
- widget->parent = parent;
- }
- RTM_EXPORT(rtgui_widget_set_parent);
- void rtgui_widget_get_extent(rtgui_widget_t *widget, rtgui_rect_t *rect)
- {
- RT_ASSERT(widget != RT_NULL);
- RT_ASSERT(rect != RT_NULL);
- *rect = widget->extent;
- }
- RTM_EXPORT(rtgui_widget_get_extent);
- void rtgui_widget_set_minsize(rtgui_widget_t *widget, int width, int height)
- {
- RT_ASSERT(widget != RT_NULL);
- widget->min_width = width;
- widget->min_height = height;
- }
- RTM_EXPORT(rtgui_widget_set_minsize);
- void rtgui_widget_set_minwidth(rtgui_widget_t *widget, int width)
- {
- RT_ASSERT(widget != RT_NULL);
- widget->min_width = width;
- }
- RTM_EXPORT(rtgui_widget_set_minwidth);
- void rtgui_widget_set_minheight(rtgui_widget_t *widget, int height)
- {
- RT_ASSERT(widget != RT_NULL);
- widget->min_height = height;
- }
- RTM_EXPORT(rtgui_widget_set_minheight);
- /*
- * This function moves widget and its children to a logic point
- */
- void rtgui_widget_move_to_logic(rtgui_widget_t *widget, int dx, int dy)
- {
- struct rtgui_list_node *node;
- rtgui_widget_t *child;
- if (widget == RT_NULL) return;
- rtgui_rect_moveto(&(widget->extent), dx, dy);
- /* move each child */
- if (RTGUI_IS_CONTAINER(widget))
- {
- rtgui_list_foreach(node, &(RTGUI_CONTAINER(widget)->children))
- {
- child = rtgui_list_entry(node, rtgui_widget_t, sibling);
- rtgui_widget_move_to_logic(child, dx, dy);
- }
- }
- }
- RTM_EXPORT(rtgui_widget_move_to_logic);
- void rtgui_widget_get_rect(rtgui_widget_t *widget, rtgui_rect_t *rect)
- {
- RT_ASSERT(widget != RT_NULL);
- if (rect != RT_NULL)
- {
- rect->x1 = rect->y1 = 0;
- rect->x2 = widget->extent.x2 - widget->extent.x1;
- rect->y2 = widget->extent.y2 - widget->extent.y1;
- }
- }
- RTM_EXPORT(rtgui_widget_get_rect);
- /**
- * set widget draw style
- */
- void rtgui_widget_set_border(rtgui_widget_t *widget, rt_uint32_t style)
- {
- RT_ASSERT(widget != RT_NULL);
- widget->border_style = style;
- switch (style)
- {
- case RTGUI_BORDER_NONE:
- widget->border = 0;
- break;
- case RTGUI_BORDER_SIMPLE:
- case RTGUI_BORDER_UP:
- case RTGUI_BORDER_DOWN:
- widget->border = 1;
- break;
- case RTGUI_BORDER_STATIC:
- case RTGUI_BORDER_RAISE:
- case RTGUI_BORDER_SUNKEN:
- case RTGUI_BORDER_BOX:
- case RTGUI_BORDER_EXTRA:
- widget->border = 2;
- break;
- default:
- widget->border = 2;
- break;
- }
- }
- RTM_EXPORT(rtgui_widget_set_border);
- void rtgui_widget_set_onfocus(rtgui_widget_t *widget, rtgui_event_handler_ptr handler)
- {
- RT_ASSERT(widget != RT_NULL);
- widget->on_focus_in = handler;
- }
- RTM_EXPORT(rtgui_widget_set_onfocus);
- void rtgui_widget_set_onunfocus(rtgui_widget_t *widget, rtgui_event_handler_ptr handler)
- {
- RT_ASSERT(widget != RT_NULL);
- widget->on_focus_out = handler;
- }
- RTM_EXPORT(rtgui_widget_set_onunfocus);
- #ifndef RTGUI_USING_SMALL_SIZE
- void rtgui_widget_set_ondraw(rtgui_widget_t *widget, rtgui_event_handler_ptr handler)
- {
- RT_ASSERT(widget != RT_NULL);
- widget->on_draw = handler;
- }
- RTM_EXPORT(rtgui_widget_set_ondraw);
- void rtgui_widget_set_onmouseclick(rtgui_widget_t *widget, rtgui_event_handler_ptr handler)
- {
- RT_ASSERT(widget != RT_NULL);
- widget->on_mouseclick = handler;
- }
- RTM_EXPORT(rtgui_widget_set_onmouseclick);
- void rtgui_widget_set_onkey(rtgui_widget_t *widget, rtgui_event_handler_ptr handler)
- {
- RT_ASSERT(widget != RT_NULL);
- widget->on_key = handler;
- }
- RTM_EXPORT(rtgui_widget_set_onkey);
- void rtgui_widget_set_onsize(rtgui_widget_t *widget, rtgui_event_handler_ptr handler)
- {
- RT_ASSERT(widget != RT_NULL);
- widget->on_size = handler;
- }
- RTM_EXPORT(rtgui_widget_set_onsize);
- void rtgui_widget_set_oncommand(rtgui_widget_t *widget, rtgui_event_handler_ptr handler)
- {
- RT_ASSERT(widget != RT_NULL);
- widget->on_command = handler;
- }
- RTM_EXPORT(rtgui_widget_set_oncommand);
- #endif
- /**
- * @brief Focuses the widget. The focused widget is the widget which can receive the keyboard events
- * @param widget a widget
- * @note The widget has to be attached to a toplevel widget, otherwise it will have no effect
- */
- void rtgui_widget_focus(rtgui_widget_t *widget)
- {
- struct rtgui_widget *old_focus;
- RT_ASSERT(widget != RT_NULL);
- if (!RTGUI_WIDGET_IS_FOCUSABLE(widget) || !RTGUI_WIDGET_IS_ENABLE(widget))
- return;
- old_focus = RTGUI_WIN(widget->toplevel)->focused_widget;
- if (old_focus == widget)
- return; /* it's the same focused widget */
- /* unfocused the old widget */
- if (old_focus != RT_NULL)
- rtgui_widget_unfocus(old_focus);
- /* set widget as focused */
- widget->flag |= RTGUI_WIDGET_FLAG_FOCUS;
- RTGUI_WIN(widget->toplevel)->focused_widget = widget;
- /* invoke on focus in call back */
- if (widget->on_focus_in != RT_NULL)
- widget->on_focus_in(RTGUI_OBJECT(widget), RT_NULL);
- }
- RTM_EXPORT(rtgui_widget_focus);
- /**
- * @brief Unfocused the widget
- * @param widget a widget
- */
- void rtgui_widget_unfocus(rtgui_widget_t *widget)
- {
- RT_ASSERT(widget != RT_NULL);
- if (!widget->toplevel || !RTGUI_WIDGET_IS_FOCUSED(widget))
- return;
- widget->flag &= ~RTGUI_WIDGET_FLAG_FOCUS;
- if (widget->on_focus_out != RT_NULL)
- widget->on_focus_out(RTGUI_OBJECT(widget), RT_NULL);
- RTGUI_WIN(widget->toplevel)->focused_widget = RT_NULL;
- /* Ergodic constituent widget, make child loss of focus */
- if (RTGUI_IS_CONTAINER(widget))
- {
- rtgui_list_t *node;
- rtgui_list_foreach(node, &(RTGUI_CONTAINER(widget)->children))
- {
- rtgui_widget_t *child = rtgui_list_entry(node, rtgui_widget_t, sibling);
- if (RTGUI_WIDGET_IS_HIDE(child)) continue;
- rtgui_widget_unfocus(child);
- }
- }
- }
- RTM_EXPORT(rtgui_widget_unfocus);
- void rtgui_widget_point_to_device(rtgui_widget_t *widget, rtgui_point_t *point)
- {
- RT_ASSERT(widget != RT_NULL);
- if (point != RT_NULL)
- {
- point->x += widget->extent.x1;
- point->y += widget->extent.y1;
- }
- }
- RTM_EXPORT(rtgui_widget_point_to_device);
- void rtgui_widget_rect_to_device(rtgui_widget_t *widget, rtgui_rect_t *rect)
- {
- RT_ASSERT(widget != RT_NULL);
- if (rect != RT_NULL)
- {
- rect->x1 += widget->extent.x1;
- rect->x2 += widget->extent.x1;
- rect->y1 += widget->extent.y1;
- rect->y2 += widget->extent.y1;
- }
- }
- RTM_EXPORT(rtgui_widget_rect_to_device);
- void rtgui_widget_point_to_logic(rtgui_widget_t *widget, rtgui_point_t *point)
- {
- RT_ASSERT(widget != RT_NULL);
- if (point != RT_NULL)
- {
- point->x -= widget->extent.x1;
- point->y -= widget->extent.y1;
- }
- }
- RTM_EXPORT(rtgui_widget_point_to_logic);
- void rtgui_widget_rect_to_logic(rtgui_widget_t *widget, rtgui_rect_t *rect)
- {
- RT_ASSERT(widget != RT_NULL);
- if (rect != RT_NULL)
- {
- rect->x1 -= widget->extent.x1;
- rect->x2 -= widget->extent.x1;
- rect->y1 -= widget->extent.y1;
- rect->y2 -= widget->extent.y1;
- }
- }
- RTM_EXPORT(rtgui_widget_rect_to_logic);
- struct rtgui_win *rtgui_widget_get_toplevel(rtgui_widget_t *widget)
- {
- rtgui_widget_t *r;
- RT_ASSERT(widget != RT_NULL);
- if (widget->toplevel)
- return widget->toplevel;
- rt_kprintf("widget->toplevel not properly set\n");
- r = widget;
- /* get the toplevel widget */
- while (r->parent != RT_NULL)
- r = r->parent;
- /* set toplevel */
- widget->toplevel = RTGUI_WIN(r);
- return RTGUI_WIN(r);
- }
- RTM_EXPORT(rtgui_widget_get_toplevel);
- rt_bool_t rtgui_widget_onupdate_toplvl(struct rtgui_object *object, struct rtgui_event *event)
- {
- struct rtgui_widget *widget;
- struct rtgui_event_update_toplvl *eup;
- RT_ASSERT(object);
- RT_ASSERT(event);
- widget = RTGUI_WIDGET(object);
- eup = (struct rtgui_event_update_toplvl *)event;
- widget->toplevel = eup->toplvl;
- return RT_FALSE;
- }
- RTM_EXPORT(rtgui_widget_onupdate_toplvl);
- rt_bool_t rtgui_widget_event_handler(struct rtgui_object *object, rtgui_event_t *event)
- {
- RTGUI_WIDGET_EVENT_HANDLER_PREPARE;
- switch (event->type)
- {
- case RTGUI_EVENT_SHOW:
- return rtgui_widget_onshow(object, event);
- case RTGUI_EVENT_HIDE:
- return rtgui_widget_onhide(object, event);
- case RTGUI_EVENT_UPDATE_TOPLVL:
- return rtgui_widget_onupdate_toplvl(object, event);
- #ifndef RTGUI_USING_SMALL_SIZE
- case RTGUI_EVENT_PAINT:
- if (widget->on_draw != RT_NULL)
- return widget->on_draw(RTGUI_OBJECT(widget), event);
- break;
- case RTGUI_EVENT_KBD:
- if (widget->on_key != RT_NULL)
- return widget->on_key(RTGUI_OBJECT(widget), event);
- break;
- case RTGUI_EVENT_MOUSE_BUTTON:
- if (widget->on_mouseclick != RT_NULL)
- return widget->on_mouseclick(RTGUI_OBJECT(widget), event);
- break;
- case RTGUI_EVENT_COMMAND:
- if (widget->on_command != RT_NULL)
- return widget->on_command(RTGUI_OBJECT(widget), event);
- break;
- case RTGUI_EVENT_RESIZE:
- if (widget->on_size != RT_NULL)
- return widget->on_size(RTGUI_OBJECT(widget), event);
- break;
- #endif
- default:
- return rtgui_object_event_handler(object, event);
- }
- return RT_FALSE;
- }
- RTM_EXPORT(rtgui_widget_event_handler);
- /*
- * This function updates the clip info of widget
- */
- void rtgui_widget_update_clip(rtgui_widget_t *widget)
- {
- struct rtgui_list_node *node;
- rtgui_widget_t *parent;
- /* no widget or widget is hide, no update clip */
- if (widget == RT_NULL || RTGUI_WIDGET_IS_HIDE(widget)) return;
- parent = widget->parent;
- /* if there is no parent, there is no clip to update. */
- if (parent == RT_NULL)
- {
- return;
- }
- /* reset clip to extent */
- rtgui_region_reset(&(widget->clip), &(widget->extent));
- /* limit widget extent in parent extent */
- rtgui_region_intersect(&(widget->clip), &(widget->clip), &(parent->clip));
- /* get the no transparent parent */
- while (parent != RT_NULL && parent->flag & RTGUI_WIDGET_FLAG_TRANSPARENT)
- {
- parent = parent->parent;
- }
- if (parent != RT_NULL)
- {
- /* subtract widget clip in parent clip */
- if (!(widget->flag & RTGUI_WIDGET_FLAG_TRANSPARENT) && RTGUI_IS_CONTAINER(parent))
- {
- rtgui_region_subtract_rect(&(parent->clip), &(parent->clip),
- &(widget->extent));
- }
- }
- /*
- * note: since the layout widget introduction, the sibling widget will not
- * intersect.
- */
- /* if it's a view object, update the clip info of children */
- if (RTGUI_IS_CONTAINER(widget))
- {
- rtgui_widget_t *child;
- rtgui_list_foreach(node, &(RTGUI_CONTAINER(widget)->children))
- {
- child = rtgui_list_entry(node, rtgui_widget_t, sibling);
- rtgui_widget_update_clip(child);
- }
- }
- else if (RTGUI_IS_NOTEBOOK(widget))
- {
- rtgui_widget_update_clip(rtgui_notebook_get_current(RTGUI_NOTEBOOK(widget)));
- }
- }
- RTM_EXPORT(rtgui_widget_update_clip);
- void rtgui_widget_show(struct rtgui_widget *widget)
- {
- struct rtgui_event_show eshow;
- RT_ASSERT(widget != RT_NULL);
- if (!RTGUI_WIDGET_IS_HIDE(widget))
- return;
- RTGUI_EVENT_SHOW_INIT(&eshow);
- if (RTGUI_OBJECT(widget)->event_handler != RT_NULL)
- {
- RTGUI_OBJECT(widget)->event_handler(
- RTGUI_OBJECT(widget),
- &eshow);
- }
- }
- RTM_EXPORT(rtgui_widget_show);
- rt_bool_t rtgui_widget_onshow(struct rtgui_object *object, struct rtgui_event *event)
- {
- struct rtgui_widget *widget = RTGUI_WIDGET(object);
- if (!RTGUI_WIDGET_IS_HIDE(object))
- return RT_FALSE;
- RTGUI_WIDGET_UNHIDE(widget);
- return RT_FALSE;
- }
- RTM_EXPORT(rtgui_widget_onshow);
- rt_bool_t rtgui_widget_onhide(struct rtgui_object *object, struct rtgui_event *event)
- {
- struct rtgui_widget *widget = RTGUI_WIDGET(object);
- if (RTGUI_WIDGET_IS_HIDE(object))
- return RT_FALSE;
- /* hide this widget */
- RTGUI_WIDGET_HIDE(widget);
- if (widget->parent != RT_NULL)
- {
- rtgui_widget_t *parent;
- parent = widget->parent;
- /* get the no transparent parent */
- while (parent != RT_NULL && parent->flag & RTGUI_WIDGET_FLAG_TRANSPARENT)
- {
- parent = parent->parent;
- }
- /* union widget rect */
- rtgui_region_union_rect(&(parent->clip), &(parent->clip), &(widget->extent));
- }
- return RT_FALSE;
- }
- RTM_EXPORT(rtgui_widget_onhide);
- void rtgui_widget_hide(struct rtgui_widget *widget)
- {
- struct rtgui_event_hide ehide;
- RT_ASSERT(widget != RT_NULL);
- if (RTGUI_WIDGET_IS_HIDE(widget))
- return;
- RTGUI_EVENT_HIDE_INIT(&ehide);
- if (RTGUI_OBJECT(widget)->event_handler != RT_NULL)
- {
- RTGUI_OBJECT(widget)->event_handler(
- RTGUI_OBJECT(widget),
- &ehide);
- }
- }
- RTM_EXPORT(rtgui_widget_hide);
- rtgui_color_t rtgui_widget_get_parent_foreground(rtgui_widget_t *widget)
- {
- rtgui_widget_t *parent;
- /* get parent widget */
- parent = widget->parent;
- while (parent->parent != RT_NULL && (RTGUI_WIDGET_FLAG(parent) & RTGUI_WIDGET_FLAG_TRANSPARENT))
- parent = parent->parent;
- /* get parent's color */
- if (parent != RT_NULL)
- return RTGUI_WIDGET_FOREGROUND(parent);
- return RTGUI_WIDGET_FOREGROUND(widget);
- }
- RTM_EXPORT(rtgui_widget_get_parent_foreground);
- rtgui_color_t rtgui_widget_get_parent_background(rtgui_widget_t *widget)
- {
- rtgui_widget_t *parent;
- /* get parent widget */
- parent = widget->parent;
- while (parent->parent != RT_NULL && (RTGUI_WIDGET_FLAG(parent) & RTGUI_WIDGET_FLAG_TRANSPARENT))
- parent = parent->parent;
- /* get parent's color */
- if (parent != RT_NULL)
- return RTGUI_WIDGET_BACKGROUND(parent);
- return RTGUI_WIDGET_BACKGROUND(widget);
- }
- RTM_EXPORT(rtgui_widget_get_parent_background);
- void rtgui_widget_update(rtgui_widget_t *widget)
- {
- struct rtgui_event_paint paint;
- RTGUI_EVENT_PAINT_INIT(&paint);
- paint.wid = RT_NULL;
- RT_ASSERT(widget != RT_NULL);
- if (RTGUI_WIDGET_IS_HIDE(widget))
- return;
- if (RTGUI_OBJECT(widget)->event_handler != RT_NULL)
- {
- RTGUI_OBJECT(widget)->event_handler(
- RTGUI_OBJECT(widget),
- &paint.parent);
- }
- }
- RTM_EXPORT(rtgui_widget_update);
- rtgui_widget_t *rtgui_widget_get_next_sibling(rtgui_widget_t *widget)
- {
- rtgui_widget_t *sibling = RT_NULL;
- if (widget->sibling.next != RT_NULL)
- {
- sibling = rtgui_list_entry(widget->sibling.next, rtgui_widget_t, sibling);
- }
- return sibling;
- }
- RTM_EXPORT(rtgui_widget_get_next_sibling);
- rtgui_widget_t *rtgui_widget_get_prev_sibling(rtgui_widget_t *widget)
- {
- struct rtgui_list_node *node;
- rtgui_widget_t *sibling, *parent;
- node = RT_NULL;
- sibling = RT_NULL;
- parent = widget->parent;
- if (parent != RT_NULL)
- {
- rtgui_list_foreach(node, &(RTGUI_CONTAINER(parent)->children))
- {
- if (node->next == &(widget->sibling))
- break;
- }
- }
- if (node != RT_NULL)
- sibling = rtgui_list_entry(node, rtgui_widget_t, sibling);
- return sibling;
- }
- RTM_EXPORT(rtgui_widget_get_prev_sibling);
- #ifdef RTGUI_WIDGET_DEBUG
- #include <rtgui/widgets/label.h>
- #include <rtgui/widgets/button.h>
- void rtgui_widget_dump(rtgui_widget_t *widget)
- {
- struct rtgui_object *obj;
- obj = RTGUI_OBJECT(widget);
- rt_kprintf("widget type: %s ", obj->type->name);
- if (RTGUI_IS_WIN(widget) == RT_TRUE)
- rt_kprintf(":%s ", RTGUI_WIN(widget)->title);
- else if ((RTGUI_IS_LABEL(widget) == RT_TRUE) || (RTGUI_IS_BUTTON(widget) == RT_TRUE))
- rt_kprintf(":%s ", RTGUI_LABEL(widget)->text);
- rt_kprintf("extent(%d, %d) - (%d, %d)\n", widget->extent.x1,
- widget->extent.y1, widget->extent.x2, widget->extent.y2);
- // rtgui_region_dump(&(widget->clip));
- }
- #endif
|