/*
- * Copyright (C) 2015-2017 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2015-2019 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
typedef struct _ZakFormCgiFormElementSelectPrivate ZakFormCgiFormElementSelectPrivate;
struct _ZakFormCgiFormElementSelectPrivate
{
- GHashTable *ht_options;
+ GPtrArray *ar_options;
};
G_DEFINE_TYPE (ZakFormCgiFormElementSelect, zak_form_cgi_form_element_select, ZAK_FORM_CGI_TYPE_FORM_ELEMENT)
{
ZakFormCgiFormElementSelectPrivate *priv = ZAK_FORM_CGI_FORM_ELEMENT_SELECT_GET_PRIVATE (zak_form_cgi_form_element_select);
- priv->ht_options = g_hash_table_new (g_str_hash, g_str_equal);
+ priv->ar_options = g_ptr_array_new ();
}
/**
*/
ZakFormCgiFormElement
*zak_form_cgi_form_element_select_new_attrs (const gchar *id,
- ...)
+ ...)
{
va_list ap;
ht_attrs = zak_cgi_commons_valist_to_ghashtable (ap);
if (ht_attrs == NULL)
{
- g_hash_table_new (g_str_hash, g_str_equal);
+ ht_attrs = g_hash_table_new (g_str_hash, g_str_equal);
}
g_hash_table_replace (ht_attrs, "zak-cgi-content", g_strdup (content));
+ g_hash_table_replace (ht_attrs, "value", g_strdup (value));
- g_hash_table_replace (priv->ht_options, g_strdup (value), ht_attrs);
+ g_ptr_array_add (priv->ar_options, ht_attrs);
}
void
{
gchar *ret;
- GHashTableIter iter;
- gpointer key;
- gpointer value;
+ guint i;
+
GString *options;
GHashTable *ht_options_attrs;
/* list options */
options = g_string_new ("\n");
- g_hash_table_iter_init (&iter, priv->ht_options);
- while (g_hash_table_iter_next (&iter, &key, &value))
+
+ for (i = 0; i < priv->ar_options->len; i++)
{
- ht_options_attrs = (GHashTable *)value;
- g_hash_table_replace (ht_options_attrs, "value", g_strdup ((gchar *)key));
+ ht_options_attrs = (GHashTable *)g_ptr_array_index (priv->ar_options, i);
if (gval != NULL)
{
- if (g_strcmp0 (gval, (gchar *)key) == 0)
+ if (g_strcmp0 (gval, (gchar *)g_hash_table_lookup (ht_options_attrs, "value")) == 0)
{
g_hash_table_replace (ht_options_attrs, "selected", g_strdup ("selected"));
}