Advanced QCompleter

Well, I watched QCompleter , it's pretty cool what I see. But I watched Visual Studio 2010 when you do, for example: MessageBox (HWND hWnd), shows a rectangle (white background, black text) that shows MessageBox ( HWND hWnd , LPCWSTR lpText, LPCWSTR lpCaption, UNIT uType); what I mean emphasizes your position. Here is the image: Image showing example

+4
source share
1 answer

Besides using setCompletionMode for one of the three enumeration options, it is quite possible that you cannot achieve this without subclassing and implementing your own version. QCompleter is a model parser, so it looks more like a visual studio when you type . or -> and select the available method / member / etc for the current object.

+2
source

Source: https://habr.com/ru/post/1340266/


All Articles