mirror of
https://github.com/brl/mutter.git
synced 2024-11-26 10:00:45 -05:00
37 lines
546 B
C
37 lines
546 B
C
#ifndef _HAVE_CLTR_WIDGET_H
|
|
#define _HAVE_CLTR_WIDGET_H
|
|
|
|
typedef struct CltrWidget CltrWidget;
|
|
|
|
#include "cltr.h"
|
|
|
|
#define CLTR_WIDGET(w) ((CltrWidget*)(w))
|
|
|
|
|
|
CltrWidget*
|
|
cltr_widget_new(void);
|
|
|
|
void
|
|
cltr_widget_show(CltrWidget *widget);
|
|
|
|
void
|
|
cltr_widget_paint(CltrWidget *widget);
|
|
|
|
|
|
gboolean
|
|
cltr_widget_handle_xevent(CltrWidget *widget, XEvent *xev);
|
|
|
|
|
|
|
|
void
|
|
cltr_widget_show_all(CltrWidget *widget);
|
|
|
|
void
|
|
cltr_widget_queue_paint(CltrWidget *widget);
|
|
|
|
void
|
|
cltr_widget_add_child(CltrWidget *widget, CltrWidget *child, int x, int y);
|
|
|
|
|
|
#endif
|