2 * ROX-Filer, filer for the ROX desktop project
3 * By Thomas Leonard, <tal197@users.sourceforge.net>.
11 typedef struct _WrappedLabelClass WrappedLabelClass
;
13 struct _WrappedLabelClass
{
14 GtkWidgetClass parent
;
17 struct _WrappedLabel
{
20 gint width
, text_width
;
24 #define TYPE_WRAPPED_LABEL wrapped_label_get_type()
25 #define WRAPPED_LABEL(obj) (GTK_CHECK_CAST((obj), TYPE_WRAPPED_LABEL, WrappedLabel))
27 GType
wrapped_label_get_type(void);
28 GtkWidget
*wrapped_label_new(const char *text
, gint width
);
29 void wrapped_label_set_text(WrappedLabel
*wl
, const char *text
);
31 #endif /* __WRAPPED_H__ */