aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32
AgeCommit message (Collapse)AuthorFilesLines
2013-09-10Use C++ struct initialization {} so can drop -Wno-missing-braces setting for ↵Neil3-7/+5
gcc.
2013-09-10Drop warning setting -Wno-missing-braces since this has had no effect since ↵Neil1-1/+1
gcc 4.2.
2013-09-04Fix namespace compilation errors when SCI_NAMESPACE defined.Neil1-20/+8
2013-09-04Build Direct2D platform code if Direct2D headers are available.Neil1-2/+9
2013-08-26Updated version number and description for next release.Neil1-2/+2
2013-08-25Recent MingW does not compile due to missing Direct2D headers so disable ↵Neil1-1/+1
Direct2D.
2013-08-21Feature: [feature-requests:#1008]. Lexer added for KVIrc script.Neil1-0/+3
From OmegaPhil.
2013-08-15Feature: [feature-requests:#1007]. Option to allow mouse selection toNeil1-1/+4
switch to rectangular by pressing Alt after start of gesture. From Neomi.
2013-08-10Bug [#1513]. Differentiate rectangular and non-rectangular pastes from Borland.Neil1-9/+19
From Oezguer Emir.
2013-08-09Update make dependencies.Neil2-91/+125
2013-08-09Move wrapping, edge and visual adjustments from Editor to ViewStyle.Neil1-1/+1
Move printing parameters into a separate struct.
2013-08-03On Windows, fix painting on an explicit HDC when first paint attempt abandoned.Neil1-1/+5
2013-08-02Fix failures when invalid DBCS text was measured by ensuringNeil1-4/+7
all positions are filled with reasonable non-negative values.
2013-07-26Support rectangular selected text in clipboard from and to Borland Delphi IDEOezguer Emir1-3/+12
2013-07-25Minor changes to avoid warnings from Coverity.Neil2-7/+16
2013-07-23Only use map for character representations instead of unordered_map where ↵nyamatongwe1-3/+0
possible. unordered_map caused too many porting problems.
2013-07-22Added the character representation feature.Neil1-0/+3
2013-07-21Normalising order of language headers.Neil2-3/+3
2013-07-21Add standard compliance flag.Neil1-1/+1
2013-07-21Standardising header guards and namespaces.Neil1-0/+13
2013-07-15Updates for 3.3.4.Neil1-2/+2
2013-07-11Include case conversion data in Scintilla so that all platforms will performNeil3-138/+90
case conversion of Unicode text in accordance with Unicode.
2013-07-03Make work with older compilers.Neil1-1/+4
2013-07-03Avoid using results from failed calls.nyamatongwe1-2/+7
2013-07-03Hide deprecation warning for GetVersionEx.nyamatongwe1-0/+10
2013-07-03Avoid using results from failed calls.nyamatongwe1-9/+12
2013-07-01Added CharacterCategory.Neil3-260/+269
2013-06-29Removed checks for Digital Mars C++. The checks were old so updates (or ↵Neil1-13/+0
using Platform SDK headers) should have fixed the missing header and library. No one on the mailing list appears to be using DMC.
2013-06-05Make method static as it does not use instance variables.nyamatongwe1-2/+2
2013-06-05Enable EnsureRenderTarget and DropRenderTarget only when Direct2D available.nyamatongwe1-4/+8
2013-05-27Updated version numbers, date, and change log for 3.3.3.nyamatongwe1-2/+2
2013-05-26Switch SelectionText to use a std::string to hold the data and to provide ↵nyamatongwe1-13/+20
accessors to this data. Add a length argument to DropAt, although previous signature still available.
2013-05-24Made methods const where they can be and are logically const as well.nyamatongwe1-5/+5
2013-05-23Feature: [feature-requests:#959]. Added lexer and folder for Structured Text ↵nyamatongwe1-0/+3
language. from Pavel Bulochkin
2013-05-16Updates for 3.3.2.nyamatongwe1-2/+2
2013-05-08Partial fix for compiling Direct2D code with MinGW-w64.nyamatongwe2-18/+41
Also needs changes to GUID code and the pixel format in InitPixMap but the correct code for those issues is less certain.
2013-05-07Replace X.data() with &X[0] to allow building with old releases of Visual C++.nyamatongwe2-13/+13
2013-05-05Since new throws an exception on failure, remove testing of result.nyamatongwe1-5/+3
2013-05-05Removing support for Visual C++ 2005 and 6.0.nyamatongwe1-543/+0
2013-05-04Replacing raw pointers and allocations for list box with std::vector.nyamatongwe1-94/+25
2013-05-01Removed SVector.h and all references as it is no longer used.nyamatongwe2-20/+20
2013-05-01Replacing raw pointers and allocations with std::vector and std::string.nyamatongwe1-53/+36
2013-05-01Replacing raw pointer and allocation with std::vector.nyamatongwe1-4/+2
2013-04-25Fix Direct2D drawing when returning from lock screen.nyamatongwe1-9/+13
2013-04-25Extracted common code from branches.nyamatongwe1-6/+3
2013-04-24Cosmetic: remove line-end whitespace.nyamatongwe2-13/+13
2013-04-17Allow Asian code pages to work for DirectWrite when using SC_CHARSET_DEFAULT.nyamatongwe1-1/+1
2013-04-14Add analyze target for clang --analyze.nyamatongwe1-1/+4
2013-04-10Minimized code for SetLineSpacing change.nyamatongwe1-6/+1
2013-04-09With DirectWrite, text was drawn at different vertical positions depending ↵nyamatongwe1-0/+6
on which other characters were draw in the same call. Switching to DWRITE_LINE_SPACING_METHOD_UNIFORM fixed this.