Mon Dec  8 20:07:13 PST 1997  Geoffrey T. Dairiki <dairiki@alumni.caltech.edu>

Patch: gtk-dairiki-971208-0.patch

Here's a patch for gtklabel.[ch] which implements support for filled
labels (very much like the text displayed by GtkTooltips.)

This patch is on snapshot gtk+-cvs-971208.

Synopsis:

  widget = gtk_label_new ("Paragraphs should take the form of rather long strings.  Use double spaces where you want a inter-sentence space, single spaces where you want regular inter-word spaces.\nUse newlines to separate paragraphs.");

  gtk_label_set_justify (widget, GTK_JUSTIFY_FILL);
  
You can explicitly specify the paragraph width via:
  
  gtk_widget_set_usize (widget, width, -1);

Or, if you don't, a width will be picked for you using an arcane set
of heuristics.

Jeff Dairiki
