I want to highlight specific rows in a gtk.Table. I also want a mouseover to highlight it w/ a different color (like on a link in a web browser). I thought of just packing each cell with an eventBox and changing the STATE_NORMAL and STATE_PRELIGHT bg colors, which does work, but mousing over the eventbox doesn’t work. Is there a better way?
I want to highlight specific rows in a gtk.Table . I also want a
Share
This seems to work:
It only highlights each cell at a time, so I’ll have to change the notify events to light up everything.
EDIT:
self.rowStyleis set as follows:I create an
EventBoxjust to get its style.