1 /* Monolith label class.
2 * - by Richard W.M. Jones <rich@annexia.org>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the Free
16 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 * $Id: ml_label.c,v 1.2 2002/10/30 21:03:03 rich Exp $
23 #include <pthr_iolib.h>
25 #include "ml_widget.h"
29 static void repaint (void *, ml_session, const char *, io_handle);
30 static struct ml_widget_property properties[];
32 struct ml_widget_operations label_ops =
35 properties: properties,
40 struct ml_widget_operations *ops;
41 pool pool; /* Pool for allocations. */
42 const char *text; /* HTML printed for the label. */
45 static struct ml_widget_property properties[] =
48 offset: ml_offsetof (struct ml_label, text),
49 type: ML_PROP_STRING },
54 new_ml_label (pool pool, const char *text)
56 ml_label w = pmalloc (pool, sizeof *w);
66 repaint (void *vw, ml_session session, const char *windowid, io_handle io)
68 ml_label w = (ml_label) vw;
70 if (w->text) io_fputs (w->text, io);