aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LineMarker.cxx
AgeCommit message (Expand)AuthorFilesLines
2023-03-27Declare const where possible.Neil1-8/+8
2022-07-31Add SC_MARK_BAR marker and INDIC_POINT_TOP indicator which are useful for changeNeil1-0/+31
2021-09-17Add noexcept and constexpr where reasonable.Zufu Liu1-1/+1
2021-06-11Ensure variable initialised.Neil1-1/+1
2021-05-24Define C++ version of the Scintilla API in ScintillaTypes.h, ScintillaMessages.hNeil1-45/+51
2021-05-22Rename ColourAlpha to ColourRGBA to avoid clashes when a ColourAlpha typedefNeil1-13/+13
2021-05-14Add SCI_MARKERSETLAYER to define layer on which to draw content area markers.Neil1-0/+6
2021-03-30Treat SC_MARK_CHARACTER as Unicode for a wider variety of symbols.Neil1-4/+6
2021-03-29Align polygons so they are crisp.Neil1-10/+20
2021-03-27Add APIs for setting translucency and stroke width of markers.Neil1-13/+13
2021-03-26Bug [#2224]. Switch XYPOSITION to double so it has more precision to fixNeil1-1/+1
2021-03-20Use new Surface APIs for marker drawing. Clipping allows rounded fold markers toNeil1-271/+283
2021-03-18std::optional is a basic vocabulary type that may be used widely so includeNeil1-0/+1
2021-03-18Move assert and debug trace functions into their own header Debugging.h.Neil1-0/+1
2021-03-17Change Font to an interface and stop using FontID. Fonts are shared andNeil1-1/+1
2021-03-17Extract geometry and colour definitions from Platform.h into src/Geometry.h.Neil1-0/+1
2020-07-16Rename typeOfFold to FoldPart and make an enum class.Neil1-12/+12
2020-04-10Run astyle indenter over file.Zufu Liu1-11/+12
2020-04-10Feature [feature-requests:1346]. Convert long if-else block to switch.Zufu Liu1-250/+324
2020-04-10Remove non-standard whitespace.Zufu Liu1-5/+5
2019-04-07Make XPM, RGBAImage, and LineMarker copyable and noexcept moveable.Neil1-29/+29
2019-04-07Feature [feature-requests:#1276]. Add SC_MARK_VERTICALBOOKMARK.Zufu Liu1-0/+10
2018-05-14Modernize Platform.h (4) - update Surface to use string_view for text arguments.Neil1-4/+4
2018-05-14Modernize Platform.h (3) - update Surface to delete WidthChar, use size_t forNeil1-7/+6
2018-05-14Include <string_view> to allow future use in Platform interface and Unicode.Neil1-0/+1
2018-05-01Add IntegerRectangle to simplify drawing lines without casting.Neil1-38/+39
2018-03-15Use forward class definitions of XPM and RGBAImage so only code that uses themNeil1-0/+39
2018-03-01Mark variables as const where simple.Neil1-9/+9
2018-03-01Use make_unique in preference to new.Neil1-3/+3
2017-09-11The Scintilla namespace is always active for internal symbols and for the lexerNeil1-2/+0
2017-06-09Use min and max from std instead of own version from platform.Neil1-1/+2
2017-04-22Using unique_ptr to simplify ownership of images, case folder, and list box.Neil1-7/+4
2017-04-22Include <memory> for std::unique_ptr.Neil1-0/+1
2017-04-06Added const where possible.Neil1-5/+5
2017-04-01Standardize on C++ headers, remove headers that aren't needed and add <cstddef>Neil1-2/+2
2015-07-04Make std::exception visible to all core code to remove chance that a differentNeil1-0/+1
2014-11-19Platform overrides for some drawing and behaviour to benefit PLAT_CURSES.Neil1-0/+5
2014-07-24Remove false shadowing between local variables and enum values.Neil1-48/+48
2014-06-23Make drawing of markers const.Neil1-1/+1
2014-05-03Replacing the int-based constructors for Point and PRectangle with FromIntsNeil1-41/+41
2014-05-03Turn on MSVC 'possible loss of data' warnings and add explicit casts.Neil1-44/+44
2014-05-03Using casts and an alternate PRectangle constructor to make XYPOSITION <-> intNeil1-2/+2
2014-05-03Convenience Point constructor from integers as common source of shapes.Neil1-5/+5
2014-01-21Added ELEMENTS macro and use it to clarify determining size of arrays.Neil Hodgson1-12/+8
2014-01-21Implement new marker symbol SC_MARK_BOOKMARK.Neil Hodgson1-1/+12
2014-01-18With Direct2D draw circles with a 1 pixel larger radius to better matchNeil1-4/+4
2014-01-18For SC_MARK_ARROWS, scale the arrows to fit the line height.Neil1-4/+6
2013-02-18Fix drawing of markers at negative coordinates due to integer truncation.nyamatongwe1-2/+3
2012-07-21Scale factor implemented for RGBAImages to allow for high definition markers ...nyamatongwe1-6/+6
2012-03-01Bug #3494492. Change aveCharWidth in FontMeasurements to actually storenyamatongwe1-1/+1