GtkSheet-7.0
============

GtkSheet has moved to gtk+-1.2 and new features have been added.
This version has been tested with gtk+-1.2.0

* GtkSheet is a self scrolling widget a la GtkClist and GtkLayout. 
You have to add it to a scrolled window to display it propertly.
Shadow borders will be fixed with the patch added to gtkscrolledwindow.

* Container features implemented. Adding widgets to the sheet is very easy
with:

gtk_sheet_put (GtkSheet *sheet, GtkWidget *child, gint x, gint y);

* Move it with

gtk_sheet_move_child (GtkSheet *sheet, GtkWidget *widget, gint x, gint y);

* Remove it with

gtk_container_remove(GTK_CONTAINER(sheet), GtkWidget *child);

* Some signals have been renamed:

  "activate_cell" -> "activate"
  "deactivate_cell" -> "deactivate"
 
* Rejection option for activation/deactivation of the active cell.

* New signals:

  "new_column_width"
  "new_row_height"

* new function 

gtk_sheet_set_cell_text(GtkSheet *sheet, gint row, gint col, gchar *text);
(you don't have to set the justification)

* Some minor bugs fixed.

GtkSheet-5.3
============

The graphic interface is nicer and more friendly. 
The appeareance is more familiar and I added some new features:

You can make a selection and move it dragging the border.

You can resize the selection dragging the bottom-right corner.

You can store the selection on the clipboard. 

(All this functions emit a signal. You can cutomize your application
 connecting a signal handler in order to do the desired action) 

NOTE: the selection handler has not been implemented yet.

GtkSheet-5.4
============

Following Mario Motta's suggestions <mmotta@guest.net> I added a new feature:

You can hide/show row and/or column titles (see Example 2 in the demo program)

and I patched gtksheet.h for C++ compatibility.

I fixed a couple of bugs:
multiple emission of the "activate_cell" signal;
problems when selecting a row/column and moving with the cursor keys. 
 
NOTE: All versions of GtkSheet compile fine with gtk+-1.0.6

GtkSheet-5.5
============
 
Many bugs fixed, mainly reported by Mario Motta.
 
All warnings fixed.
 
Signals: 
"changed" is emited when typing into the active cell, changing its contents.
"set_cell" is emited when changing current cell's position.
"activate_cell" is emited when the new cell is activated.
 
NOTE: gtksheet crashes on Solaris. I couldn't fix this, yet.
 
GtkSheet-5.6
============

GtkSheet now allows font handling with
gtk_sheet_range_set_font (GtkSheet *sheet, GtkSheetRange range, GdkFont *font)

Problems with Solaris have been fixed. 

Steven Rostedt <steven.rostedt@lmco.com> fixed a bug when adding 
rows/columns.

Some little changes in the demo to show the new features and to avoid the
redraw in the example 1.

Other bugs fixed.

GtkSheet-5.7
============

Function added by Steven Rostedt:

gint
gtk_sheet_get_state (GtkSheet *sheet) 

Resizing rows and columns improved.

Bug fixes, including two bugs causing crash when the widget is destroyed 
(style bug patched in part by Steve)

ANNOUNCE: GtkSheet is moving to Gtk+-1.2 

GtkSheet-6.0
============

GtkSheet has move to gtk+-1.2 and new features have been added.
The new distribution includes a set of new widgets.


GtkSheetEntry has been updated. Now, it is a GtkEntry subclass. 
The main diferences with GtkEntry are:
  - It doesn't draw the border.
  - It is dinamically resized when the text is typed.
  - It allows right/left/center text justification.
(gtk_entry_size_allocate & entry_adjust_scroll)


GtkSheet can be created with a custom entry widget. You can use GtkEntry or a 
GtkEntry subclass (e.g.  GtkSheetEntry, GtkSpinButton) or a box or table 
containing a GtkEntry subclass (e.g. GtkCombo)

gtk_sheet_new_with_custom_entry (gint nrows, gint ncols, GtkType *entry_type);

Example: 
sheet = gtk_sheet_new_with_custom_entry(10, 10, gtk_combo_get_type());

The entry can be changed on the fly with:

gtk_sheet_change_entry(GtkSheet *sheet, GtkType *entry_type);

New signals policy:
 - "activate_cell" is emited when the entry enters to a new cell.
 - "deactivate_cell" is emited whent the entry is deactivated before moving 
to another cell or starting a selection.
 - "traverse" is emited before "deactivate_cell" and allows to veto the
movement. In such case, the entry will remain in the site, and the other
signals will not be emited.

GtkSheet-6.0 has been tested with gtk+-1.1.12 without problems.

