summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/html.c12
-rw-r--r--src/html.h3
2 files changed, 15 insertions, 0 deletions
diff --git a/src/html.c b/src/html.c
index f6f3223..147cdf9 100644
--- a/src/html.c
+++ b/src/html.c
@@ -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(
diff --git a/src/html.h b/src/html.h
index becbba9..f35b49b 100644
--- a/src/html.h
+++ b/src/html.h
@@ -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 *