aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/ScintillaWin.cxx
AgeCommit message (Expand)AuthorFilesLines
2018-10-17Backport: Use nullptr, default brace and member initialisation for some simpl...Neil1-13/+13
2018-10-11Backport: Add SCI_SETCOMMANDEVENTS API to allow turning off command events.Neil1-3/+5
2018-08-09Backport: Avoid some casts.Neil1-3/+4
2018-05-24Backport: Fix warnings. Add const, constexpr, and noexcept. Initialize. Stand...Neil1-20/+20
2018-05-14Backport: Modernize Platform.h (1) - noexcept, const, standard methods.Neil1-2/+3
2018-05-01Backport: Use RectFromPRectangle to avoid casts.Neil1-2/+2
2018-05-01Backport: Bug [#2012]. Use '0' instead of '0l'.Neil1-2/+2
2018-04-30Backport: Add conversion function from Scintilla Point to Win32 POINT.Neil1-23/+49
2018-04-30Backport: Use const where possible.Neil1-21/+21
2018-04-30Backport: Use const for IME, code page and related code.Neil1-28/+27
2018-04-30Backport: Use Win32 types and avoid casting. Move code to avoid warnings.Neil1-8/+7
2018-04-30Backport: Use message parameter access macros provided by Windows instead of ...Neil1-30/+8
2018-04-30Backport: Use C++ casts in preference to C casts. Use nullptr instead of 0.Neil1-1/+2
2018-04-28Backport: Delete standard functions on classes where there could be attempts ...Neil1-0/+12
2018-04-28Backport: Remove unused definition and replace 0 with nullptr.Neil1-2/+1
2018-04-28Backport:Initialize timers in definition instead of looping to avoid cast and...Neil1-4/+1
2018-05-06Backport: Use <chrono> for platform-independent timing and remove ElapsedTime...mitchell1-2/+4
2018-04-25Backport: Use set of coercion functions for transforming WndProc parameters i...Neil1-7/+7
2018-04-25Backport: Standardized signature of TargetAsUTF8 and EncodedFromUTF8.Neil1-2/+2
2018-05-06Backport: Remove casts that are not needed since sptr_t and Sci::Position are...mitchell1-1/+1
2018-04-22Backport: Remove casts between char and unsigned char where possible.Neil1-4/+4
2018-04-19Backport: Casting changed in many places, due to change to 64-bit variables f...Neil1-13/+13
2018-04-05Backport: Backed out changeset: 7402342dc7a3 Caching client rectangle on Edit...Neil1-2/+2
2018-04-04Backport: Remove automatic detection of Direct2D support during build.Neil1-1/+1
2018-04-04Backport: Move DLL entry points DllMain and Scintilla_DirectFunction into Sci...Neil1-22/+12
2018-04-04Backport: Cache client rectangle on EditView so it can be used easily inside ...Neil1-2/+2
2018-03-15Backport: Use forward class definitions of XPM and RGBAImage so only code tha...Neil1-1/+0
2018-01-21Backport: Type casts in case Sci::Position and Sci::Line are extended to 64-b...Neil1-14/+14
2017-09-11Backport: The Scintilla namespace is always active for internal symbols and f...Neil1-2/+0
2017-08-28Backport: New header ILoader.h defines ILoader interface as it does not belon...Neil1-0/+1
2017-06-22Backport: Cast between Sci_Position.h types used for lexers and Position.h ty...Neil1-6/+6
2017-06-12Backport: Remove old timer code in favour of the FineTicker* methods.Neil1-8/+0
2017-06-12Backport: Simplify mouse and keyboard handling by only retaining the 'WithMod...Neil1-23/+23
2017-06-12Backport: Removed unused functions and methods from Platform.h.Neil1-16/+24
2017-05-21Make SparseVector work with move-only types.Neil1-0/+1
2017-05-02More consistent use of size_t when converting Unicode formats.Neil1-20/+21
2017-05-02Use unique_ptr for drawing surfaces and don't check for allocation failureNeil1-43/+39
2017-04-21More consistent deletion of standard methods.Neil1-1/+1
2017-04-20More consistent deletion of standard methods.Neil1-2/+3
2017-04-15Avoid calling virtual functions in constructors and destructors.Neil1-3/+3
2017-04-07Prefer C++ static cast over C-style casts.Neil1-5/+5
2017-04-07Use same parameter names in declarations and definitions.Neil1-2/+2
2017-04-06Added const where possible.Neil1-39/+39
2017-04-01Standardize on C++ headers, remove headers that aren't needed and add <cstddef>Neil1-7/+8
2017-03-31Hide decorations details a little.Neil1-1/+1
2017-03-31Using Sci::Position and Sci::Line to mark variables that are document positionsNeil1-42/+42
2017-03-09Drop support for Windows NT 4 by statically linking to system APIs that areNeil1-20/+4
2017-03-06Use several C++11 features as examples so problems with these features are seen.Vicente1-0/+1
2017-03-05For IMEs, do not clear selected text when there is no composition text to show.johnsonj1-1/+4
2017-03-04Use C++11 keyword "override" for methods that override a base class.Neil1-42/+42