Project plugin functionality
-
What about my own context menu entry (that calls my C# function) or custom hovering tooltip type display, are those possible?
-
What about my own context menu entry (that calls my C# function) or custom hovering tooltip type display, are those possible?
I am sure such are possible. I think they are probably done with standard Win32 API calls, but I don’t know for sure. I know that some of the other regulars here have done their own popups and such, so hopefully someone else will be able to give you pointers as where to go next.
-
If it is the context menu that opens in the Scintilla area, then it is editable via
Settings->Edit Popup ContextMenu
. See here. But if you’re thinking of having it in other dialogs like FAW, Project Panel, or third-party plugins like NppExec, then you’ll need to subclass the appropriate window message queue and catch the messages you’re interested in, do your own thing, and let the main message handler know that this was done to prevent the main action from being executed. -
I have put my own entry to the context menu via xml but now would like to do that via C# plugin. Is this possible?
The link you gave me brings up security warning (which is why I haven’t been reading those docs)I’m also wondering if it’s possible to use windows form under notepad++ process or do I have to use np++ own window creation commands?
I was able to create the form but it’s in independent process.
-
@General-Coder said in Project plugin functionality:
The link you gave me brings up security warning (which is why I haven’t been reading those docs)
This has been fixed and so https://npp-user-manual.org/docs/config-files/#the-context-menu-contextmenu-xml should now be viewable.
-
@General-Coder said in Project plugin functionality:
… now would like to do that via C# plugin. Is this possible?
Yes, you need to subclass the wndproc …
… possible to use windows form under notepad++
Even though I’m not a C# developer, I can say that yes, you can.
The .Net framework is basically a wrapper around the Win32 API.
You just need to make sure that you pass the expected values to Npp. -
couple questions
how do you center the view on line? I used SciMsg.SCI_GOTOLINE to go to the line but it doesn’t center the view
also is it possible to get the text under the cursor? i can get selection but this one I havent figured out yet
thx
-
@General-Coder said in Project plugin functionality:
couple questions
What you are asking about are some Scintilla functions.
The Scintilla docs are HERE. -
hey, thx I’m aware of the scintilla docs but they are pain to read so i thought I’d ask scintilla experts here.
that’s where I found the SCI_GOTOLINE ;) -
@General-Coder said in Project plugin functionality:
but they are pain to read
Nobody here wants to spoon-feed you. Sorry.