aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32
AgeCommit message (Collapse)AuthorFilesLines
2018-06-30Updated for 3.10.0.rel-3-10-0mitchell1-2/+2
2018-05-24Backport: Fix warnings. Add const, constexpr, and noexcept. Initialize. ↵Neil3-74/+74
Standard methods. Replace 0 and NULL with nullptr for COM, DirectWrite and least ambiguous cases. Backport of changeset 6974:e99161ef7bdd.
2018-05-25Backport: Add GradientRectangle method to Surface to draw rectangles with ↵mitchell1-0/+58
vertical or horizontal gradients. Backport of changeset 6965:90c71d69e3b6.
2018-05-15Backport: Drop inclusion of StringCopy.h where possible.Neil1-1/+0
Backport of changeset 6951:b2a17a08a1f8.
2018-05-14Backport: Avoid using 0 as NULL pointer.Neil1-1/+1
Backport of changeset 6948:b75edf4d00d3.
2018-05-25Backport: Modernize Platform.h (3) - update Surface to delete WidthChar, use ↵mitchell1-34/+7
size_t for Polygon and delete the standard copy and assignment methods. Backport of changeset 6940:89fd29243232.
2018-05-14Backport: Modernize Platform.h (2) - noexcept, const, constexpr.Neil1-12/+12
ColourDesired is an int instead of long for consistency over different platforms. Changes made to Point, PRectangle, and ColourDesired. RoundXYPosition removed. Backport of changeset 6939:7441dcb96e6a.
2018-05-14Backport: Modernize Platform.h (1) - noexcept, const, standard methods.Neil2-12/+11
Changes made to FontParameters, Font, Window, ListBoxEvent, ListBox, Menu, DynamicLibrary, and Platform. Backport of changeset 6938:a42c7cc3254b.
2018-05-01Backport: Encapsulate conversions between WindowID and HWND and hoist cast ↵Neil1-26/+31
out of switch. Backport of changeset 6778:5bd8ddf6b651.
2018-05-01Backport: Update dependencies.Neil2-22/+31
Backport of changeset 6774:8ff9d5842dec.
2018-05-01Backport: Use RectFromPRectangle to avoid casts.Neil3-3/+7
Backport of changeset 6770:c14d2ee02108.
2018-05-01Backport: Bug [#2012]. Use '0' instead of '0l'.Neil1-2/+2
Backport of changeset 6768:afe3117ead02.
2018-04-30Backport: Add conversion function from Scintilla Point to Win32 POINT.Neil2-51/+85
Use namespaces more consistently. Fix typo. Backport of changeset 6767:0a0334bef5c9.
2018-04-30Backport: Use const where possible.Neil1-21/+21
Backport of changeset 6765:ec572b29a86f.
2018-04-30Backport: Use const for IME, code page and related code.Neil1-28/+27
Backport of changeset 6764:f29220418dd5.
2018-04-30Backport: Use Win32 types and avoid casting. Move code to avoid warnings.Neil2-15/+14
Use const where there is a benefit. Backport of changeset 6763:e9079a505ea8.
2018-04-30Backport: Use message parameter access macros provided by Windows instead of ↵Neil2-35/+11
casting. Backport of changeset 6762:addd3229350b.
2018-04-30Backport: Use C++ casts in preference to C casts. Use nullptr instead of 0.Neil2-4/+5
Backport of changeset 6761:3d5f0669be84.
2018-04-28Backport: Delete standard functions on classes where there could be attempts ↵Neil1-0/+12
to copy. Backport of changeset 6756:29866b0927e0.
2018-04-28Backport: Remove unused definition and replace 0 with nullptr.Neil1-2/+1
Backport of changeset 6754:e62ae5a8a587.
2018-04-28Backport:Initialize timers in definition instead of looping to avoid cast ↵Neil1-4/+1
and warning. Backport of changeset 6753:2950b9c35ecc.
2018-04-27Backport: Use floor instead of casts when centring bitmaps inside the given ↵Neil1-4/+4
rectangle. Backport of changeset 6751:23a8e12e4b3d.
2018-04-26Backport: Update dependencies for ElapsedPeriod.Neil1-6/+15
Backport of changeset 6742:dd1d32f7b814.
2018-05-06Backport: Use <chrono> for platform-independent timing and remove ↵mitchell3-64/+20
ElapsedTime. Also use #if for painting measurement as there are 7 sections of code to enable. Backport of changeset 6741:af5d9064c25c.
2018-04-26Backport: Update deps for LexCoffeeScript not using Platform.h.Neil1-4/+4
Backport of changeset 6740:3ef8bf667a7d.
2018-04-25Backport: Remove variables and casts that are not needed.Neil1-4/+2
Backport of changeset 6739:e204054d5d07.
2018-04-25Backport: Use set of coercion functions for transforming WndProc parameters ↵Neil1-7/+7
into pointers. Backport of changeset 6738:5b39367ee7da.
2018-04-25Backport: Standardized signature of TargetAsUTF8 and EncodedFromUTF8.Neil1-2/+2
Backport of changeset 6737:5c4aea8a1e8a.
2018-05-06Backport: Remove casts that are not needed since sptr_t and Sci::Position ↵mitchell1-1/+1
are the same type. Backport of changeset 6735:ed52dd761341.
2018-04-22Backport: Remove casts between char and unsigned char where possible.Neil1-4/+4
Backport of changeset 6731:8e06234817c0.
2018-04-20Backport: Remove test that is always true.Neil1-1/+1
Backport of changeset 6718:a2bd7f9f0c47.
2018-04-20Backport: Fix warnings from MSVC analyze and reduce casts.Neil1-84/+100
Backport of changeset 6716:d3dfe9e0c75b.
2018-05-06Backport: Feature [feature-requests:#1215]. Use standard functions in ↵mitchell1-18/+5
prference to RoundXYPosition, XYMinimum, and XYMaximum. Backport of changeset 6713:fadc4c551b6d.
2018-04-19Backport: Use ColourDesired constructor explicitly to make more obvious.Neil1-3/+3
Constructor not marked explicit as may be used in external platform layers. Backport of changeset 6706:73c8bc321f62.
2018-04-19Backport: Casting changed in many places, due to change to 64-bit variables ↵Neil1-13/+13
for 64-bit builds. Some of the changes ensure no truncation while others remove casts that are no longer needed because the externally visible Sci_Position is now identical to Sci::Position. Some extra methods (CellBuffer::UCharAt and Document::SciLineFromPosition) added to avoid casting in client code. Sci::Line is currently identical to Sci::Position but it could be made smaller so lines have Sci::Line types and are cast. Some arguments widened. Backport of changeset 6705:5c0a80740b8c.
2018-04-15Backport: Feature [feature-requests:#1215]. Stop warning about virtual call ↵Neil1-4/+14
in destructor. Backport of changeset 6690:2107e0144806.
2018-04-05Backport: Backed out changeset: 7402342dc7a3 Caching client rectangle on ↵Neil1-2/+2
EditView. This change was not compatible with Cocoa as it uses document-based coordinates rather than view-based. Backport of changeset 6673:a22abea8d41e.
2018-04-04Backport: Remove automatic detection of Direct2D support during build.Neil6-21/+4
DISABLE_D2D may still be defined to remove Direct2D features. Backport of changeset 6672:9c1997a14d89.
2018-04-04Backport: Move DLL entry points DllMain and Scintilla_DirectFunction into ↵Neil7-82/+74
ScintillaDLL.cxx to simplify build process by eliminating the compilation of ScintillaWin.cxx into ScintillaWinS.o|obj. Backport of changeset 6670:cfe90078d684.
2018-04-04Backport: Cache client rectangle on EditView so it can be used easily inside ↵Neil1-2/+2
EditView. Backport of changeset 6669:7402342dc7a3.
2018-03-31Backport: Make clang 6.0 build without warnings. Requires clang to be on the ↵Neil1-4/+6
path now. Backport of changeset 6665:b3db8fb581bb.
2018-03-31Backport: Match struct initialization exactly to declaration to avoid ↵Neil1-3/+5
warnings from clang. Backport of changeset 6663:ff933a6a090b.
2018-03-24Backport: Removed unwanted include.Neil2-3/+2
Backport of changeset 6646:c64207e7e584.
2018-05-05Backport: Feature [feature-requests:#1212]. Move Unicode conversions into ↵mitchell2-97/+131
UniConversion. Move Unicode conversion functions UnicodeFromUTF8 and UTF8FromUTF32Character into UniConversion. Backport of changeset 6645:463fa6965d9a.
2018-05-05Backport: Feature [feature-requests:#1211]. Use pre-computed table for ↵mitchell2-12/+9
UTF8BytesOfLead. Friendlier treatment of invalid UTF-8. Add tests for UniConversion handling invalid UTF-8. Simplify UTF8Classify tests. Backport of changeset 6643:ebbb4e5aaf93.
2018-03-22Updating for 3.8.0.mitchell1-2/+2
2018-03-16Backport: Remove line-end white space.Neil1-1/+1
Backport of changeset 6625:2dd6b8049c4e.
2018-03-15Backport: Use forward class definitions of XPM and RGBAImage so only code ↵Neil1-1/+0
that uses them needs to #include "XPM.h". Move definition of standard methods on LineMarker from header to implementation to reduce included text and further isolate use of XPM and RGBAImage. Backport of changeset 6624:32adac0930bb.
2018-03-08Backport: Create static library libscintilla.a or libscintilla.lib on Windows.Neil2-33/+46
Stop creating Lexers.a static library. Harmonize make files. Backport of changeset 6477:a65186aab9f9.
2018-03-06Backport: Feature [feature-requests:#1210]. Maxima lexer added.Gunter Königsmann2-0/+8
Backport of changeset 6474:7a2aeece58b6.