aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Style.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2003-03-20 11:22:14 +0000
committernyamatongwe <unknown>2003-03-20 11:22:14 +0000
commitca17c0cc2e37c264782d3f1db49278366e562dcb (patch)
tree269e3f31c3495acbd880f76129f6f16b0a51da96 /src/Style.h
parent79fee676f20f4847e666bff5d73bfe029b24aca0 (diff)
downloadscintilla-mirror-ca17c0cc2e37c264782d3f1db49278366e562dcb.tar.gz
Patch from Simon Steele to implement the hotspot style and associated
notifications.
Diffstat (limited to 'src/Style.h')
-rw-r--r--src/Style.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Style.h b/src/Style.h
index 6245b0b77..6ee930b6b 100644
--- a/src/Style.h
+++ b/src/Style.h
@@ -26,6 +26,7 @@ public:
ecaseForced caseForce;
bool visible;
bool changeable;
+ bool hotspot;
Font font;
int sizeZoomed;
@@ -45,7 +46,7 @@ public:
const char *fontName_, int characterSet_,
bool bold_, bool italic_, bool eolFilled_,
bool underline_, ecaseForced caseForce_,
- bool visible_, bool changeable_);
+ bool visible_, bool changeable_, bool hotspot_);
void ClearTo(const Style &source);
bool EquivalentFontTo(const Style *other) const;
void Realise(Surface &surface, int zoomLevel, Style *defaultStyle = 0);