Author: dsilvers
Date: Wed Aug 9 16:02:27 2006
New Revision: 2823
URL:
http://svn.semichrome.net?rev=2823&view=rev
Log:
Add code comments
Modified:
branches/dsilvers/gtk-bitmap-pretile/gtk/gtk_bitmap.c
Modified: branches/dsilvers/gtk-bitmap-pretile/gtk/gtk_bitmap.c
URL:
http://svn.semichrome.net/branches/dsilvers/gtk-bitmap-pretile/gtk/gtk_bi...
==============================================================================
--- branches/dsilvers/gtk-bitmap-pretile/gtk/gtk_bitmap.c (original)
+++ branches/dsilvers/gtk-bitmap-pretile/gtk/gtk_bitmap.c Wed Aug 9 16:02:27 2006
@@ -229,6 +229,11 @@
return bitmap->primary;
}
+/**
+ * The X-pretiled image associated with this bitmap object.
+ *
+ * \param bitmap a bitmap, as returned by bitmap_create()
+ */
GdkPixbuf *
gtk_bitmap_get_pretile_x(struct bitmap* bitmap)
{
@@ -243,6 +248,11 @@
}
+/**
+ * The Y-pretiled image associated with this bitmap object.
+ *
+ * \param bitmap a bitmap, as returned by bitmap_create()
+ */
GdkPixbuf *
gtk_bitmap_get_pretile_y(struct bitmap* bitmap)
{
@@ -256,6 +266,11 @@
return bitmap->pretile_y;
}
+/**
+ * The XY-pretiled image associated with this bitmap object.
+ *
+ * \param bitmap a bitmap, as returned by bitmap_create()
+ */
GdkPixbuf *
gtk_bitmap_get_pretile_xy(struct bitmap* bitmap)
{