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
sciteco-rel-5-5-8
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
/
Editor.cxx
Age
Commit message (
Expand
)
Author
Files
Lines
2021-05-30
Fix GetFontQuality. Simplify code that calls FlagSet.
Neil
1
-15
/
+15
2021-05-28
Rename 'NO_FOCUS' to 'INACTIVE' to better match platform terms.
Neil
1
-1
/
+1
2021-05-24
Define C++ version of the Scintilla API in ScintillaTypes.h, ScintillaMessages.h
Neil
1
-1545
/
+1565
2021-05-22
Rename ColourAlpha to ColourRGBA to avoid clashes when a ColourAlpha typedef
Neil
1
-23
/
+23
2021-05-20
Prefer Sci::invalidPosition to INVALID_POSITION as Scintilla.h will eventually
Neil
1
-21
/
+21
2021-05-20
Add LevelIsHeader and LevelIsWhitespace as fold levels will become enum class
Neil
1
-14
/
+14
2021-05-16
Include modifiers in SCN_INDICATORRELEASE notification.
Damiano Lombardi
1
-1
/
+1
2021-05-15
Protect against out-of-bounds layout cache level and remove unnecessary code.
Neil
1
-1
/
+3
2021-05-15
Bug [#2253]. For SCI_SETSELALPHA, also update the alpha of secondary and no-f...
Neil Hodgson
1
-2
/
+5
2021-05-14
Do not set alpha of SC_ELEMENT_CARET_LINE_BACK unless already has a colour.
Neil
1
-1
/
+3
2021-05-14
Add elements for hot spots SC_ELEMENT_HOT_SPOT_ACTIVE and
Neil
1
-6
/
+8
2021-05-14
Add SC_ELEMENT_WHITE_SPACE_BACK to set the background colour of visible
Neil
1
-2
/
+3
2021-05-14
Feature [feature-requests:#1402] Add SC_ELEMENT_WHITE_SPACE to set the colour of
YX Hao
1
-3
/
+4
2021-05-14
Add SCI_MARKERSETLAYER to define layer on which to draw content area markers.
Neil
1
-3
/
+19
2021-05-12
Switch caret line background colour to SC_ELEMENT_CARET_LINE_BACK element and
Neil
1
-10
/
+40
2021-05-11
When setting or resetting elements, redraw if caused change.
Neil
1
-2
/
+6
2021-05-11
Implement SCI_GETELEMENTBASECOLOUR to return the default values for element
Neil
1
-0
/
+3
2021-05-11
Add tests for element APIs. Fix SCI_GETELEMENTCOLOUR to return value including
Neil
1
-1
/
+1
2021-05-10
Change the way that selections and carets are drawn to use the element APIs.
Neil
1
-17
/
+43
2021-05-10
Add elementBaseColours to hold default or system derived colours.
Neil
1
-1
/
+5
2021-05-07
Use shared_ptr for LineLayoutCache as it simpifies lifetime management.
Neil
1
-8
/
+8
2021-05-07
Add lineNumber_ argument to LineLayout constructor so always knows which line it
Neil
1
-4
/
+4
2021-05-08
Feature [feature-requests:1373]. Make idle actions smoother by measuring
Neil
1
-14
/
+20
2021-05-05
Redraw when focus changes. Move hasFocus to EditModel where it can be used for
Neil
1
-1
/
+4
2021-04-27
Rename CharacterSet and CharacterCategory modules in Scintilla to CharacterType
Neil
1
-2
/
+2
2021-04-26
Avoid some warnings.
Neil
1
-6
/
+6
2021-04-26
Extract related groups of fields out of ViewStyle into new structs.
Neil
1
-38
/
+38
2021-04-26
Move hotspotSingleLine from ViewStyle to EditModel as it defines behaviour, not
Neil
1
-4
/
+4
2021-04-25
Feature [feature-requests:#1402]. Unify colour type with ColourAlpha.
Neil
1
-37
/
+37
2021-04-20
Bug [#2027]. Implement font locale SCI_SETFONTLOCALE on Win32 using DirectWrite.
Neil
1
-0
/
+10
2021-04-15
Bug [#2234]. Remove method that is no longer called.
Neil
1
-4
/
+0
2021-04-05
Extract unnamed caching enum as LineLayoutCache::Cache and change to enum class.
Neil
1
-2
/
+2
2021-04-05
Extract CharClassify::cc as CharacterClass and change to enum class.
Neil
1
-6
/
+6
2021-04-05
Change IndentView, WhiteSpaceVisibility, and TabDrawMode to enum class.
Neil
1
-4
/
+4
2021-03-29
Add SCI_SETELEMENTCOLOUR and related APIs to change colours of visible elements.
Neil
1
-0
/
+18
2021-03-27
Add APIs for setting translucency and stroke width of markers.
Neil
1
-4
/
+28
2021-03-27
Add API for setting stroke width of indicators.
Neil
1
-0
/
+13
2021-03-20
Use Surface::AllocatePixMap instead of changing an existing surface with
Neil
1
-23
/
+13
2021-03-19
Add an explicit FlushDrawing method to Surface that should be called after
Neil
1
-0
/
+1
2021-03-19
Implement PopClip to allow local clipping.
Neil
1
-0
/
+5
2021-03-19
Add Platform::Supports for SupportsFeature API.
Neil
1
-2
/
+3
2021-03-19
Switch enum to enum class.
Neil
1
-160
/
+173
2021-03-19
Add SupportsFeature API but leave empty for now with no features defined.
Neil
1
-0
/
+7
2021-03-18
Make Surface::Release and callers (where possible) noexcept.
Neil
1
-1
/
+1
2021-03-18
Use unique_ptr for CaseFolderForEncoding to show transfer of ownership.
Neil
1
-2
/
+2
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 Window::Cursor to an enum class.
Neil
1
-9
/
+9
2021-03-17
Change Font to an interface and stop using FontID. Fonts are shared and
Neil
1
-1
/
+1
2021-03-17
Extract geometry and colour definitions from Platform.h into src/Geometry.h.
Neil
1
-0
/
+1
[next]