Problem displaying call tip at the same time as a autocomplete list

Andrew Truckle <[email protected]> Sat, 18 Jan 2025 09:49:16 -0800 (PST)
Newsgroups gmane.comp.lib.scintilla.devel
Message-ID <[email protected]>
If I uncomment this line so that the calltip is displayed:

void CScintillaHelper::OnAutoCSelectionChange(_Inout_ 
Scintilla::NotificationData* pSCNotification)
{
#ifdef DEBUG
// Check if the notification data is valid
if (pSCNotification && pSCNotification->text)
{
// m_edit.CallTipShow(m_edit.GetCurrentPos(), pSCNotification->text);
}
#endif // DEBUG
}

It messes up the auto complete list and all i see is a call tip.

[image: Snap15.jpg]

I thought that as you single click an item in the list you could display a 
call tip to the right. But all I see if a call time and no list. I trid:

case Scintilla::Notification::AutoCSelectionChange
case Scintilla::Notification::AutoCSelection

But I don't get no list any more and just a tip. So I have commented out 
the tip so that the list displays. I was trying to do something similar as 
in Visual Studio:

[image: Snap16.jpg]

Am I going about this the wrong way?

-- 
You received this message because you are subscribed to the Google Groups "scintilla-interest" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To view this discussion visit https://groups.google.com/d/msgid/scintilla-interest/e383860c-90a5-4595-a051-f0b752bc3662n%40googlegroups.com.
Snap16.jpg (image/jpeg, 22 KB) - not displayed
Snap15.jpg (image/jpeg, 53.4 KB) - not displayed