CellRenderer: Entry is not the only CellEditable

so link to GtkCellEditable and note that GtkEntry is just one example.
This commit is contained in:
Daniel Boles 2018-04-02 13:01:02 +01:00
parent 0fd9362e91
commit 50feed4c28

View File

@ -60,7 +60,8 @@
* activatable like #GtkCellRendererToggle,
* which toggles when it gets activated by a mouse click, or it can be
* editable like #GtkCellRendererText, which
* allows the user to edit the text using a #GtkEntry.
* allows the user to edit the text using a widget implementing the
* #GtkCellEditable interface, e.g. #GtkEntry.
* To make a cell renderer activatable or editable, you have to
* implement the #GtkCellRendererClass.activate or
* #GtkCellRendererClass.start_editing virtual functions, respectively.