diff options
author | nyamatongwe <devnull@localhost> | 2007-07-12 12:59:47 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2007-07-12 12:59:47 +0000 |
commit | b6c5e2f5a69fca63fcdd7a2ded850299e36124b7 (patch) | |
tree | 789b7e855e141f8c87557a365716bec4d9f71078 /include | |
parent | 3839c03ad51809d5a7bbe1e8f57632f831d953d5 (diff) | |
download | scintilla-mirror-b6c5e2f5a69fca63fcdd7a2ded850299e36124b7.tar.gz |
Modification allows indentation guides to appear on lines that are
empty.
Diffstat (limited to 'include')
-rw-r--r-- | include/Scintilla.h | 4 | ||||
-rw-r--r-- | include/Scintilla.iface | 10 |
2 files changed, 12 insertions, 2 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index f4eca1aef..816edb36f 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -298,6 +298,10 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_GETCOLUMN 2129 #define SCI_SETHSCROLLBAR 2130 #define SCI_GETHSCROLLBAR 2131 +#define SC_IV_NONE 0 +#define SC_IV_REAL 1 +#define SC_IV_LOOKFORWARD 2 +#define SC_IV_LOOKBOTH 3 #define SCI_SETINDENTATIONGUIDES 2132 #define SCI_GETINDENTATIONGUIDES 2133 #define SCI_SETHIGHLIGHTGUIDE 2134 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index e1f24ebb1..6d05e437e 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -727,11 +727,17 @@ set void SetHScrollBar=2130(bool show,) # Is the horizontal scroll bar visible? get bool GetHScrollBar=2131(,) +enu IndentView=SC_IV_ +val SC_IV_NONE=0 +val SC_IV_REAL=1 +val SC_IV_LOOKFORWARD=2 +val SC_IV_LOOKBOTH=3 + # Show or hide indentation guides. -set void SetIndentationGuides=2132(bool show,) +set void SetIndentationGuides=2132(int indentView,) # Are the indentation guides visible? -get bool GetIndentationGuides=2133(,) +get int GetIndentationGuides=2133(,) # Set the highlighted indentation guide column. # 0 = no highlighted guide. |