Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tracecompass-dev] Adding text to CallStackViewer event tooltip popup

Hi Dave,

Indeed, the CallStackView does not allow setting a custom presentation provider. It doesn't seem trivial since it is set as the first statement in the view's constructor:

    public CallStackView() {
        super(ID, new CallStackPresentationProvider());

I tried adding a setter to set the presentation provider after the fact, but that caused all sorts of problems...

Patrick, do you have any idea or suggestion?


Cheers,
Alexandre




On 2016-07-05 01:40 PM, David Wootton wrote:
Hi
Is there any way to add additional text to the tooltip popup that appears
when I hover over an event in the call stack view? I'd like to show text
that provides additional detail about the event. or the location in source
code this represents.

  I've looked at source code and it appears this is handled by a
CallStackPresentationProvider object, where it doesn't look like there is
any way to set a new provider.

Thanks

Dave



Back to the top