Hi all,
I am working on am application that uses a GtkTreeView to display a two-column list of information. There are a couple of things that I want to achieve but I am having some difficulty getting to work:
1. I want to have one of the columns be editable but only on a certain keypress. I would like to keep the double-click event produce the row-activated signal. In other words, I want to prevent editing on double-click but still allow the column to be editable.
Originally, I tried to set the column cell rendered as non-editable to get the "row-activated" behaviour and then set the editable property when a row is selected with a single click. However, that did not work. It's also a big pain to get the actual cell renderer.
Is this achievable at all? Is there a way to keep the double-click event as "row-activated" while still allowing cells to be editable?