]> Pileus Git - ~andy/gtk/commitdiff
Add docs.
authorMatthias Clasen <maclas@gmx.de>
Mon, 19 May 2003 00:10:22 +0000 (00:10 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Mon, 19 May 2003 00:10:22 +0000 (00:10 +0000)
2003-05-19  Matthias Clasen  <maclas@gmx.de>

* gtk/gtkwidget.c (gtk_widget_class_install_style_property,
gtk_widget_class_install_style_property_parser): Add docs.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkwidget.c

index 701852ed718ba3441f11062bfcf09f3cf531e8ca..57c80807dc4ac4e722e6295c00343170406fd62a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-05-19  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkwidget.c (gtk_widget_class_install_style_property, 
+       gtk_widget_class_install_style_property_parser): Add docs. 
+
 2003-05-17  Matthias Clasen  <maclas@gmx.de>
 
        * tests/prop-editor.c: Add navigation for object properties, so
index 701852ed718ba3441f11062bfcf09f3cf531e8ca..57c80807dc4ac4e722e6295c00343170406fd62a 100644 (file)
@@ -1,3 +1,8 @@
+2003-05-19  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkwidget.c (gtk_widget_class_install_style_property, 
+       gtk_widget_class_install_style_property_parser): Add docs. 
+
 2003-05-17  Matthias Clasen  <maclas@gmx.de>
 
        * tests/prop-editor.c: Add navigation for object properties, so
index 701852ed718ba3441f11062bfcf09f3cf531e8ca..57c80807dc4ac4e722e6295c00343170406fd62a 100644 (file)
@@ -1,3 +1,8 @@
+2003-05-19  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkwidget.c (gtk_widget_class_install_style_property, 
+       gtk_widget_class_install_style_property_parser): Add docs. 
+
 2003-05-17  Matthias Clasen  <maclas@gmx.de>
 
        * tests/prop-editor.c: Add navigation for object properties, so
index 701852ed718ba3441f11062bfcf09f3cf531e8ca..57c80807dc4ac4e722e6295c00343170406fd62a 100644 (file)
@@ -1,3 +1,8 @@
+2003-05-19  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkwidget.c (gtk_widget_class_install_style_property, 
+       gtk_widget_class_install_style_property_parser): Add docs. 
+
 2003-05-17  Matthias Clasen  <maclas@gmx.de>
 
        * tests/prop-editor.c: Add navigation for object properties, so
index 701852ed718ba3441f11062bfcf09f3cf531e8ca..57c80807dc4ac4e722e6295c00343170406fd62a 100644 (file)
@@ -1,3 +1,8 @@
+2003-05-19  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkwidget.c (gtk_widget_class_install_style_property, 
+       gtk_widget_class_install_style_property_parser): Add docs. 
+
 2003-05-17  Matthias Clasen  <maclas@gmx.de>
 
        * tests/prop-editor.c: Add navigation for object properties, so
index 77e046e2ae86e49085328edfcdb13234e8272d13..caefe40ed8ee29897e9454de875153b669f6b738 100644 (file)
@@ -6384,6 +6384,14 @@ gtk_widget_unref (GtkWidget *widget)
 /* style properties
  */
 
+/**
+ * gtk_widget_class_install_style_property_parser:
+ * @class: a #GtkWidgetClass
+ * @pspec: the #GParamSpec for the style property
+ * @parser: the parser for the style property
+ * 
+ * Installs a style property on a widget class. 
+ **/
 void
 gtk_widget_class_install_style_property_parser (GtkWidgetClass     *class,
                                                GParamSpec         *pspec,
@@ -6408,6 +6416,14 @@ gtk_widget_class_install_style_property_parser (GtkWidgetClass     *class,
   g_param_spec_pool_insert (style_property_spec_pool, pspec, G_OBJECT_CLASS_TYPE (class));
 }
 
+/**
+ * gtk_widget_class_install_style_property:
+ * @class: a #GtkWidgetClass
+ * @pspec: the #GParamSpec for the property
+ * 
+ * Installs a style property on a widget class. The parser for the
+ * style property is determined by the value type of @pspec.
+ **/
 void
 gtk_widget_class_install_style_property (GtkWidgetClass *class,
                                         GParamSpec     *pspec)