diff options
author | nyamatongwe <unknown> | 2001-09-01 03:01:09 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-09-01 03:01:09 +0000 |
commit | 2551486092fa6cd68a1881b84c502f0bb7e74892 (patch) | |
tree | a90dfa88218a698f1a689abd2caa2e0b54772405 /src/ScintillaBase.cxx | |
parent | 111ae4b1a706e2daf7c6e561a5389b57d4b7ea2b (diff) | |
download | scintilla-mirror-2551486092fa6cd68a1881b84c502f0bb7e74892.tar.gz |
Using new SelectionText type to handle text that is the subject of copy,
cut, paste and drag operations.
Mouse wheel scrolling moved into platform subclasses.
Macro support always included so MACRO_SUPPORT definition and use removed.
Allowing menu popup moved from Editor to ScintillaBase.
Diffstat (limited to 'src/ScintillaBase.cxx')
-rw-r--r-- | src/ScintillaBase.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index 707f59b9f..75a8ffffa 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -35,6 +35,7 @@ #include "ScintillaBase.h" ScintillaBase::ScintillaBase() { + displayPopupMenu = true; listType = 0; #ifdef SCI_LEXER lexLanguage = SCLEX_CONTAINER; @@ -514,6 +515,10 @@ sptr_t ScintillaBase::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lPara InvalidateStyleRedraw(); break; + case SCI_USEPOPUP: + displayPopupMenu = wParam; + break; + #ifdef SCI_LEXER case SCI_SETLEXER: SetLexer(wParam); |