mirror of
https://github.com/brl/mutter.git
synced 2024-11-29 19:40:43 -05:00
24 lines
388 B
C
24 lines
388 B
C
#ifndef _HAVE_CLTR_WINDOW_H
|
|
#define _HAVE_CLTR_WINDOW_H
|
|
|
|
#include "cltr.h"
|
|
|
|
typedef struct CltrWindow CltrWindow;
|
|
|
|
#define CLTR_WINDOW(w) ((CltrWindow*)(w))
|
|
|
|
CltrWidget*
|
|
cltr_window_new(int width, int height);
|
|
|
|
Window
|
|
cltr_window_xwin(CltrWindow *win);
|
|
|
|
void
|
|
cltr_window_paint(CltrWidget *widget);
|
|
|
|
void
|
|
cltr_window_add_widget(CltrWindow *win, CltrWidget *widget, int x, int y);
|
|
|
|
|
|
#endif
|