]> saetta.ns0.it Git - zakform/cgi/commitdiff
Moved from GHashTable to GPtrArray in ZakForCgiFormElementRadio
authorAndrea Zagli <azagli@libero.it>
Sun, 7 May 2017 09:44:06 +0000 (11:44 +0200)
committerAndrea Zagli <azagli@libero.it>
Sun, 7 May 2017 09:44:06 +0000 (11:44 +0200)
to preserve order.

Some adjustments.

src/formelement.c
src/formelementradio.c

index ef619580e6b8cffa096cd69e259bebd58e02ec6f..9a2717cfebd1ce8473741202ff598217176dc9bf 100644 (file)
@@ -189,7 +189,7 @@ gchar
                        g_string_append (str, " has-error");
                }
 
-       str = g_string_new ("<div class=\"form-group\">\n");
+       g_string_append (str, "\">\n");
 
        g_string_append (str, zak_form_cgi_form_element_render_label (element));
 
@@ -206,7 +206,7 @@ gchar
                                }
                        else
                                {
-                                       g_hash_table_replace (priv->ht_attrs, "class", g_strdup ("form-control"));
+                                       g_hash_table_insert (priv->ht_attrs, "class", g_strdup ("form-control"));
                                }
 
                        if (!zak_form_element_get_editable (ZAK_FORM_ELEMENT (element)))
index 8b6035dd04e48ea57659a6e00ad157016279de00..ed7df41ef1f37a00941d371a92d790c879208dbc 100644 (file)
@@ -48,11 +48,17 @@ typedef struct _ZakFormCgiFormElementRadioPrivate ZakFormCgiFormElementRadioPriv
 struct _ZakFormCgiFormElementRadioPrivate
        {
                gboolean in_line;
-               GHashTable *ht_options;
+               GPtrArray *ar_options;
        };
 
 G_DEFINE_TYPE (ZakFormCgiFormElementRadio, zak_form_cgi_form_element_radio, ZAK_FORM_CGI_TYPE_FORM_ELEMENT)
 
+typedef struct
+       {
+               gchar *value;
+               gchar *content;
+       } Option;
+
 static void
 zak_form_cgi_form_element_radio_class_init (ZakFormCgiFormElementRadioClass *klass)
 {
@@ -75,7 +81,7 @@ zak_form_cgi_form_element_radio_init (ZakFormCgiFormElementRadio *zak_form_cgi_f
        ZakFormCgiFormElementRadioPrivate *priv = ZAK_FORM_CGI_FORM_ELEMENT_RADIO_GET_PRIVATE (zak_form_cgi_form_element_radio);
 
        priv->in_line = TRUE;
-       priv->ht_options = g_hash_table_new (g_str_hash, g_str_equal);
+       priv->ar_options = g_ptr_array_new ();
 }
 
 /**
@@ -188,9 +194,12 @@ zak_form_cgi_form_element_radio_xml_parsing (ZakFormElement *element, xmlNodePtr
                                                {
                                                        if (xmlStrcmp (xnode->name, (const xmlChar *)"option") == 0)
                                                                {
-                                                                       g_hash_table_insert (priv->ht_options,
-                                                                                            (gpointer)xmlGetProp (xnode, "value"),
-                                                                                            (gpointer)xmlGetProp (xnode, "content"));
+                                                                       Option *opt = g_new0 (Option, 1);
+
+                                                                       opt->value = (gchar *)xmlGetProp (xnode, (const xmlChar *)"value");
+                                                                       opt->content = (gchar *)xmlGetProp (xnode, (const xmlChar *)"content");
+
+                                                                       g_ptr_array_add (priv->ar_options, (gpointer)opt);
                                                                }
 
                                                        xnode = xnode->next;
@@ -198,7 +207,7 @@ zak_form_cgi_form_element_radio_xml_parsing (ZakFormElement *element, xmlNodePtr
                                }
                        else
                                {
-                                       g_hash_table_replace (ht_attrs, g_strdup (cur->name), (gchar *)xmlNodeGetContent (cur));
+                                       g_hash_table_replace (ht_attrs, g_strdup ((gchar *)cur->name), (gchar *)xmlNodeGetContent (cur));
                                }
 
                        cur = cur->next;
@@ -225,9 +234,7 @@ static gchar
        gchar *ret_value;
        GString *ret;
 
-       GHashTableIter iter;
-       gpointer key;
-       gpointer value;
+       guint i;
 
        GHashTable *ht_attrs;
        GHashTable *ht_label_attrs;
@@ -261,27 +268,28 @@ static gchar
 
        new_id = 0;
 
-       g_hash_table_iter_init (&iter, priv->ht_options);
-       while (g_hash_table_iter_next (&iter, &key, &value))
+       attr_class = g_hash_table_lookup (ht_attrs, "class");
+       if (attr_class != NULL)
                {
+                       g_hash_table_insert (ht_attrs, "class", g_strjoinv ("", g_strsplit (attr_class, "form-control", -1)));
+                       g_free (attr_class);
+               }
+
+       for (i = 0; i < priv->ar_options->len; i++)
+               {
+                       Option *opt = (Option *)g_ptr_array_index (priv->ar_options, i);
+
                        ht_attrs_option = g_hash_table_new (g_str_hash, g_str_equal);
                        zak_utils_ghashtable_copy (ht_attrs, ht_attrs_option);
 
-                       g_hash_table_insert (ht_attrs_option, (gpointer)"value", (gpointer)g_strdup (key));
+                       g_hash_table_insert (ht_attrs_option, (gpointer)"value", (gpointer)g_strdup (opt->value));
 
                        if (element_value != NULL
-                           && g_strcmp0 (element_value, key) == 0)
+                           && g_strcmp0 (element_value, opt->value) == 0)
                                {
                                        g_hash_table_insert (ht_attrs_option, (gpointer)"checked", (gpointer)"checked");
                                }
 
-                       attr_class = g_hash_table_lookup (ht_attrs_option, "class");
-                       if (attr_class != NULL)
-                               {
-                                       g_hash_table_insert (ht_attrs_option, "class", g_strjoinv ("", g_strsplit (attr_class, "form-control", -1)));
-                                       g_free (attr_class);
-                               }
-
                        g_string_append_printf (ret, "\n%s<label%s>\n%s %s</label>%s",
                                                priv->in_line ? "" : "<div class=\"radio\">\n",
                                                priv->in_line ? " class=\"radio-inline\"" : "",
@@ -290,7 +298,7 @@ static gchar
                                                                                     zak_form_cgi_form_element_get_id (element),
                                                                                     ++new_id),
                                                                    ht_attrs_option),
-                                               value,
+                                               opt->content,
                                                priv->in_line ? "" : "\n</div>");
 
                        g_hash_table_unref (ht_attrs_option);