I have a simple question. I am using a GtkTreeView, where one column is displayed as GtkCellRendererCombo. The user can either freely edit the text of the cell, or choose for it a value from the combo.
The problem is that once the user chooses a value from the combo, I need to capture the text he was previously writing into the cell.
I cannot use the GtkTreeStore object for capturing the text, because the edit has not finished yet and therefore the GtkTreeStore is not up to date.
Is there anyone with any suggestion?