summaryrefslogtreecommitdiff
path: root/gtk/gtkscrollable.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2010-10-22 18:46:33 +0200
committerMatthias Clasen <mclasen@redhat.com>2010-10-22 19:21:17 +0200
commit0d9ebb501df60cf1803858efcd1c79542588abd8 (patch)
treee2347bda6bad31a926399b9342a1680045ec8546 /gtk/gtkscrollable.h
parentce5a29bc384542839a5f12061499c8ec706b1c34 (diff)
downloadgtk+-0d9ebb501df60cf1803858efcd1c79542588abd8.tar.gz
Move min-display-width/height to GtkScrolledWindow
It is just too annoying to have to implement these properties in every scrollable. Instead, we now have ::min-content-height/width in GtkScrolledWindow. We also add GtkScrollablePolicy to determine how to size the scrollable content.
Diffstat (limited to 'gtk/gtkscrollable.h')
-rw-r--r--gtk/gtkscrollable.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/gtk/gtkscrollable.h b/gtk/gtkscrollable.h
index ce881a009e..fdb1c11273 100644
--- a/gtk/gtkscrollable.h
+++ b/gtk/gtkscrollable.h
@@ -49,12 +49,6 @@ void gtk_scrollable_set_hadjustment (GtkScrollable *scrollable,
GtkAdjustment *gtk_scrollable_get_vadjustment (GtkScrollable *scrollable);
void gtk_scrollable_set_vadjustment (GtkScrollable *scrollable,
GtkAdjustment *vadjustment);
-gint gtk_scrollable_get_min_display_width (GtkScrollable *scrollable);
-void gtk_scrollable_set_min_display_width (GtkScrollable *scrollable,
- gint width);
-gint gtk_scrollable_get_min_display_height (GtkScrollable *scrollable);
-void gtk_scrollable_set_min_display_height (GtkScrollable *scrollable,
- gint height);
G_END_DECLS