diff options
author | nyamatongwe <devnull@localhost> | 2007-04-05 10:50:11 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2007-04-05 10:50:11 +0000 |
commit | 2a30f053fd7ad4d9dcb8a5a39a3bf4da06f344e8 (patch) | |
tree | 04c2ad1b9fd3359de89792aeaa9567b9edd56628 /src/Editor.h | |
parent | d86e4efcf67d2fe73cd74c01f15318fa95d28f5a (diff) | |
download | scintilla-mirror-2a30f053fd7ad4d9dcb8a5a39a3bf4da06f344e8.tar.gz |
Implemented decorations which are extended indicators.
Diffstat (limited to 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Editor.h b/src/Editor.h index 3399b70c7..04bf21958 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -395,6 +395,8 @@ protected: // ScintillaBase subclass needs access to much of Editor int line, int lineEnd, int xStart, int subLine, int subLineStart, bool overrideBackground, ColourAllocated background, bool drawWrapMark, ColourAllocated wrapColour); + void DrawIndicators(Surface *surface, ViewStyle &vsDraw, int line, int xStart, + PRectangle rcLine, LineLayout *ll, int subLine, int lineEnd, bool under); void DrawLine(Surface *surface, ViewStyle &vsDraw, int line, int lineVisible, int xStart, PRectangle rcLine, LineLayout *ll, int subLine=0); void RefreshPixMaps(Surface *surfaceWindow); @@ -441,6 +443,7 @@ protected: // ScintillaBase subclass needs access to much of Editor void NotifyHotSpotDoubleClicked(int position, bool shift, bool ctrl, bool alt); void NotifyUpdateUI(); void NotifyPainted(); + void NotifyIndicatorClick(bool click, int position, bool shift, bool ctrl, bool alt); bool NotifyMarginClick(Point pt, bool shift, bool ctrl, bool alt); void NotifyNeedShown(int pos, int len); void NotifyDwelling(Point pt, bool state); |