mirror of
https://github.com/brl/mutter.git
synced 2024-11-26 10:00:45 -05:00
83 lines
1.3 KiB
C
83 lines
1.3 KiB
C
#include "cltr-widget.h"
|
|
#include "cltr-private.h"
|
|
|
|
CltrWidget*
|
|
cltr_widget_new(void)
|
|
{
|
|
CltrWidget *w = NULL;
|
|
|
|
w = g_malloc0(sizeof(CltrWidget));
|
|
|
|
return w;
|
|
}
|
|
|
|
void
|
|
cltr_widget_show(CltrWidget *widget)
|
|
{
|
|
if (widget->show)
|
|
{
|
|
widget->visible = TRUE;
|
|
widget->show(widget);
|
|
}
|
|
}
|
|
|
|
void
|
|
cltr_widget_show_all(CltrWidget *widget)
|
|
{
|
|
GList *widget_item = widget->children;;
|
|
|
|
if (widget_item)
|
|
{
|
|
do
|
|
{
|
|
CltrWidget *child = CLTR_WIDGET(widget_item->data);
|
|
|
|
cltr_widget_show(child);
|
|
}
|
|
while ((widget_item = g_list_next(widget_item)) != NULL);
|
|
}
|
|
|
|
cltr_widget_show(widget);
|
|
}
|
|
|
|
void
|
|
cltr_widget_add_child(CltrWidget *widget, CltrWidget *child, int x, int y)
|
|
{
|
|
widget->children = g_list_append(widget->children, child);
|
|
|
|
child->parent = widget;
|
|
child->x = x;
|
|
child->y = y;
|
|
}
|
|
|
|
|
|
void
|
|
cltr_widget_hide(CltrWidget *widget)
|
|
{
|
|
widget->visible = FALSE;
|
|
}
|
|
|
|
void
|
|
cltr_widget_paint(CltrWidget *widget)
|
|
{
|
|
if (widget->paint && widget->visible)
|
|
widget->paint(widget);
|
|
}
|
|
|
|
void
|
|
cltr_widget_queue_paint(CltrWidget *widget)
|
|
{
|
|
ClutterMainContext *ctx = CLTR_CONTEXT();
|
|
|
|
g_queue_push_head (ctx->internal_event_q, (gpointer)widget);
|
|
}
|
|
|
|
gboolean
|
|
cltr_widget_handle_xevent(CltrWidget *widget, XEvent *xev)
|
|
{
|
|
if (widget && widget->xevent_handler)
|
|
return widget->xevent_handler(widget, xev);
|
|
|
|
return FALSE;
|
|
}
|