-
Notifications
You must be signed in to change notification settings - Fork 70
Closed
Labels
Description
There are no methods to return the handles for the notepad, editor1 and editor2 instances, but they do exist.
PythonScript/PythonScript/src/NotepadPlusWrapper.h
Lines 842 to 845 in aba7bcd
private: | |
NotepadPlusWrapper(); // default constructor disabled | |
HWND m_nppHandle; |
PythonScript/PythonScript/src/PythonHandler.h
Lines 71 to 81 in aba7bcd
protected: | |
void consume(std::shared_ptr<RunScriptArgs> args); | |
boost::shared_ptr<ScintillaWrapper> createScintillaWrapper(); | |
boost::shared_ptr<NotepadPlusWrapper> createNotepadPlusWrapper(); | |
virtual void queueComplete(); | |
// Handles | |
HWND m_nppHandle; | |
HWND m_scintilla1Handle; | |
HWND m_scintilla2Handle; |
Thought would be like:
notepad.hwnd()
editor1.hwnd()
editor2.hwnd()
to return the handles.
Cheers.
alankilborn and Ekopalypsealankilborn and Ekopalypse