index
:
scintilla-mirror
master
sciteco-dev-pre-v2.0.0
sciteco-rel-5-1-3
sciteco-rel-5-3-4
sciteco-rel-5-5-2
sciteco-rel-5-5-4
sciteco-rel-5-5-7
Git mirror of the Scintilla editor component. Referenced by the SciTECO repository.
Robin Haberkorn
about
summary
refs
log
tree
commit
diff
homepage
log msg
author
committer
range
path:
root
/
src
/
EditView.cxx
Age
Commit message (
Expand
)
Author
Files
Lines
2021-05-28
Rename 'NO_FOCUS' to 'INACTIVE' to better match platform terms.
Neil
1
-4
/
+4
2021-05-24
Define C++ version of the Scintilla API in ScintillaTypes.h, ScintillaMessages.h
Neil
1
-169
/
+172
2021-05-22
Rename ColourAlpha to ColourRGBA to avoid clashes when a ColourAlpha typedef
Neil
1
-47
/
+47
2021-05-20
Prefer Sci::invalidPosition to INVALID_POSITION as Scintilla.h will eventually
Neil
1
-5
/
+5
2021-05-20
Add LevelIsHeader and LevelIsWhitespace as fold levels will become enum class
Neil
1
-2
/
+2
2021-05-19
Bug [#2253]. Remove SC_ELEMENT_CARET_SECONDARY as it caused unexpected change to
Neil
1
-3
/
+1
2021-05-14
Implement SC_LAYER_UNDER_TEXT so that selections, caret lines, and content area
Neil
1
-15
/
+23
2021-05-14
Add elements for hot spots SC_ELEMENT_HOT_SPOT_ACTIVE and
Neil
1
-7
/
+7
2021-05-14
Add SC_ELEMENT_WHITE_SPACE_BACK to set the background colour of visible
Neil
1
-6
/
+7
2021-05-14
Feature [feature-requests:#1402] Add SC_ELEMENT_WHITE_SPACE to set the colour of
YX Hao
1
-13
/
+10
2021-05-14
Draw EOL annotation shapes under text.
Neil
1
-1
/
+1
2021-05-14
Add SCI_MARKERSETLAYER to define layer on which to draw content area markers.
Neil
1
-11
/
+5
2021-05-12
Switch caret line background colour to SC_ELEMENT_CARET_LINE_BACK element and
Neil
1
-27
/
+24
2021-05-10
Change the way that selections and carets are drawn to use the element APIs.
Neil
1
-122
/
+116
2021-05-07
Use shared_ptr for LineLayoutCache as it simpifies lifetime management.
Neil
1
-25
/
+24
2021-05-07
Add lineNumber_ argument to LineLayout constructor so always knows which line it
Neil
1
-10
/
+11
2021-05-05
Hoist selection text colour into SelectionForeground function and whether
Neil
1
-25
/
+34
2021-05-01
Improve selection drawing code. Use InSelection enum instead of int.
Neil
1
-54
/
+65
2021-04-27
Rename CharacterSet and CharacterCategory modules in Scintilla to CharacterType
Neil
1
-2
/
+2
2021-04-26
Avoid some warnings.
Neil
1
-4
/
+5
2021-04-26
Change std::optional value() to * as value() is not implemented in older macOS
Neil Hodgson
1
-18
/
+18
2021-04-26
Extract related groups of fields out of ViewStyle into new structs.
Neil
1
-58
/
+58
2021-04-25
Feature [feature-requests:#1402]. Unify colour type with ColourAlpha.
Neil
1
-83
/
+84
2021-04-05
Extract unnamed caching enum as LineLayoutCache::Cache and change to enum class.
Neil
1
-1
/
+1
2021-04-05
Change IndentView, WhiteSpaceVisibility, and TabDrawMode to enum class.
Neil
1
-11
/
+11
2021-04-01
Changed parameters for DrawTabArrow and DrawTabArrowFn to allow additional
Neil
1
-8
/
+7
2021-03-29
Add SCI_SETELEMENTCOLOUR and related APIs to change colours of visible elements.
Neil
1
-0
/
+1
2021-03-28
Add shapes with curved and rounded ends to EOL annotations as EOLANNOTATION_*.
Neil
1
-16
/
+73
2021-03-26
Minor changes: const, constexpr, and noexcept.
Neil
1
-2
/
+2
2021-03-22
Use XYPOSITION for xStart parameter as it is only passed as XYPOSITION.
Neil
1
-2
/
+2
2021-03-22
Replace multiple calls when drawing boxes with Surface::RectangleFrame.
Neil
1
-32
/
+9
2021-03-21
Update DrawTabArrow with new Surface calls so it can draw a thicker translucent
Neil
1
-16
/
+25
2021-03-20
Replace FillRectangle with FillRectangleAligned as FillRectangle will stop
Neil
1
-50
/
+49
2021-03-20
Use Surface::AllocatePixMap instead of changing an existing surface with
Neil
1
-26
/
+8
2021-03-19
Add an explicit FlushDrawing method to Surface that should be called after
Neil
1
-0
/
+3
2021-03-19
Implement PopClip to allow local clipping.
Neil
1
-1
/
+6
2021-03-19
Switch enum to enum class.
Neil
1
-50
/
+51
2021-03-18
Make Surface::Release and callers (where possible) noexcept.
Neil
1
-1
/
+1
2021-03-18
Use unique_ptr for Surface::Allocate to show transfer of ownership.
Neil
1
-3
/
+3
2021-03-18
std::optional is a basic vocabulary type that may be used widely so include
Neil
1
-0
/
+1
2021-03-18
Move assert and debug trace functions into their own header Debugging.h.
Neil
1
-0
/
+1
2021-03-17
Change Font to an interface and stop using FontID. Fonts are shared and
Neil
1
-15
/
+15
2021-03-17
Extract geometry and colour definitions from Platform.h into src/Geometry.h.
Neil
1
-0
/
+1
2021-02-02
Bug [#2231]. Inconsistent behaviour in navigation on a line containing Japanese
cshnik
1
-1
/
+1
2020-08-27
Bug [#2197]. Avoid rewrap when checkTextAndStyle finds unchanged from cache.
Zufu Liu
1
-5
/
+4
2020-08-26
Bug [#2199]. Fixed bug where a hovered INDIC_TEXTFORE indicator was not applying
uhf7
1
-3
/
+6
2020-08-21
Reduce code and variable lifetime.
Zufu Liu
1
-6
/
+3
2020-08-21
Bug [#2197]. Fixed bug where layout caching was ineffective.
Neil
1
-1
/
+2
2020-07-16
Make WrapMode an enum class for more type safety.
Neil
1
-4
/
+4
2020-07-16
Rename validLevel to ValidLevel and make an enum class.
Neil
1
-8
/
+8
[next]