diff options
-rw-r--r-- | src/html.c | 12 | ||||
-rw-r--r-- | src/html.h | 3 |
2 files changed, 15 insertions, 0 deletions
@@ -576,6 +576,18 @@ mq_html_fieldset(gchar *first_child, ...) } gchar * +mq_html_th(GDestroyNotify destroy, gchar *text) +{ + gchar *e; + e = g_strconcat("<tr>\n<th colspan=\"2\">", text, "</th>\n</tr>\n", + NULL); + if (destroy) { + destroy(text); + } + return e; +} + +gchar * mq_html_input_text(const gchar *name, const gchar *label, const gchar *value) { return g_strdup_printf( @@ -61,6 +61,9 @@ gchar * mq_html_fieldset(gchar *first_child, ...); gchar * +mq_html_th(GDestroyNotify destroy, gchar *text); + +gchar * mq_html_input_text(const gchar *name, const gchar *label, const gchar *value); gchar * |