Dan Petitt:
> However, there is no such option for user lists SCI_USERLISTSHOW as the
> wParam is used to denote the list type, so I have added this to my build as
> follows if anyone is interested or if it can get committed (Neil?).
This doesn't really fit into the fairly limited role of user lists.
If the list is based on earlier typing then use a normal
AutoCompletion.
> struct UserListShowInfo {
> long nCharsTyped;
> int nListType;
> };
>
>
> Add to ScintillaBase.cxx
>
> case SCI_USERLISTSHOWTYPED: {
> if (wParam == 0)
> return 0;
>
> UserListShowInfo *ul = reinterpret_cast<UserListShowInfo
> *>(wParam);
Pointers to structures are hard to use from higher level languages
and are avoided in Scintilla in favour of multiple calls.
Neil
_______________________________________________
Scintilla-interest mailing list
[email protected]
http://mailman.lyra.org/mailman/listinfo/scintilla-interest