diffing dir...
Fri Oct 22 17:52:22 EDT 2010 Andy Stewart <laz...@gm...>
* New GTK+2.22 functions : textViewGetHadjustment, textViewGetHadjustment
Ignore-this: f94b311eb59142070fa28ec57dd4280b
{
hunk ./gtk/Graphics/UI/Gtk/Multiline/TextView.chs 146
+#if GTK_CHECK_VERSION(2,22,0)
+ textViewGetHadjustment,
+ textViewGetVadjustment,
+#endif
hunk ./gtk/Graphics/UI/Gtk/Multiline/TextView.chs 1020
+#if GTK_CHECK_VERSION(2,22,0)
+-- | Gets the horizontal-scrolling 'Adjustment'.
+--
+-- * Available since Gtk+ version 2.22
+--
+textViewGetHadjustment :: TextViewClass self => self -> IO Adjustment
+textViewGetHadjustment self =
+ makeNewObject mkAdjustment $
+ {#call gtk_text_view_get_hadjustment #}
+ (toTextView self)
+
+-- | Gets the vertical-scrolling 'Adjustment'.
+--
+-- * Available since Gtk+ version 2.22
+--
+textViewGetVadjustment :: TextViewClass self => self -> IO Adjustment
+textViewGetVadjustment self =
+ makeNewObject mkAdjustment $
+ {#call gtk_text_view_get_vadjustment #}
+ (toTextView self)
+#endif
+
}
|