mutter/clutter/cltr-label.h

19 lines
318 B
C
Raw Normal View History

2005-04-27 18:17:45 -04:00
#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);
2005-05-27 10:02:39 -04:00
void
cltr_label_set_text(CltrLabel *label, char *text);
2005-04-27 18:17:45 -04:00
#endif