Re: Overloading mouse events in a ProgressBar

2019-08-07 Thread Phil Wolff via gtkmm-list
Bingo! Thanks for the tip. On 8/6/19 12:36 PM, Rob Pearce wrote: On 06/08/2019 14:50, Phil Wolff via gtkmm-list wrote: I'm deriving from Gtk::ProgressBar in order to track mouse events within the widget. The only callback that executes is on_map(). Can anyone tell me what vital (and likely obv

Re: Overloading mouse events in a ProgressBar

2019-08-06 Thread Daniel Boles via gtkmm-list
yup, that sounds about right. only in GTK 4 will that change and all widgets be able to receive all events. ...although also there, it is encouraged more to use gestures and whatnot, and the events that remain have proper API instead of poking around directly in event structures. On Wed, 7 Aug 20

Re: Overloading mouse events in a ProgressBar

2019-08-06 Thread Rob Pearce
On 06/08/2019 14:50, Phil Wolff via gtkmm-list wrote: I'm deriving from Gtk::ProgressBar in order to track mouse events within the widget. The only callback that executes is on_map(). Can anyone tell me what vital (and likely obvious) operation I've failed to include? I don't know if this sti