diff options
author | XhmikosR <xhmikosr@users.sourceforge.net> | 2011-04-22 12:04:49 +0000 |
---|---|---|
committer | XhmikosR <xhmikosr@users.sourceforge.net> | 2011-04-22 12:04:49 +0000 |
commit | 7876d7699e3f321eaa392f69dfb685748938d214 (patch) | |
tree | 37c1dd8a3e5e7d631f5b744db7008e74b388afa5 /scintilla/src/Editor.cxx | |
parent | 0e65071b050165e844bbf7f972e55d9f596fb0e3 (diff) | |
download | notepad2-mod-7876d7699e3f321eaa392f69dfb685748938d214.zip notepad2-mod-7876d7699e3f321eaa392f69dfb685748938d214.tar.gz notepad2-mod-7876d7699e3f321eaa392f69dfb685748938d214.tar.bz2 |
update scintilla
git-svn-id: https://notepad2-mod.googlecode.com/svn/trunk@477 28bd50df-7adb-d945-0439-6e466c6a13cc
Diffstat (limited to 'scintilla/src/Editor.cxx')
-rw-r--r-- | scintilla/src/Editor.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/scintilla/src/Editor.cxx b/scintilla/src/Editor.cxx index 7528483..e2d7d31 100644 --- a/scintilla/src/Editor.cxx +++ b/scintilla/src/Editor.cxx @@ -8229,6 +8229,16 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) { case SCI_INDICGETALPHA:
return (wParam <= INDIC_MAX) ? vs.indicators[wParam].fillAlpha : 0;
+ case SCI_INDICSETOUTLINEALPHA:
+ if (wParam <= INDIC_MAX && lParam >=0 && lParam <= 255) {
+ vs.indicators[wParam].outlineAlpha = lParam;
+ InvalidateStyleRedraw();
+ }
+ break;
+
+ case SCI_INDICGETOUTLINEALPHA:
+ return (wParam <= INDIC_MAX) ? vs.indicators[wParam].outlineAlpha : 0;
+
case SCI_SETINDICATORCURRENT:
pdoc->decorations.SetCurrentIndicator(wParam);
break;
|