2.99.5:

2011-02-15  Murray Cumming  <murrayc@murrayc.com>

	CellView, EntryCompletion: Wrap new API.

	* gtk/src/cellview.hg: Derive from Orientable and add set/get_draw_sensitive(),
	set/get_fit_model() and the new properties.
	* gtk/src/entrycompletion: Derive from Buildable and add the cell-area 
	property.

2011-02-14  Murray Cumming  <murrayc@murrayc.com>

	ButtonBox, Separator, Scale, Scrollbar: Add public constructors.

	* gtk/src/buttonbox.hg:
	* gtk/src/separator.hg: Constructors: Added optional orientation parameters 
	to match the new gtk_button_box_new() and gtk_separator_new() functions.
	* gtk/src/scale.[hg|ccg]: 
	* gtk/src/scrollbar.[hg|ccg]: Added (Adjustment, Orientation) constructors to 
	match the new gtk_scale_new() and gtk_scrollbar_new() functions.
	Make sure that the default constructors are now public, instead of protected,
	as these are no longer just abstract base classes. That change was made in 
	GTK+.

2011-02-14  Murray Cumming  <murrayc@murrayc.com>

	Paned: Add an optional orientation parameter, matching the new C API.

	* gtk/src/paned.hg: Change the constructor to match the new gtk_paned_new() 
	function.

2011-02-14  Murray Cumming  <murrayc@murrayc.com>

	Wrapped two new properties.

	* gtk/src/iconview.hg: Added cell_area property.
	* gtk/src/image.hg: Added set_fallback property.
	These do not seem to have corresponding functions.

2011-02-14  Murray Cumming  <murrayc@murrayc.com>

	Widget: Added should_draw_window() and transform_cairo_context_to_window().

	* gtk/src/widget.[hg|ccg]: Added Widget::transform_cairo_context_to_window(), 
	wrapping gtk_cairo_transform_to_window().
	Added Widget::should_draw_window(), wrapping gtk_cairo_should_draw_window().
	These are both protected because they are for use in Gtk::Container 
	implementation.
	* tools/m4/convert_gtk.m4: Added a Cairo::Context conversion.

2011-02-11  Murray Cumming  <murrayc@murrayc.com>

	Make sure that we do not wrap the deprecated CellRenderer::get_size() vfunc.

	* gtk/src/gtk_vfuncs.defs: Comment out the definition of get_size().

2011-02-03  Kjell Ahlstedt  <kjell.ahlstedt@bredband.net>

  CellArea, CellRenderer, Widget: Modify and add some vfuncs.

  * gtk/src/gtk_vfuncs.defs:
  * gtk/src/cellarea.[hg|ccg]:
  * gtk/src/cellrenderer.[hg|ccg]: Add vfuncs get_request_mode,
 	get_preferred_[width|height_for_width|height|width_for_height].
 	* gtk/src/widget.[hg|ccg]: Change int* to int& in 
 	get_preferred_[width|height_for_width|height|width_for_height]_vfunc.
  Bug #639073, comment 19.