mirror of
https://github.com/brl/mutter.git
synced 2024-11-28 19:10:43 -05:00
17 lines
262 B
C
17 lines
262 B
C
|
#ifndef _HAVE_CLTR_LABEL_H
|
||
|
#define _HAVE_CLTR_LABEL_H
|
||
|
|
||
|
#include "cltr.h"
|
||
|
|
||
|
typedef struct CltrLabel CltrLabel;
|
||
|
|
||
|
#define CLTR_LABEL(w) ((CltrLabel*)(w))
|
||
|
|
||
|
CltrWidget*
|
||
|
cltr_label_new(const char *text,
|
||
|
CltrFont *font,
|
||
|
PixbufPixel *col);
|
||
|
|
||
|
|
||
|
#endif
|