'Links' in Ruby Gtk

Hello all,

I’m trying to extend the rSQLiteGUI application to play well with
relational databases. For data in columns that link to rows in other
tables, I’d like for a user to be able to click on the id and have the
reference table displayed and the referenced row highlighted. It
looks like GtkTreeView has a signal for when a row is selected, but
not a cell. Is it possible to wrap cell text in a link (or something
similar) that can be connected to a signal?


Thanks!
Bryan

Hi Bryan,

Well, if you can live with “double-click to follow link” you can use the
“row-activated” signal, which will also provide you with a cell.

Regards,
Sven

Am Dienstag, den 19.08.2008, 11:13 -0600 schrieb Bryan R.: