I have a CWnd derived class that has a WM_CONTEXTMENU handler (OnContextMenu), whichhas my default context menu.This class is being used at several places in my application.
I have an Observer class and a Subscriber class. For testing purposes, the observer creates a thread that generates fake messages and calls CServerCommandObserver::NotifySubscribers开发者_高级运维(),
I would like Scintilla to ignore certain key combinations like, Ctrl+Enter or Ctrl+D, and to notify开发者_StackOverflow the parent window when they are entered. I read through the documentation and co