I am using FLTK 1.3, displaying a single Flex column with a number of Flex rows inside a Fl_Scroll. I want to do something to rows that were outside of the visible area when they scroll into view. But I cannot figure out how to do that. There is no event emitted when the scroll position changes (as far as I can see) nor does a callback on the scroll seem to do anything.
The only solution I can think of is something like using the column's, scroll's, or window's callback
to get informed of all UI events (such as move, key up, leave, ..) and use them to check whether the scoll's yposition
has changed from the last time and run the code I need if it is....
But there surely must be a better way?
Thank you!!!