diff options
author | nyamatongwe <devnull@localhost> | 2003-03-20 11:22:14 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-03-20 11:22:14 +0000 |
commit | d4849b34e7c561921671603232668ca0c4b41b69 (patch) | |
tree | 269e3f31c3495acbd880f76129f6f16b0a51da96 /src/ViewStyle.h | |
parent | 186fb2391e583d318a137842b2ccaae51d69365e (diff) | |
download | scintilla-mirror-d4849b34e7c561921671603232668ca0c4b41b69.tar.gz |
Patch from Simon Steele to implement the hotspot style and associated
notifications.
Diffstat (limited to 'src/ViewStyle.h')
-rw-r--r-- | src/ViewStyle.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ViewStyle.h b/src/ViewStyle.h index 135a8b340..ff38efef2 100644 --- a/src/ViewStyle.h +++ b/src/ViewStyle.h @@ -63,6 +63,11 @@ public: ColourPair foldmarginColour; bool foldmarginHighlightColourSet; ColourPair foldmarginHighlightColour; + bool hotspotForegroundSet; + ColourPair hotspotForeground; + bool hotspotBackgroundSet; + ColourPair hotspotBackground; + bool hotspotUnderline; /// Margins are ordered: Line Numbers, Selection Margin, Spacing Margin enum { margins=3 }; int leftMarginWidth; ///< Spacing margin on left of text |