diff options
author | nyamatongwe <unknown> | 2006-05-21 02:53:47 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2006-05-21 02:53:47 +0000 |
commit | cbc94914289e79f1d3694d4422bab34bff56ae25 (patch) | |
tree | 15abb4e7ae94e7d22cb4fd18e1fced5683c14c65 /src/LineMarker.h | |
parent | 14436843d5eeb4a6c02b99cfb68e280b49a08468 (diff) | |
download | scintilla-mirror-cbc94914289e79f1d3694d4422bab34bff56ae25.tar.gz |
Added translucency for selection and markers.
Diffstat (limited to 'src/LineMarker.h')
-rw-r--r-- | src/LineMarker.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/LineMarker.h b/src/LineMarker.h index ef5924f75..8ebdce491 100644 --- a/src/LineMarker.h +++ b/src/LineMarker.h @@ -15,11 +15,13 @@ public: int markType; ColourPair fore; ColourPair back; + int alpha; XPM *pxpm; LineMarker() { markType = SC_MARK_CIRCLE; fore = ColourDesired(0,0,0); back = ColourDesired(0xff,0xff,0xff); + alpha = SC_ALPHA_NOALPHA; pxpm = NULL; } LineMarker(const LineMarker &) { @@ -27,6 +29,7 @@ public: markType = SC_MARK_CIRCLE; fore = ColourDesired(0,0,0); back = ColourDesired(0xff,0xff,0xff); + alpha = SC_ALPHA_NOALPHA; pxpm = NULL; } ~LineMarker() { @@ -37,6 +40,7 @@ public: markType = SC_MARK_CIRCLE; fore = ColourDesired(0,0,0); back = ColourDesired(0xff,0xff,0xff); + alpha = SC_ALPHA_NOALPHA; delete pxpm; pxpm = NULL; return *this; |