aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ViewStyle.h
diff options
context:
space:
mode:
authorZufu Liu <unknown>2019-02-05 09:02:14 +1100
committerZufu Liu <unknown>2019-02-05 09:02:14 +1100
commit1469ac92b931c4e43046964116fcc4a0ae73100c (patch)
tree2f838871632d3accae0474302a436967992beaaa /src/ViewStyle.h
parentdceb72247c99932399784780437344934260b11d (diff)
downloadscintilla-mirror-1469ac92b931c4e43046964116fcc4a0ae73100c.tar.gz
Feature [feature-requests:#1217]. Change API so block just for overstrike.
Diffstat (limited to 'src/ViewStyle.h')
-rw-r--r--src/ViewStyle.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ViewStyle.h b/src/ViewStyle.h
index 800d8cb67..4ef82c393 100644
--- a/src/ViewStyle.h
+++ b/src/ViewStyle.h
@@ -212,6 +212,10 @@ public:
bool WhiteSpaceVisible(bool inIndent) const;
+ enum class CaretShape { invisible, line, block, bar };
+ bool IsBlockCaretStyle() const noexcept;
+ CaretShape CaretShapeForMode(bool inOverstrike) const noexcept;
+
private:
void AllocStyles(size_t sizeNew);
void CreateAndAddFont(const FontSpecification &fs);