]> Pileus Git - ~andy/gtk/commitdiff
shorthand: Implement border parsing with new parse func
authorBenjamin Otte <otte@redhat.com>
Mon, 2 Jan 2012 01:33:56 +0000 (02:33 +0100)
committerBenjamin Otte <otte@redhat.com>
Mon, 9 Jan 2012 17:37:54 +0000 (18:37 +0100)
gtk/gtkcssshorthandpropertyimpl.c

index d303643018da8de153e8517af566d1611f9ca832..7d627cb7a10de69cece9475f7c5382abcc190635 100644 (file)
 
 /*** PARSING ***/
 
+static gboolean
+parse_border (GtkCssShorthandProperty *shorthand,
+              GValue                  *values,
+              GtkCssParser            *parser,
+              GFile                   *base)
+{
+  GValue temp = G_VALUE_INIT;
+  GtkBorder *border;
+
+  g_value_init (&temp, GTK_TYPE_BORDER);
+  if (!_gtk_css_style_parse_value (&temp, parser, base))
+    {
+      g_value_unset (&temp);
+      return FALSE;
+    }
+
+  border = g_value_get_boxed (&temp);
+
+  g_value_init (&values[0], G_TYPE_INT);
+  g_value_init (&values[1], G_TYPE_INT);
+  g_value_init (&values[2], G_TYPE_INT);
+  g_value_init (&values[3], G_TYPE_INT);
+  g_value_set_int (&values[0], border->top);
+  g_value_set_int (&values[1], border->right);
+  g_value_set_int (&values[2], border->bottom);
+  g_value_set_int (&values[3], border->left);
+
+  g_value_unset (&temp);
+
+  return TRUE;
+}
+                    
+/*** OLD PARSING ***/
+
 static gboolean
 border_image_value_parse (GtkCssParser *parser,
                           GFile *base,
@@ -648,6 +682,7 @@ _gtk_css_shorthand_property_register (const char                        *name,
 void
 _gtk_css_shorthand_property_init_properties (void)
 {
+  /* The order is important here, be careful when changing it */
   const char *font_subproperties[] = { "font-family", "font-style", "font-variant", "font-weight", "font-size", NULL };
   const char *margin_subproperties[] = { "margin-top", "margin-right", "margin-bottom", "margin-left", NULL };
   const char *padding_subproperties[] = { "padding-top", "padding-right", "padding-bottom", "padding-left", NULL };
@@ -667,21 +702,21 @@ _gtk_css_shorthand_property_init_properties (void)
   _gtk_css_shorthand_property_register   ("margin",
                                           GTK_TYPE_BORDER,
                                           margin_subproperties,
-                                          NULL,
+                                          parse_border,
                                           unpack_margin,
                                           pack_margin,
                                           NULL);
   _gtk_css_shorthand_property_register   ("padding",
                                           GTK_TYPE_BORDER,
                                           padding_subproperties,
-                                          NULL,
+                                          parse_border,
                                           unpack_padding,
                                           pack_padding,
                                           NULL);
   _gtk_css_shorthand_property_register   ("border-width",
                                           GTK_TYPE_BORDER,
                                           border_width_subproperties,
-                                          NULL,
+                                          parse_border,
                                           unpack_border_width,
                                           pack_border_width,
                                           NULL);